/* Design System — Grow Value Properties Brand */
:root {
    --primary: #0B2D4B; /* Brand Navy Blue */
    --primary-dark: #081f35;
    --secondary: #4E7C9D; /* Steel Blue */
    --accent: #EEBC44; /* Brand Gold */
    --bg-cream: #F8FAFB;
    --text-charcoal: #1A1A1A;
    --text-muted: #666;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

.highlight {
    color: var(--accent);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-charcoal);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand-text {
    font-family: var(--font-serif);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-charcoal);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #D4AC0D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(238, 188, 68, 0.35);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.accent {
    color: var(--primary);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-size: 1.7rem;
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.brand-text .accent {
    color: var(--accent);
    transition: var(--transition);
}

.scrolled .brand-text {
    color: var(--primary);
}

.scrolled .brand-text .accent {
    color: var(--accent); /* Keep accent gold even when scrolled */
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--white);
    margin-left: 28px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.scrolled .desktop-nav a {
    color: var(--primary);
}

.desktop-nav a.btn-primary {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 10px 22px;
    border-radius: 4px;
    margin-left: 35px;
    text-transform: uppercase;
    font-weight: 800;
    border: none;
}

.scrolled .desktop-nav a.btn-primary {
    background: var(--accent);
    color: var(--primary) !important;
}

.desktop-nav a:not(.btn-primary):hover {
    color: var(--accent);
}

.desktop-nav a:not(.btn-primary).nav-active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    margin-bottom: 6px;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

.scrolled .mobile-menu-btn span {
    background-color: var(--primary);
}

/* Mobile Nav Overlay */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }

    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .desktop-nav.mobile-active {
        right: 0;
    }

    .desktop-nav a {
        color: var(--primary) !important;
        margin: 20px 0;
        font-size: 1.2rem;
    }

    .desktop-nav a.btn-primary {
        margin-left: 0;
        width: 80%;
        text-align: center;
    }

    /* Burger Animation */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: #0B2D4B; /* Fallback color */
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,45,75,0.7), rgba(11,45,75,0.3));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 .highlight {
    font-size: 1.6rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-form-container {
    flex: 0 0 380px;
}

.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    color: var(--text-charcoal);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.hero-form p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent);
    color: var(--text-charcoal);
    font-weight: 700;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #D4AC0D;
}

.form-footer {
    text-align: center;
    font-size: 0.8rem !important;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.dark-section {
    background-color: var(--primary);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dark-section h2 {
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.dark-section h2 .accent,
.dark-section h2 span.accent {
    color: #ffffff;
    text-shadow: none;
    background: none;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.dark-section .section-tag {
    color: var(--accent);
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Vertical Title Animation */
.vertical-title {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(11, 45, 75, 0.04);
    pointer-events: none;
    white-space: nowrap;
    font-family: var(--font-serif);
    z-index: 0;
}

.vertical-title.right {
    left: auto;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-box img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(11,45,75,0.4);
}

.badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    opacity: 0.9;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about-stat {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--accent);
    line-height: 1;
}

.about-stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.about-stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.85;
}

/* About Right Content */
.creative-heading {
    font-size: 2.4rem;
    line-height: 1.2;
    color: #444 !important;
    margin-bottom: 30px;
    font-weight: 800;
    text-align: left;
}

.creative-heading span {
    color: var(--primary) !important;
    display: inline;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Counters Strip */
.counters-strip {
    background: var(--primary);
    padding: 28px 0;
}

.counters-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.counter-item {
    flex: 1;
    text-align: center;
    padding: 20px 40px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--accent);
    line-height: 1;
}

.counter-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.counter-label {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
    line-height: 1.5;
}

.counter-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.25);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.value-card:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 5px;
    font-family: var(--font-sans);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats {
        gap: 15px;
    }
}

/* Project Details Section */
.project-details-section {
    padding: 100px 0;
    background: var(--bg-cream);
    overflow: hidden;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
}

.pd-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd-heading {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--text-charcoal);
    margin-bottom: 20px;
}

.pd-italic {
    font-style: italic;
    color: var(--primary);
}

.pd-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Specs Card */
.specs-card {
    background: #f0f2f5;
    border-radius: 16px;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.specs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 20px rgba(11,45,75,0.3);
}

.specs-badge i {
    font-size: 1.1rem;
}

.specs-list {
    margin-top: 20px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 14px;
    border: 1.5px solid #c8cdd6;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-row:hover {
    background: rgba(11, 45, 75, 0.03);
    border-color: var(--primary);
}

.spec-row--highlight {
    background: linear-gradient(90deg, rgba(11, 45, 75, 0.1), rgba(11, 45, 75, 0.03));
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.spec-value--price {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 0.9rem;
}

.spec-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.spec-content {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.spec-label {
    font-size: 0.95rem;
    color: var(--text-charcoal);
    font-weight: 600;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Right Column Image */
.pd-right {
    position: relative;
    width: 400px;
    max-width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.pd-image-wrapper {
    position: relative;
    width: 480px;
    height: 580px;
    max-width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    margin: 0 auto;
}

.pd-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-site-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 992px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pd-heading {
        font-size: 2.2rem;
    }
    .pd-right {
        min-height: 350px;
    }
}


/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    background: var(--white);
    color: var(--text-charcoal);
    transform: translateY(-10px);
}

.amenity-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 162, 67, 0.15);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
}

.amenity-card h3 {
    margin-bottom: 15px;
}

.amenity-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Highlight Section */
.highlight-section {
    background-image: linear-gradient(rgba(11, 45, 75, 0.7), rgba(11, 45, 75, 0.7)), url('Pr 3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 150px 0;
    text-align: center;
    color: var(--white);
}

.highlight-content h2 {
    font-size: 4rem;
}

.highlight-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Location Section */
.location-list {
    margin-top: 40px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.distance {
    font-weight: 700;
    color: var(--primary);
    background: rgba(11, 45, 75, 0.07);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Testimonials Bento Grid */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-cream);
    overflow: hidden;
}

.testimonials-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    margin-top: 50px;
}

.bento-item {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #eef0f3;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 50px;
}

.bento-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.05;
}

.bento-large .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.bento-medium {
    grid-column: span 1;
}

.bento-small {
    grid-column: span 1;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    position: relative;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-serif);
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.verified-badge {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 1100px) {
    .testimonials-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .testimonials-bento {
        grid-template-columns: 1fr;
    }
    .bento-large, .bento-medium, .bento-small {
        grid-column: span 1;
    }
    .bento-large {
        padding: 35px;
    }
    .bento-large .testimonial-text {
        font-size: 1.1rem;
    }
}


/* Vicinity Section */
.vicinity-section {
    padding: 100px 0;
    background: var(--white);
}

.vicinity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vicinity-category {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    transition: var(--transition);
}

.vicinity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--accent);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.vicinity-list {
    list-style: none;
}

.vicinity-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.vicinity-list li:last-child {
    border-bottom: none;
}

.v-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v-name {
    font-size: 0.95rem;
    color: var(--text-charcoal);
    font-weight: 500;
    line-height: 1.4;
}

.mt-30 { margin-top: 30px; }

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}

.gallery-item { cursor: pointer; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 75, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .vicinity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vicinity-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b2d4b 0%, #143a5e 50%, #0b2d4b 100%);
    position: relative;
    color: #ffffff;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(214, 162, 67, 0.12) 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, rgba(214, 162, 67, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section .section-tag {
    color: var(--accent) !important;
}

.faq-section h2 {
    color: #ffffff !important;
}

.faq-section h2 .accent {
    color: var(--accent) !important;
}

.faq-section .section-header {
    margin-bottom: 60px;
}

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.faq-item:hover {
    box-shadow: 0 12px 32px rgba(214, 162, 67, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1) !important;
}

.faq-question {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 24px !important;
    cursor: pointer !important;
    background: transparent;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--white);
    background: var(--accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.faq-answer {
    padding: 0 24px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
}

.faq-answer p {
    padding: 0 0 22px 0;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

.faq-item.faq-open {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(214, 162, 67, 0.15);
}

.faq-item.faq-open .faq-answer {
    max-height: 300px !important;
}

.faq-item.faq-open .faq-question i {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .faq-question {
        padding: 16px 18px !important;
    }

    .faq-title {
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 18px !important;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    max-width: 100%;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1);
    position: relative;
}

.map-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    transition: background 0.3s ease;
}

.map-overlay-link:hover {
    background: rgba(11, 45, 75, 0.15);
}

.map-cta-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.map-overlay-link:hover .map-cta-btn {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.detail-item span {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
}

/* Connect With Us */
.connect-with-box {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 16px;
}

.connect-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.connect-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.connect-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1.5px solid #e8edf2;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.connect-card:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(11,45,75,0.1);
}

.connect-card--whatsapp:hover { border-color: #25D366; }
.connect-card--insta:hover { border-color: #E1306C; }

.connect-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.connect-card--whatsapp .connect-icon { background: #25D366; color: #fff; }
.connect-card--insta .connect-icon { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }

.connect-info {
    display: flex;
    flex-direction: column;
}

.connect-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.connect-value {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2px;
}

/* Contact Detail Cards */
.contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cdc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f4f7fb;
    border: 1.5px solid #e4eaf2;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.cdc-item:hover {
    border-color: var(--primary);
    background: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(11,45,75,0.1);
}

.cdc-whatsapp:hover { border-color: #25D366 !important; }

.cdc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cdc-whatsapp .cdc-icon { background: #25D366; color: #fff; }

.cdc-info {
    display: flex;
    flex-direction: column;
}

.cdc-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.cdc-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3px;
    line-height: 1.5;
}

.contact-form-box input, 
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    background: #fdfdfd;
    font-size: 1rem;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.w-full { width: 100%; }

/* Footer */
.main-footer {
    padding: 50px 0;
    background: var(--primary);
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

/* Floating CTAs */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--primary); }

.float-btn:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Intersection Observer Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vertical-title {
        display: none;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .image-badge {
        right: 0;
        bottom: 0;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .highlight-content h2 {
        font-size: 2.5rem;
    }

    /* Counters strip — mobile */
    .counters-grid {
        flex-wrap: wrap;
        gap: 0;
    }

    .counter-item {
        flex: 0 0 100%;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .counter-item:last-child {
        border-bottom: none;
    }

    .counter-divider {
        display: none;
    }

    .counter-number {
        font-size: 2.4rem;
    }

    .counter-plus {
        font-size: 1.8rem;
    }

    .counter-label {
        font-size: 0.8rem;
        margin-top: 4px;
    }

    /* Contact section — mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section .container {
        padding: 0 16px;
    }

    .contact-form-box {
        padding: 24px 20px;
    }

    .contact-map {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .cdc-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .cdc-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .cdc-label {
        font-size: 0.7rem;
    }

    .cdc-value {
        font-size: 0.9rem;
    }

    .map-wrapper {
        height: 280px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .map-wrapper iframe {
        border-radius: 16px;
        width: 100% !important;
        max-width: 100%;
    }
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 45, 75, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    padding: 50px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fdfdfd;
    color: #333;
    transition: var(--transition);
}

.modal-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center/15px;
}

.modal-form textarea {
    height: 100px;
    resize: none;
}

.hero-ctas-custom {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-pill {
    background: var(--accent); /* Brand Gold */
    color: var(--primary); /* Brand Navy */
    padding: 16px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(238, 188, 68, 0.3);
}

.btn-pill:hover {
    background: #d4ac0d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 188, 68, 0.4);
}

.cta-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-icon-circle i {
    transform: rotate(45deg); /* Diagonal arrow effect */
}

.cta-wrapper:hover .cta-icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Custom Form Styles (Modal & Footer) */
.modal-title-custom {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.modal-subtitle-custom {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-group-custom {
    margin-bottom: 22px;
}

.form-group-custom label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-group-custom label i {
    width: 24px;
    color: #555;
    font-size: 0.9rem;
}

.form-group-custom input, 
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: #fdfdfd;
    transition: var(--transition);
    font-family: inherit;
}

.form-group-custom input:focus, 
.form-group-custom select:focus {
    border-color: #8B0000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.btn-red-submit {
    background-color: #8B0000;
    color: white;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: none;
    margin-top: 10px;
}

.btn-red-submit:hover {
    background-color: #A61A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}


/* Highlight Section CTAs */
.highlight-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Testimonials Marquee */
.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: #fdfdfd;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-simple-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-quote-icon {
    font-size: 1.8rem;
    color: #f0f0f0;
}

.testimonial-simple-card .testimonial-stars {
    color: #EEBC44;
    font-size: 0.9rem;
}

.testimonial-simple-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f8f8f8;
}

.author-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.avatar-blue { background: #5D5FEF; }
.avatar-pink { background: #EF5DA8; }
.avatar-cyan { background: #5DCBEF; }
.avatar-purple { background: #A85DEF; }

.author-info-small strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.author-info-small span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Responsiveness & Fixes */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-form-container {
        display: none; /* Hide hero form on small tablets/mobiles */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h1 .highlight {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 140px 0 80px;
    }
    .hero h1 {
        font-size: 1.85rem !important;
        line-height: 1.1;
        margin-top: 20px;
    }
    .hero h1 .highlight {
        font-size: 1.15rem !important;
    }
    .hero h1 br {
        display: block !important;
    }
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas-custom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-pill {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .highlight-ctas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .highlight-ctas .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .pd-grid {
        grid-template-columns: 1fr;
    }
    .pd-right {
        order: -1; /* Image first on mobile */
    }
    .testimonial-simple-card {
        width: 320px;
    }
}

@media (max-width: 480px) {
    .main-header .brand-text {
        font-size: 1.2rem;
    }
    .hero h1 {
        font-size: 1.65rem !important;
    }
    .hero h1 .highlight {
        font-size: 1.05rem !important;
    }
}
