/* ========== CSS RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-navy: #0a1628;
    --secondary-navy: #1a2942;
    --accent-blue: #00a8e8;
    --accent-teal: #00d4ff;
    --ocean-gradient: linear-gradient(135deg, #00a8e8 0%, #00d4ff 100%);
    --dark-gradient: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --text-gray: #6c757d;

    /* Typography */
    --font-primary: 'Maven Pro', -apple-system, BlinkMacSystemFont, sans-serif !important;
    --font-display: 'Maven Pro', Georgia, serif !important;

    /* Spacing */
    --section-padding: 50px;
    --container-padding: 80px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1d5083;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all var(--transition-normal);
    font-family: var(--font-display);
}

.navbar.scrolled .nav-phone-btn {
    color: var(--primary-navy);
}

.nav-phone-btn:hover {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.phone-icon {
    display: flex;
    align-items: center;
    color: #1d5083;
}

.btn-primary-small {
    padding: 12px 28px;
    background: #1d5083;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(10, 22, 40, 0.2);
}

.btn-primary-small:hover {
    background: #0d1b31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.3);
}

.spacing-btn {
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

.btn-primary,
.btn-secondary,
.btn-white,
.btn-primary-small {
    pointer-events: auto;
    cursor: pointer;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo-image {
    max-width: 150px;
    height: auto;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-logo-image {
    max-width: 150px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-fast);
}

.white-text {
    color: #ffffff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-teal);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-large {
    width: auto;
    min-width: 200px;
    display: block;
    margin: 10px auto 0;
    padding: 14px 32px;
    background: linear-gradient(90deg, #1C4E80, #1C4E80);
    /* Match btn-primary Navy */
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(28, 78, 128, 0.3);
    text-transform: uppercase;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 78, 128, 0.5);
    filter: brightness(1.1);
}

.cta-button {
    padding: 12px 28px;
    background: var(--ocean-gradient);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(0, 168, 232, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.4);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0a1628 100%);
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../lp-images/In-Ground-hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    /* Fallback only — shown via JS when video fails to load */
}

.hero.video-failed::before {
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    margin-top: 41px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo .logo-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-normal);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin-top: 24px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-white {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #1C4E80, #2A6AAA);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(28, 78, 128, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.6s;
    pointer-events: none;
}

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

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(28, 78, 128, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-white {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--primary-navy);
    text-decoration: none;

    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.discover-hero {
    margin-top: 25px;
}

/* Float animation removed — was blocking button clicks */

/* Animated wave effect in hero background */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(0, 168, 232, 0.1));
    z-index: 2;
    pointer-events: none;
}

@keyframes wave {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-20px);
    }
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
    margin-top: -50px;
    /* Slight overlap with hero for depth */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 24px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    border-color: rgba(0, 168, 232, 0.1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Response styles for stats */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
        margin-top: 0;
    }

    .stat-card {
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-navy);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 690px;
    margin: 0 auto;
    line-height: normal;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    border-color: rgba(0, 168, 232, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #0056b3;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive grid for Why Choose Us */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 40px 24px;
    }
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: #ececec;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.gallery-card {
    flex: 1 1 400px;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transform: translateY(120px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .card-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.8) 70%, transparent 100%);
}

.card-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
    transition: transform 0.5s ease;
}

.card-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.gallery-card:hover .card-details {
    opacity: 1;
    transform: translateY(0);
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 8px;
}

.price-size {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

/* ========== RECENT WORK SECTION ========== */
.recent-work-section {
    padding: var(--section-padding) 0;
    background: #fcfcfc;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.project-card {
    flex: 1 1 350px;
    max-width: 450px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    /* 4:3 Aspect Ratio approx */
    overflow: hidden;
}

.project-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-card-image {
    transform: scale(1.1);
}

.project-info {
    padding: 24px 24px 32px;
    position: relative;
}

.project-location {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.project-features {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.85;
}

.duration-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .duration-badge {
    background: var(--accent-blue);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    /* Grid columns removed to allow flex centering */
}

@media (max-width: 768px) {

    /* Grid columns removed to allow flex centering */
    .projects-grid {
        gap: 24px;
    }
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 48px 32px;
    border-radius: 20px;
    background: var(--off-white);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
    background: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--ocean-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

/* Background texture for depth */
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(0, 168, 232, 0.05), transparent 40%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 40px;
    /* Aligns with center of marker (80px height / 2) */
    left: 12.5%;
    /* Half of one column (100% / 4 / 2) */
    right: 12.5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    transition: transform var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-marker {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border-radius: 50%;
    background: var(--secondary-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 8px var(--primary-navy);
    /* Creates gap from line */
}

.process-step:hover .step-marker {
    background: var(--ocean-gradient);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 0 0 var(--primary-navy), 0 0 30px rgba(0, 168, 232, 0.4);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--primary-navy);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.step-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-normal);
}

.process-step:hover .step-icon {
    color: var(--white);
}

.step-content {
    padding: 0 10px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 16px;
    background: rgba(0, 168, 232, 0.15);
    color: var(--accent-teal);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 168, 232, 0.2);
}

/* Response styles for process */
@media (max-width: 900px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-left: 20px;
    }

    .process-line {
        top: 0;
        bottom: 0;
        left: 60px;
        /* Align with marker center */
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }

    .step-marker {
        margin: 0;
        flex-shrink: 0;
    }

    .process-step:hover {
        transform: translateX(10px);
    }
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

.white-text {
    color: var(--white) !important;
}

.pricing-table-container {
    max-width: 900px;
    margin: 60px auto 30px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 24px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-table th {
    background: var(--off-white);
    color: var(--primary-navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.pricing-table td {
    color: var(--primary-navy);
    font-size: 18px;
    font-weight: 500;
}

.pricing-table .price-cell {
    font-weight: 700;
    color: var(--accent-blue);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    padding: 20px;
    font-style: italic;
}

.inclusions-grid {
    max-width: 1120px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: #4ade80;
    /* Vibrant green check */
    font-weight: 900;
    font-size: 18px;
}

.inclusion-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.pricing-cta-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 5;
}

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

@media (max-width: 900px) {

    .pricing-table th,
    .pricing-table td {
        padding: 20px;
    }

    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-table-container {
        overflow-x: auto;
    }

    .pricing-table {
        min-width: 500px;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: #f8faff;
    /* Very light blue tint */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1120px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    /* Gold stars */
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-navy);
    margin: 0 0 25px 0;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 16px;
}

.author-location {
    font-size: 14px;
    color: var(--text-gray);
    opacity: 0.8;
}

@media (max-width: 850px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    justify-items: center;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 40px;
    max-width: 1120px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.team-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(10, 22, 40, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 51, 102, 0.03);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(10, 22, 40, 0.1);
    border-color: rgba(0, 168, 232, 0.2);
}

.member-avatar {
    width: 160px;
    height: 160px;
    background: var(--ocean-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.3);
}

.member-avatar::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(0, 168, 232, 0.2);
    border-radius: 50%;
}

.member-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.member-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.member-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    width: 100%;
}

.member-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.member-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 900;
}

.member-quote {
    padding: 15px 0 15px 24px;
    border-left: 4px solid var(--accent-blue);
    font-style: italic;
    color: var(--secondary-navy);
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    width: 100%;
    background: rgba(0, 168, 232, 0.03);
}

@media (max-width: 991px) {

    .project-card,
    .gallery-card {
        max-width: 100% !important;
    }
}

@media (max-width: 950px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }
}

/* ========== SERVICE AREA SECTION ========== */
.service-area-section {
    padding: var(--section-padding) 0 0 0;
    /* Remove bottom padding as map will touch footer or be full width */
    background: #f8faff;
}

.map-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(10, 22, 40, 0.08);
    width: 100%;
    border-top: 1px solid rgba(0, 51, 102, 0.05);
}

.map-wrapper {
    width: 100%;
    line-height: 0;
}

.map-wrapper iframe {
    filter: grayscale(0.2) contrast(1.1);
}

.location-chips {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.chip {
    background: var(--off-white);
    color: var(--secondary-navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: 1px solid rgba(0, 51, 102, 0.05);
}

.chip:hover {
    background: var(--white);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.1);
}

@media (max-width: 768px) {
    .location-chips {
        padding: 30px 20px;
        gap: 8px;
    }

    .chip {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-navy);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
}

.faq-item.active {
    border-color: var(--primary-navy);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--primary-navy);
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-navy);
    transition: transform var(--transition-normal);
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* Turns + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 22, 40, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough to fit content */
    padding: 0 32px 32px 32px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
    }
}

/* ========== MODAL ========== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 20px;
}

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

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 720px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-content {
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--primary-navy);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    pointer-events: all;
}

.modal-close:hover {
    background: #c0392b;
    color: var(--white);
    transform: scale(1.1);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-navy);
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--primary-navy);
    transition: all var(--transition-fast);
    background: var(--off-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 40px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.modal-submit {
    width: 100%;
    margin-top: 10px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 80px 0 30px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.text-decoration-none{text-decoration: none  !important;}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 16px;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 24px;
        font-weight: 400;
        line-height: normal;
    }

    .feature-description {
        font-size: 16px;
        color: var(--text-gray);
        line-height: normal;
    }

    .hero-badges {
        display: flex;
        flex-wrap: wrap !important;
    }

    .nav-menu {
        display: none;
    }

    .nav-logo-image {
        max-width: 140px;
    }

    .navbar.scrolled .nav-logo-image {
        max-width: 120px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-logo .logo-image {
        max-width: 200px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .nav-logo-image {
        max-width: 100px;
    }

    .navbar.scrolled .nav-logo-image {
        max-width: 100px;
    }

    .nav-actions {
        gap: 12px;
    }

    .phone-text {
        display: none;
    }

    .nav-phone-btn {
        padding: 0;
        font-size: 16px;
    }

    .btn-primary-small {
        padding: 10px 16px;
        font-size: 13px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .company-info {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    :root {
        --section-padding: 50px;
    }

    .container {  padding: 0 20px;}
    .team-card {padding: 40px 20px; border-radius: 16px;}
    .member-avatar { width: 130px;height: 130px;}
    .container.nav-container{ padding: 0 20px;}
    .hero{height: 60dvh;}
    .hero-content{margin-top: 60px;}
    .hero-title {font-size: 30px;}
    .container.nav-container .btn-primary-small{padding: 12px 16px !important;}
    .modal-container{padding: 16px;}
    .modal-title{font-size: 24px; margin-bottom: 4px;}
    .modal-subtitle{margin-bottom: 8px; font-size: 14px;}

}