

/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Segments Section (Residential & Commercial) */
.segments {
    background: linear-gradient(135deg, #ffffff 0%, #fbf9f5 100%);
    padding: 6rem 5%;
}

.segments-header {
    text-align: center;
    margin: 0 auto 4rem auto;
}

.segments-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #9a8f78;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.segments-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.4rem;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.segments-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    border-radius: 2px;
}

/* Segment Categories */
.segment-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-family: 'GFS Didot', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.category-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #9a8f78;
    letter-spacing: 1px;
}

.properties-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.properties-grid::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* Property Card Link Wrapper */
.property-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

/* Property Cards */
.property-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(189,167,128,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 350px;
    scroll-snap-align: start;
}

.property-card-link:hover .property-card {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.property-info {
    padding: 2rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-logo {
    position: absolute;
    top: -30px;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: rgb(41, 41, 41);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 3px solid rgba(189,167,128,0.2);
}

.property-logo img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.property-name {
    font-family: 'GFS Didot', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 1rem 0 0.5rem 0;
    letter-spacing: 1px;
}

.property-location {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #9a8f78;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.property-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex: 1;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(189,167,128,0.1), rgba(189,167,128,0.05));
    color: #9a8f78;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(189,167,128,0.2);
}

.property-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-outline {
    background: transparent;
    color: #9a8f78;
    border: 1.5px solid rgba(189,167,128,0.4);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(189,167,128,0.1);
    border-color: #bda780;
    color: #bda780;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(189,167,128,0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(189,167,128,0.5);
    background: linear-gradient(135deg, #d4c4a0, #bda780);
}

/* Contact Icons Styling */
.contact-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon:hover::before {
    opacity: 1;
}

.phone-icon {
    background: transparent;
    border-color: #bda780;
    color: #bda780;
}

.phone-icon:hover {
    background: rgba(189, 167, 128, 0.1);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(189, 167, 128, 0.3);
}

.whatsapp-icon {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-icon:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-icon i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-icon:hover i {
    transform: scale(1.1);
}

/* Booking Open Card Styling */
.booking-open-card {
    position: relative;
    overflow: hidden;
}

.booking-open-card .property-image {
    position: relative;
}

.booking-open-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px #f5c31ec2;
    z-index: 10;
    animation: pulse 2s infinite;
}

.booking-open-text {
    position: relative;
    z-index: 2;
}

.booking-open-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(76, 175, 80, 0.1) 50%, transparent 70%);
    z-index: 1;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.booking-open-card .property-info {
    position: relative;
    z-index: 2;
}

.booking-open-card .property-name {
    background: #3f3f3f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Contact Form Styling */
.contact-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(189, 167, 128, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bda780;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(189, 167, 128, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 167, 128, 0.4);
    background: linear-gradient(135deg, #d4c4a0, #bda780);
}

.form-notification {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-notification.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-notification.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

/* Contact Popup Styling */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(189, 167, 128, 0.2);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.contact-popup-overlay.active .contact-popup {
    transform: scale(1) translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.popup-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.8rem;
    color: #121212;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #121212;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.popup-content {
    padding: 2rem;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.popup-form-group {
    margin-bottom: 1.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #bda780;
    font-size: 1rem;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(189, 167, 128, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-wrapper input:focus {
    outline: none;
    border-color: #bda780;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(189, 167, 128, 0.3);
}

.input-wrapper input:focus + .input-icon {
    color: #d4c4a0;
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(189, 167, 128, 0.4);
    background: linear-gradient(135deg, #d4c4a0, #bda780);
}

.popup-notification {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.popup-notification.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.popup-notification.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .contact-popup {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
}

/* Responsive Segments */
@media (max-width: 1400px) {
    .properties-grid {
        flex-wrap: nowrap;
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .properties-grid {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .segments { padding: 4.5rem 5%; }
    .properties-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .segment-category {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .properties-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .property-info {
        padding: 1.5rem;
    }
    .property-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .property-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .segments-title { font-size: 2rem; }
    .category-title { font-size: 1.6rem; }
    .property-name { font-size: 1.3rem; }
    .property-image { height: 200px; }
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'GFS Didot', serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 5%;
}

.hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hamburger {
    justify-self: start;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'GFS Didot', serif;
    font-size: 2rem;
    letter-spacing: 5px;
    justify-self: center;
}

.nav-right {
    justify-self: end;
}

.contact-btn {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.contact-btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.contact-btn:hover {
    color: #bda780;
}

.contact-btn:hover:after {
    width: 100%;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Old nav-links styles removed - now handled by mobile menu styles */

/* Mobile Navigation Styles - Apply to all screen sizes */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-section {
    margin-bottom: 2.5rem;
    width: 100%;
}

.nav-section-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.4rem;
    color: #bda780;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #bda780;
    padding-bottom: 0.5rem;
    font-weight: 400;
}

.nav-section-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-left: 1rem;
}

.nav-section-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-section-links a:hover {
    color: #bda780;
    padding-left: 1rem;
}

.nav-section-links a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #bda780;
}

.nav-section-links a:hover::before {
    opacity: 1;
    left: -0.5rem;
}

.nav-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(189, 167, 128, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(189,167,128,0.3);
    position: relative;
    overflow: hidden;
}

.nav-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-phone:hover::before {
    left: 100%;
}

.nav-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(189,167,128,0.5);
    background: linear-gradient(135deg, #d4c4a0, #bda780);
}

.nav-phone i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.nav-whatsapp i {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop styles removed to allow mobile menu to work on all screen sizes */

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.title {
    font-size: 5vw;
    margin-bottom: 2rem;
    letter-spacing: 10px;
    line-height: 1.2;
}

.cta-button {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.cta-button:hover:after {
    transform: translate(-50%, -50%) scale(1);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone {
        padding: 0.9rem 1.2rem;
    }
}

/* Desktop phone number display */
@media (min-width: 768px) {
    .nav-phone span {
        display: inline;
    }
    
    .nav-phone {
        padding: 0.8rem 1.5rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .navbar {
        padding: 1.5rem 5%;
    }
    
    .logo {
        height: 35px;
    }
}

/* About Section */
.about {
    display: flex;
    align-items: stretch; /* This will make children same height */
    background-color: #ffffff;
    color: #000;
    position: relative;
    overflow: hidden;
    padding: 5rem 0; /* Add some padding to the section */
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px; /* Rounded corners for the container */
    margin: 0 2.5rem; /* Add some margin to the image container */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
}

.about-content {
    flex: 1;
    padding: 0 5rem; /* Adjust padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .subtitle {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.about-content .title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #000;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;

}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.services {
    display: flex;
    justify-content: space-between;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.service-item {
    text-align: center;
    flex: 1;
}

.icon-container {
    margin: 0 auto 1rem;
    width: 70px;
    height: 70px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item .icon {
    stroke: #bda780; /* Gold accent */
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.service-item span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #333;
}

.service-item:hover .icon-container {
    background-color: #bda780;
    border-color: #bda780;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(189, 167, 128, 0.3);
}

.service-item:hover .icon {
    stroke: #fff;
}

.vertical-text {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: top right;
    color: #e0e0e0;
    font-family: 'GFS Didot', serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive About Section */
@media (max-width: 992px) {
    .about {
        flex-direction: column;
        padding: 0; /* Remove padding for edge-to-edge image */
    }

    .about-image {
        min-height: 400px;
        margin-top: 4rem; /* Add space above the image in mobile view */
    }

    .about-content {
        padding: 3rem;
        text-align: center; /* Center align the text */
    }

    .vertical-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .services {
        flex-direction: row; /* Change to row for horizontal layout */
        align-items: stretch; /* Align items for equal height */
        justify-content: center;
        margin-top: 2rem;
    }

    .service-item {
        margin-bottom: 0;
        padding: 0 1rem;
        position: relative;
    }

    .service-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 50px;
        background-color: #e0e0e0;
    }

    .about-content .title {
        font-size: 1.5rem; /* Further reduce font size for mobile */
        line-height: 1.4;
    }
}

/* Decade of Success Section */
.decade-success {
    position: relative;
    height: 80vh;
    background: url('decade-of-success.jfif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.decade-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.decade-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.decade-content:hover {
    transform: scale(1.05);
}

.decade-content .title {
    font-size: 3rem;
    font-family: 'GFS Didot', serif;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.play-button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.video-modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #ccc;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Stats Section */
.stats {
    background-color: #f8f6f4; /* A soft, light beige background */
    padding: 5rem 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px; /* Adjust height of the separator */
    background-color: #e0e0e0;
}

.stat-number {
    font-family: 'GFS Didot', serif;
    font-size: 2rem;
    color: #bda780; /* Gold accent color */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 1rem;
}

/* Responsive Stats Section */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .stat-item {
        margin-bottom: 2rem;
        padding: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none; /* Hide separators on mobile */
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }
}

/* Elan Imperial Section */
.imperial {
    padding: 6rem 5%;
    background-color: #fff;
    text-align: center;
}

.imperial-text .title {
    font-family: 'GFS Didot', serif;
    font-size: 2.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.imperial-text p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.imperial-image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.imperial-image-container img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.imperial-image-container:hover img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.play-button-overlay svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.imperial-image-container:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Project Locations Section */
.project-locations {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #fdfcfb 0%, #f8f6f4 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Images */
.pl-decorative-left,
.pl-decorative-right {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    opacity: 0.1;
}

.pl-decorative-left {
    left: -50px;
    transform: rotate(-15deg);
}

.pl-decorative-right {
    right: -50px;
    transform: rotate(15deg);
}

.decorative-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.3s ease;
}

.project-locations:hover .decorative-img {
    opacity: 0.2;
    transform: scale(1.1);
}

.project-locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.pl-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding: 0;
    background: transparent;
    max-width: none;
    box-shadow: none;
}

.header-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.pl-header .section-title {
    margin-bottom: 0;
    position: relative;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 3.5rem;
    letter-spacing: 2px;
    font-family: 'GFS Didot', serif;
    text-transform: none;
}

.pl-container {
    display: flex;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    align-items: flex-start; /* keep content compact at the top */
}

.pl-list {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pl-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr; /* Single column for 4 items */
    gap: 0.4rem;
}

.pl-list li {
    font-family: 'GFS Didot', serif;
    font-size: 1.25rem;
    color: #666;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    border-radius: 0 15px 15px 0;
    margin-bottom: 0.2rem;
    position: relative;
    overflow: hidden;
}

.pl-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(189, 167, 128, 0.1), rgba(212, 196, 160, 0.1));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.pl-list li:hover::before {
    width: 100%;
}

.pl-list li.active, .pl-list li:hover {
    color: #000;
    border-left: 4px solid #bda780;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(189, 167, 128, 0.2);
}

.pl-list li.active::before {
    width: 100%;
}

.pl-cards {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pl-card {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(189, 167, 128, 0.05) 0%, rgba(212, 196, 160, 0.05) 100%);
    z-index: -1;
}

.pl-card.active {
    display: flex;
    animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pl-card-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(189, 167, 128, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pl-card:hover .pl-card-logo {
    transform: scale(1.05);
}

.pl-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pl-card:hover .pl-card-logo img {
    transform: scale(1.1);
}

.pl-card-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.75rem;
    color: #000;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}

.pl-card-location {
    font-family: 'Poppins', sans-serif;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pl-card-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.pl-card-buttons .btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

/* Tame decorative images to avoid visual height expansion */
.pl-decorative-left,
.pl-decorative-right {
    opacity: 0.06;
}

.btn-dark {
    background: linear-gradient(135deg, #222 0%, #000 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-light {
    background: transparent;
    color: #222;
    border: 2px solid rgba(189, 167, 128, 0.3);
    box-shadow: 0 8px 25px rgba(189, 167, 128, 0.1);
}

.btn-light:hover {
    background: rgba(189, 167, 128, 0.1);
    border-color: #bda780;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(189, 167, 128, 0.2);
}

/* Responsive Project Locations */
@media (max-width: 992px) {
    .pl-container {
        flex-direction: column;
        gap: 2rem;
    }

    .pl-list ul {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .pl-list li {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }

    .pl-decorative-left,
    .pl-decorative-right {
        display: none;
    }

    .pl-header {
        margin: 0 1rem 3rem 1rem;
        padding: 0;
    }

    .pl-header .section-title {
        font-size: 2.5rem;
    }

    .header-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* Make both list and card full-width on tablets and below */
    .pl-list,
    .pl-cards {
        width: 100%;
    }

    .pl-cards {
        justify-content: flex-start;
    }

    .pl-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pl-list ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pl-list li {
        padding: 1.2rem 1.5rem;
        font-size: 1.3rem;
    }

    .pl-header .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .header-tagline {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    /* Ensure full-width layout on mobile */
    .pl-list,
    .pl-cards,
    .pl-card {
        width: 100%;
        max-width: 100%;
    }

    .pl-cards {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .project-locations {
        padding: 4rem 3%;
    }

    .pl-header {
        margin: 0 0.5rem 3rem 0.5rem;
        padding: 0;
    }

    .pl-header .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .header-tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .pl-list {
        padding: 1.5rem;
    }

    .pl-list li {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .pl-card {
        padding: 2.5rem 2rem;
    }

    .pl-card-logo {
        width: 100px;
        height: 100px;
    }

    .pl-card-title {
        font-size: 1.8rem;
    }

    /* Small phones: remove side paddings that might cause inner shrinking */
    .pl-list,
    .pl-cards,
    .pl-card {
        width: 100%;
        max-width: 100%;
    }

    .pl-cards {
        justify-content: flex-start;
    }
}


/* Our Associates Section */
.associates {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.associates-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.associates-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.associates-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.associates-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.associates-title {
    font-family: 'GFS Didot', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.associates-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    opacity: 0.9;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* New Footer Styles */
.footer-content-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.footer-left-new, .footer-right-new {
    color: #dddddd;
}
.footer-main-title{
    color: #111;
}
.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(189, 167, 128, 0.1);
    border: 1px solid rgba(189, 167, 128, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #bda780;
    margin-bottom: 1.5rem;
}

.footer-main-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.assistance-bar {
    display: flex;
    align-items: center;
    background: #1c1c1c;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid #333;
}

.assistance-icon {
    width: 40px;
    height: 40px;
    background: #bda780;
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.assistance-text .assistance-title {
    font-weight: 500;
    margin: 0;
}

.assistance-text .assistance-subtitle {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.assistance-number {
    margin-left: auto;
    background: #bda780;
    color: #121212;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.assistance-number:hover {
    background: #d4c4a0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: #1c1c1c;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 1.5rem;
    color: #bda780;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

.footer-right-new {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-form-container {
    background: #1c1c1c;
    padding: 2.5rem;
    border-radius: 15px;
    width: 100%;
    border: 1px solid #333;
}

.footer-form-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.footer-form-container .footer-divider {
    width: 50px;
    height: 2px;
    background: #bda780;
    margin: 0 auto 2rem;
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 5%;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom-left .brand-name {
    color: #bda780;
    font-weight: 500;
}

.footer-bottom-right a {
    color: #aaa;
    text-decoration: none;
    margin: 0 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #bda780;
}

.footer-bottom-right .separator {
    color: #555;
}

@media (max-width: 992px) {
    .footer-content-new {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .assistance-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .assistance-number {
        margin-left: 0;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .associates {
        height: 60vh;
        min-height: 400px;
    }

    .associates-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .associates-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo-item {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .associates-content {
        padding: 0 1rem;
    }

    .associates-title {
        font-size: 1.5rem;
    }

    .associates-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-bottom {
        padding: 2rem 1rem;
    }

    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* See More Button Styles */
.see-more-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    animation: slideInUp 0.6s ease-out;
}

.see-more-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.see-more-btn .btn-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.see-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.additional-content {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .see-more-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .see-more-btn {
        padding: 8px 16px;
        font-size: 12px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}