/* Header */
.header {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    /* Vertical padding 20px */
    height: auto;
    /* Let content dictate height (65px + 40px = 105px approx) */
    min-height: 90px;
    /* Minimum requested */
    box-sizing: border-box;
    /* Standard sizing */
}

.header.scrolled {
    padding: 10px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.header.scrolled .logo-img {
    height: 50px;
    /* Optional: smooth resize on scroll */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* Ensure container fills header height */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    /* font properties removed as we use image now */
    padding-left: 40px;
    /* Desktop padding left */
}

.logo-img {
    height: 65px;
    /* Increased to 65px for Desktop */
    width: auto;
    transition: opacity 0.3s ease;
    display: block;
    /* Removes potential inline-block spacing issues */
}

.logo:hover .logo-img {
    opacity: 0.85;
}

/* Footer Logo Styles */
.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

@media (max-width: 992px) {
    .logo-img {
        height: 55px;
        /* Tablet */
    }

    .logo {
        padding-left: 32px;
    }

    .footer-logo-img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 16px 0;
    }

    .logo-img {
        height: 48px;
        /* Mobile */
    }

    .logo {
        padding-left: 24px;
        /* Mobile padding left */
    }

    .footer-logo-img {
        height: 50px;
        margin-bottom: 0.75rem;
    }
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-left: 60px;
    /* Minimum 60px gap from logo (if nav is next to it, but justify-between pushes them apart usually. If centered nav desired, margin-left helps. Assuming 'justify-between' stays, this might not be needed unless they get close.) */
}


.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
    /* For alignment */
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-cta-whatsapp {
    width: 44px;
    height: 44px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-right: 16px;
        /* Ensure spacing from right edge */
    }
}

/* Hero Section - Redesigned */
.hero {
    position: relative;
    background-color: var(--color-secondary);
    background-image: url('../assets/images/hero-cover-new.jpg');
    /* best luxury photo */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    margin-top: 0;
}

/* Dark gradient overlay for text readability, avoiding heavy color tints */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Content container */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.hero-title {
    font-size: 3rem;
    /* 48px - reduced for elegance */
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: none;
    /* simple, clean */
    letter-spacing: -0.02em;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    /* smaller */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Clean Button Override for Hero */
.hero .btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0;
    /* clean */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .btn-primary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: none;
    box-shadow: none;
}


/* Responsive Breakpoints */

/* Laptop (992-1199px) */
@media (max-width: 1199px) {
    .hero {
        height: 95vh;
        min-height: 700px;
    }

    .hero-title {
        font-size: 42px;
    }
}

/* Tablet (768-991px) */
@media (max-width: 991px) {
    .hero {
        height: 95vh;
        min-height: 700px;
        padding: 100px 20px 60px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.25;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 19px;
        margin-bottom: 36px;
    }

    .hero-buttons {
        gap: 16px;
    }

    .hero .btn {
        padding: 16px 32px;
    }
}

/* Mobile (480-767px) */
@media (max-width: 767px) {
    .hero {
        height: 100vh;
        min-height: 700px;
        padding: 110px 20px 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 28px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.65;
        max-width: 95%;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
        padding: 16px 32px;
    }
}

/* Small Mobile (<480px) */
@media (max-width: 479px) {
    .hero {
        min-height: 700px;
        padding: 120px 16px 60px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    /* Remove parallax on mobile for better performance */
    .hero {
        background-attachment: scroll;
        background-position: center top;
    }
}

/* Very Large Screens (>1600px) */
@media (min-width: 1600px) {
    .hero {
        max-height: 1000px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 21px;
    }
}

/* Timeline/Process */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

/* Right Side Content (Default even items) */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #1a4a8e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1;
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-spacer {
    width: 45%;
    /* Empty space for the other side */
}

.timeline-content h3 {
    margin-top: 0.2rem;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }

    .timeline-number {
        position: relative;
        left: unset;
        transform: unset;
        flex-shrink: 0;
    }

    .timeline-content {
        width: calc(100% - 80px);
        /* Adjust width */
    }

    .timeline-spacer {
        display: none;
    }
}

/* Region Section */
.region-map {
    background: white;
    min-height: auto;
    /* Allow content to dictate */
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* User Option 1: Padding inside map: 40px */
}

.region-map-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 40px;
    transition: transform 0.5s ease;
}

.region-map:hover .region-map-img {
    transform: scale(1.02);
}

.region-map-caption {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    padding-bottom: 24px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .region-grid {
        gap: 40px;
        /* Space between staked items */
    }

    .region-map {
        margin-top: 20px;
    }
}

.map-placeholder {
    display: none;
}

.highlight-box {
    background: rgba(197, 160, 89, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}


.highlight-box i {
    color: var(--color-accent);
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d4a6f 0%, #1e3a6e 100%);
    /* Option 3 Match */
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.cta-decorative-line {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 24px;
    border-radius: 2px;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    /* Enhanced contrast */
}

.cta-section p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    /* Increased opacity */
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    /* Enhanced contrast */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Critical fix for alignment */
    gap: 16px;
    flex-wrap: wrap;
}

/* Button Overrides for CTA Consistency */
.cta-section .btn {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    min-width: 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: auto;
    /* Allow padding to define height */
}

.cta-section .btn-accent {
    background-color: #d4af37;
    color: #1e3a8a;
    border: none;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.cta-section .btn-accent:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-section .btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: white;
    color: white;
}

.cta-trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    display: block;
}

/* Responsive CTA */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Footer */
.footer {
    background-color: #0f172a;
    /* Darker blue/grey */
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-bottom {
    background: #020617;
    /* Even darker */
    padding: 1.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1a3a6b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}