

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 35px 60px -12px rgba(0, 0, 0, 0.4);
    --blur: blur(20px) saturate(180%);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Ultra Modern Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
    will-change: background;
    contain: layout style;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.85;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 2rem;
    font-size: 0.85rem;
}

.header-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.header-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.header-contact .separator {
    color: rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

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

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.nav-cta::before {
    display: none;
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: var(--blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0.75rem 0;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    list-style: none;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a::before {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--white) !important;
    padding-left: 1.8rem;
}

/* Hero - Immersive Design */
.hero {
    height: auto;
    min-height: 400px;
    padding-top: 100px;
    padding-bottom: 2rem;
    background: url('/images/IMG_8707.jpeg') 38% 46% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    will-change: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.25) 60%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
}

/* Desktop optimization for hero drone image visibility */
@media (min-width: 1024px) {
    .hero {
        height: auto;
        min-height: 420px;
        padding-top: 110px;
        padding-bottom: 2.5rem;
        background-position: 38% 46%;
    }
    .hero::before {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.15) 50%, rgba(15, 23, 42, 0.8) 100%);
    }
    .hero-badge {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-bottom: 1.5rem;
    }
    .hero .subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .cta-button {
        padding: 1.6rem 3.5rem;
        font-size: 1.25rem;
    }
    .contact-content {
        max-width: 900px;
    }
    .contact-form {
        padding: 3rem 3.5rem;
    }
}

@keyframes aurora {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }

    33% {
        transform: rotate(2deg) scale(1.05);
        opacity: 1;
    }

    66% {
        transform: rotate(-1deg) scale(0.98);
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    will-change: transform;
}

@keyframes badgeFadeIn {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--blur);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: badgeFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 0.95;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    font-family: 'Sora', sans-serif;
}


.hero .subtitle {
    display: block;
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.85;
    letter-spacing: 0.05em;
    border: none;
    animation: heroSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

@keyframes heroSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(90, 130, 200, 0.45) 0%, rgba(140, 170, 230, 0.35) 50%, rgba(100, 140, 210, 0.4) 100%);
    backdrop-filter: var(--blur);
    color: var(--white);
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(140, 170, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, rgba(90, 130, 200, 0.55) 0%, rgba(140, 170, 230, 0.45) 50%, rgba(100, 140, 210, 0.5) 100%);
    border-color: rgba(140, 170, 230, 0.45);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--blur);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Services Section */
.services {
    padding: 2rem 0 1rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--dark), transparent);
    pointer-events: none;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 50%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f5f0e8;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: none;
    position: relative;
    display: inline-block;
    width: 100%;
}

.services .section-title,
.why-choose .section-title,
.contact .section-title {
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 40%, #e8d5a3 60%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(196, 169, 106, 0.3));
}

.services .section-title::after,
.why-choose .section-title::after,
.contact .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c4a96a, #e8d5a3);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
    transform: translateZ(0);
}

.service-card-content {
    padding: 3rem;
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card-bg {
    display: none;
}

/* Full-width service category banners */
.service-category-banner {
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 80px;
    contain: layout style paint;
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
    background-color: #0f172a;
}

.service-category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.65) 100%);
    z-index: 1;
}

.service-category-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 1.5rem 2rem;
}

.service-category-banner .banner-content .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.service-category-banner .banner-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.service-category-banner .banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.service-category-banner a.banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* Per-category image position optimizations */
#pool.service-category-banner {
    background-position: center 65%;
}
#construction-documentation.service-category-banner {
    background-position: center 60%;
}
#live-events.service-category-banner {
    background-position: center 70%;
}
#advertising-marketing.service-category-banner {
    background-position: center 40%;
}
#custom-projects.service-category-banner {
    background-position: center 65%;
}
#kitchens.service-category-banner {
    background-position: center 55%;
}

@media (max-width: 768px) {
    .service-banners-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 12px;
    }

    .service-category-banner {
        min-height: 180px;
        border-radius: 14px;
        overflow: hidden;
    }

    .service-category-banner .banner-content {
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        box-sizing: border-box;
    }

    .service-category-banner .banner-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    }

    .service-category-banner .banner-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    /* Per-category mobile image position optimizations */
    #pool.service-category-banner {
        background-position: center 60%;
    }
    #construction-documentation.service-category-banner {
        background-position: center 60%;
    }
    #live-events.service-category-banner {
        background-position: center 65%;
    }
    #advertising-marketing.service-category-banner {
        background-position: center 35%;
    }
    #custom-projects.service-category-banner {
        background-position: center 60%;
    }
    #roof-inspections.service-category-banner {
        background-position: center 40%;
    }
    #kitchens.service-category-banner {
        background-position: center 45%;
    }

    .service-category-banner::before {
        background: linear-gradient(to bottom, rgba(2, 6, 23, 0.5) 0%, rgba(2, 6, 23, 0.75) 100%);
    }
}

@media (max-width: 400px) {
    .service-banners-grid {
        gap: 6px;
        padding: 0 10px;
    }

    .service-category-banner {
        min-height: 160px;
    }

    .service-category-banner .banner-content {
        padding: 1.25rem 1rem;
    }

    .service-category-banner .banner-content h3 {
        font-size: 1.1rem;
    }

    .service-category-banner .banner-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
}

.service-card:not(:has(.service-card-image)) {
    padding: 3rem;
}

.service-card:not(:has(.service-card-image)) .service-card-content {
    padding: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
}

.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card:hover {
    background: rgba(15, 23, 42, 0.95);
}

.service-card:hover::before {
}

.service-card:hover::after {
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
    font-family: 'Sora', sans-serif;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: #000000;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
    pointer-events: none;
    z-index: 1;
}

.why-choose .section-title {
    white-space: nowrap;
    font-size: clamp(1.8rem, 5vw, 4rem);
    background: linear-gradient(135deg, #f5f0e8 0%, #c4a96a 40%, #e8d5a3 60%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f5f0e8;
    font-family: 'Space Grotesk', sans-serif;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.features-list li:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.5);
}

.features-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid > .feature-card {
    flex: 1 1 0;
    min-width: 0;
}

@media (max-width: 600px) {
    .features-grid {
        flex-wrap: wrap;
    }
    .features-grid > .feature-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

.feature-card {
    padding: 1.5rem 1.25rem;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    contain: layout style paint;
    transform: translateZ(0);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-family: 'Sora', sans-serif;
}

.feature-card p {
    line-height: 1.6;
    font-size: 0.9rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card 1 — FAA-Certified: bold left-accent bar */
.feature-card-1 {
    text-align: left;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(15, 23, 42, 0.85) 60%);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-left: 4px solid #10b981;
    position: relative;
}

.feature-card-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-card-1 .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.feature-card-1:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.feature-card-1 p {
    color: #a7f3d0;
}

/* Card 2 — Fully Insured: outlined / glass style */
.feature-card-2 {
    text-align: center;
    background: transparent;
    border-radius: 24px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.feature-card-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card-2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2), inset 0 0 40px rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.7);
}

.feature-card-2 .feature-icon {
    background: transparent;
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 16px;
    margin: 0 auto 1rem;
}

.feature-card-2:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.4);
}

.feature-card-2 p {
    color: #c7d2fe;
}

/* Card 3 — Professional Quality: gradient filled */
.feature-card-3 {
    text-align: center;
    background: linear-gradient(160deg, #1e3a5f 0%, #0f172a 50%, #1a1a2e 100%);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card-3::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    border-radius: 0 0 4px 4px;
}

.feature-card-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
}

.feature-card-3 .feature-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 14px;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25);
}

.feature-card-3:hover .feature-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 12px 36px rgba(251, 191, 36, 0.5);
}

.feature-card-3 p {
    color: #fde68a;
}

/* Card 4 — Quick Turnaround: dark with neon glow */
.feature-card-4 {
    text-align: left;
    background: rgba(10, 10, 20, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card-4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
}

.feature-card-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    border-color: rgba(236, 72, 153, 0.5);
}

.feature-card-4 .feature-icon {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.feature-card-4:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: 0 0 32px rgba(236, 72, 153, 0.5), 0 0 64px rgba(139, 92, 246, 0.3);
}

.feature-card-4 p {
    color: #f9a8d4;
}


/* Contact Section */
.contact {
    padding: 3rem 0 6rem;
    background:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.contact .section-subtitle {
    margin-bottom: 2rem;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0f172a);
    pointer-events: none;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: var(--blur);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--gradient-1);
    opacity: 0.02;
    border-radius: 24px 24px 0 0;
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.035em;
    position: relative;
    z-index: 2;
    font-family: 'Sora', sans-serif;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 10px;
    font-size: 0.925rem;
    font-family: inherit;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: var(--dark);
}

.phone-input-group {
    display: grid;
    grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .phone-input-group {
        grid-template-columns: 1fr;
    }
}

.address-autocomplete {
    position: relative;
}

.address-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    overflow-y: auto;
}

.address-suggestions[hidden] {
    display: none;
}

.address-suggestions li {
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    transition: background 0.15s ease;
}

.address-suggestions li:last-child {
    border-bottom: none;
}

.address-suggestions li:hover,
.address-suggestions li.active {
    background: rgba(59, 130, 246, 0.2);
}

.address-suggestions li.empty,
.address-suggestions li.loading {
    cursor: default;
    color: rgba(226, 232, 240, 0.65);
    font-style: italic;
}

.address-suggestions li.empty:hover,
.address-suggestions li.loading:hover {
    background: transparent;
}

#contactForm .form-group:has(#address) ~ .form-group,
#contactForm .form-group:has(#address) ~ .submit-btn {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#contactForm.suggestions-open .form-group:has(#address) ~ .form-group,
#contactForm.suggestions-open .form-group:has(#address) ~ .submit-btn {
    opacity: 0.08;
    pointer-events: none;
}

.form-hint {
    display: none;
    margin-top: 0.45rem;
    font-size: 0.825rem;
    color: #fca5a5;
    letter-spacing: 0.01em;
}

.form-hint.visible {
    display: block;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}

.submit-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-4px);

}

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

.form-success {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 16px;
    color: #d1fae5;
    margin-top: 0.5rem;
}

.form-success h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #6ee7b7;
}

.form-success p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: var(--blur);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-1);
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-item:hover::before {
    height: 100%;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.025em;
    font-family: 'Sora', sans-serif;
}

.contact-item p {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-item a {
    color: #f5f0e8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item a:hover {
    color: #e8e0d0;
    text-decoration: underline;
}

/* Find Us on Google Maps Bubble */
.maps-bubble {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 0.9rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    cursor: pointer;
    margin: 0.8rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maps-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.maps-bubble .maps-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.maps-bubble .maps-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f5f0e8;
    margin: 0;
    line-height: 1.3;
}

.maps-bubble .maps-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.3);
    white-space: nowrap;
}

.maps-bubble .maps-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.45);
}

.maps-bubble .maps-button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .maps-bubble {
        padding: 0.7rem 1.1rem;
        border-radius: 16px;
    }
    .maps-bubble .maps-title {
        font-size: 0.85rem;
    }
    .maps-bubble .maps-button {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.5), transparent);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 30px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Sora', sans-serif;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: var(--blur);
    z-index: 1050;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu > ul > li > a {
    display: block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-menu > ul > li > a:hover {
    color: #f5f0e8;
}

.mobile-menu .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.mobile-menu .mobile-dropdown-toggle:hover {
    color: #f5f0e8;
}

.mobile-dropdown-toggle .mobile-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-submenu.open {
    max-height: 400px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-submenu a:hover {
    color: #f5f0e8 !important;
    padding-left: 0.5rem;
}

.mobile-menu .mobile-cta {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        pointer-events: auto;
    }

    .nav-links {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .logo {
        height: 28px;
    }

    .logo img {
        max-width: 140px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-content .logo {
        max-width: min(400px, 85vw);
    }

    .hero .subtitle {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }

    .cta-container {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .service-card,
    .contact-form,
    .contact-item {
        padding: 1.75rem 1.5rem;
    }

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

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: auto;
        min-height: 400px;
        padding-top: 80px;
        padding-bottom: 1.5rem;
    }

    .google-reviews {
        padding-top: 1.5rem;
    }
}

/* Content is visible immediately — no scroll-triggered pop-in */
.fade-in {
    opacity: 1;
    transform: none;
}

/* Scroll-triggered icon bounce animation */
@keyframes iconBounce {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.15) rotate(3deg);
    }
    70% {
        transform: scale(0.95) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.service-icon {
    opacity: 1;
    transform: none;
}

/* Google Reviews Section */
.google-reviews {
    background: var(--dark);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.google-reviews::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #000000);
    pointer-events: none;
    z-index: 1;
}

.google-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.reviews-header .google-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-header .google-icon svg {
    width: 38px;
    height: 38px;
}

.reviews-header .rating-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.35rem;
}

.reviews-header .stars {
    color: #f59e0b;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.reviews-header a {
    color: #f5f0e8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.reviews-header a:hover {
    color: #e8e0d0;
}

.reviews-track-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.reviews-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.75rem 0;
    cursor: grab;
}

.reviews-track-inner {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    will-change: transform;
}

.reviews-track:active {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 440px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.25);
    cursor: pointer;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-name {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media (max-width: 768px) {
    .review-card {
        flex: 0 0 350px;
    }

    .reviews-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Review modal overlay */
.review-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.review-modal-overlay.active {
    opacity: 1;
}
.review-modal-card {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98), rgba(20, 20, 40, 0.98));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 3rem;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.15);
}
.review-modal-overlay.active .review-modal-card {
    transform: scale(1);
}
.review-modal-card .review-card-header {
    margin-bottom: 1.25rem;
}
.review-modal-card .review-name {
    font-size: 1.4rem;
}
.review-modal-card .review-stars {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.review-modal-card .review-text {
    font-size: 1.2rem;
    line-height: 1.85;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
    color: rgba(255, 255, 255, 0.85);
}
.review-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1;
}
.review-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .review-modal-card {
        padding: 2rem;
        max-width: 95%;
    }
    .review-modal-card .review-name {
        font-size: 1.2rem;
    }
    .review-modal-card .review-text {
        font-size: 1.05rem;
    }
}

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    padding: 3rem 0;
    background: #000000;
}

.faq-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f5f0e8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 169, 106, 0.4);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background: rgba(196, 169, 106, 0.15);
    border-color: #c4a96a;
    color: #c4a96a;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Real Estate Agent Pop-Out Bubble */
.re-agent-bubble {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.45), 0 0 0 0 rgba(59, 130, 246, 0.4);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: bubblePulse 2.5s ease-in-out infinite, bubbleSlideIn 0.6s ease-out both;
    animation-delay: 0s, 2s;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}
.re-agent-bubble:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.55);
    animation: none;
}
.re-agent-bubble svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
@keyframes bubblePulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.45), 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.45), 0 0 0 10px rgba(59, 130, 246, 0); }
}
@keyframes bubbleSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Price Sheet Modal Overlay */
.re-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.re-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.re-modal {
    position: relative;
    width: 90%;
    max-width: 440px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 24px;
    padding: 40px 32px 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(59, 130, 246, 0.12);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s ease;
}
.re-modal-overlay.active .re-modal {
    transform: translateY(0) scale(1);
}
.re-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 4px;
}
.re-modal-close:hover {
    color: var(--white);
}
.re-modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.re-modal-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}
.re-modal h3 {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px;
}
.re-modal .re-modal-sub {
    text-align: center;
    color: var(--gray);
    font-size: 0.92rem;
    margin: 0 0 24px;
    line-height: 1.5;
}
.re-modal input[type="text"],
.re-modal input[type="email"] {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(100, 116, 139, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.re-modal input[type="text"]:focus,
.re-modal input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.re-modal input::placeholder {
    color: rgba(148, 163, 184, 0.6);
}
.re-modal-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-1);
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 4px;
}
.re-modal-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.re-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.re-modal-success {
    text-align: center;
    display: none;
}
.re-modal-success svg {
    width: 48px;
    height: 48px;
    color: #22c55e;
    margin-bottom: 12px;
}
.re-modal-success h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 0 8px;
}
.re-modal-success p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .re-agent-bubble {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    .re-agent-bubble svg {
        width: 18px;
        height: 18px;
    }
    .re-modal {
        padding: 32px 20px 24px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .re-agent-bubble {
        animation: none;
    }
    .re-modal-overlay,
    .re-modal {
        transition: none;
    }
}
