@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Green/White/Dark */
    --primary: #10b981;
    /* Emerald Green */
    --secondary: #34d399;
    /* Light Green Accent */
    --accent: #25d366;
    /* WhatsApp Green */
    --dark: #0a0a0b;
    --dark-grey: #1c1c1e;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-dark: #1c1c1e;

    /* Layout */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 100px 0;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

.text-primary {
    color: var(--primary);
}

.text-gold {
    color: var(--secondary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-light {
    color: rgba(255, 255, 255, 0.5);
}

.font-display {
    font-family: 'Outfit', sans-serif;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-2 {
    letter-spacing: 2px;
}

.w-100 {
    width: 100%;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.hover-primary {
    transition: var(--transition);
}

.hover-primary:hover {
    color: var(--primary);
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.p-0 {
    padding: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-hidden {
    display: inline;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utility */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #004494;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.5);
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-gold:hover {
    transform: translateY(-3px);
    background-color: #10b981;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-accent:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
}

.btn-pulse {
    animation: pulse-primary 3s infinite;
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--primary);
}

.microcopy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-weight: 400;
}

.trust-badge {
    margin-top: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-stars {
    color: #ffcc00;
    text-decoration: none !important;
    display: inline-block;
}

.trust-link {
    text-decoration: none !important;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.google-text {
    text-decoration: underline;
    color: var(--primary);
    font-weight: 600;
}

.trust-link:hover {
    opacity: 1;
}

.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: fade-breathe 2.5s infinite;
}

.whatsapp-sticky:hover {
    background-color: #1ea952;
    transform: scale(1.1);
}

@keyframes fade-breathe {

    0%,
    100% {
        filter: brightness(0.8);
    }

    50% {
        filter: brightness(1.2);
    }
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Responsive Grid Helper */
.grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 992px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-top {
    height: 48px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    /* Higher than header-main for dropdown visibility */
}

.header-main {
    height: 90px;
    position: relative;
    z-index: 1;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.h-100 {
    height: 100%;
}

.whatsapp i {
    color: var(--accent);
}

.text-gold {
    color: var(--secondary);
}

.text-primary {
    color: var(--primary);
}

.uppercase {
    text-transform: uppercase;
}

.tracking-2 {
    letter-spacing: 2px;
}

.mb-10 {
    margin-bottom: 10px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--white);
}

/* Custom Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Adjustments for top bar position */
.header-top .lang-current {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.header-top .lang-current:hover {
    color: var(--white);
}

.header-top .lang-list {
    margin-top: 10px;
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    min-width: 120px;
    z-index: 2000;
}

.lang-dropdown:hover .lang-list,
.lang-dropdown.active .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-item {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.lang-flag {
    width: 18px;
    height: 12px;
    object-fit: contain;
    border-radius: 2px;
}

.logo-img {
    height: 60px;
    object-fit: contain;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-subtext {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: -2px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-subtext b {
    font-weight: 600;
    color: var(--white);
}

.main-nav ul a {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.main-nav ul a:hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 2000;
    position: relative;
    cursor: pointer;
}

@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--dark-grey);
        padding: 100px 40px;
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        /* Always block, but hidden via transform */
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(5px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 11, 0.9) 20%, rgba(10, 10, 11, 0.3) 100%);
}

.hero-content {
    padding-top: 100px;
    z-index: 5;
}

.warranty-badge {
    display: inline-block;
    margin-bottom: 25px;
}

.warranty-badge span {
    background: linear-gradient(135deg, var(--secondary), #b8860b);
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 50px;
}

/* Play Button Utility */
.play-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.play-btn-link {
    font-weight: 600;
}

.play-btn-link:hover .play-btn {
    background-color: var(--primary);
    color: var(--white);
}

@media (max-width: 767px) {
    .mobile-hidden {
        display: none !important;
    }
}


@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .header-top {
        display: flex;
        height: auto;
        padding: 2px 0;
    }
    .header-top .container {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    .header-top .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
    .header-top .contact-info a span {
        display: none;
    }
    .header-top .contact-info i {
        font-size: 1.1rem;
        padding: 5px;
    }
    .header-top .lang-current {
        font-size: 0.75rem;
    }

    .hero {
        text-align: center;
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .form-group label {
        color: var(--white) !important;
        font-weight: 800;
    }
}


/* Services Section */
.services {
    background-color: var(--dark-grey);
}

.service-card {
    padding: 50px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.service-card.active {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 86, 179, 0.05));
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
}

/* Stats Section */
.stats,
.stats-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    gap: 15px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10px;
    transition: var(--transition);
}

.clickable-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    color: inherit;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item .microcopy {
    margin-top: 0;
}

@media (max-width: 767px) {
    .stats-section .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make first stat (reviews) full width on mobile if it's the 5th or special */
    .stat-item-featured {
        grid-column: span 2;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
        padding-bottom: 30px;
    }
}

@media (min-width: 768px) {
    .stat-item-featured {
        grid-column: span 1;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 20px;
    }
}

/* Advantages Section */
.rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.mt-30 {
    margin-top: 30px;
}

.advantage-list {
    margin-top: 30px;
}

.advantage-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.advantage-list li i {
    font-size: 1.25rem;
    margin-top: 5px;
}

.advantage-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 3px;
}

.advantage-list li span {
    color: var(--text-secondary);
}

@media (max-width: 767px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stats {
        margin-top: 0;
    }
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    user-select: none;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.before-after-slider .img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-slider .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-after-slider .before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.before-after-slider .after {
    z-index: 1;
}

.before-after-slider .label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 10;
    pointer-events: none;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

.before-after-slider .slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    transition: all 0.2s;
    z-index: 30;
    cursor: ew-resize;
    top: 0;
    left: 0;
}

.before-after-slider .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 100vh;
    background: var(--white);
    cursor: ew-resize;
}

.before-after-slider .slider-button {
    pointer-events: none;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 40;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.before-after-slider .slider-button i {
    color: var(--dark);
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .before-after-slider {
        height: 300px;
    }
}

/* How It Works */
.steps-grid {
    margin-top: 40px;
}

.step-card {
    position: relative;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.step-card h3 {
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Booking Section */
.gap-60 {
    gap: 60px;
}

.p-40 {
    padding: 40px;
}

.pricing-card {
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.price-item {
    padding: 15px 0;
}

.price-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.price-val small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.price-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* Form Styles */
.form-group label {
    display: block;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--dark-grey);
    border: 2px solid rgba(255, 255, 255, 0.15);
    /* Thicker and more visible */
    border-radius: 8px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
}


.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background-color: var(--dark-grey);
    color: var(--white);
}

.file-input {
    padding: 10px !important;
}

.w-100 {
    width: 100%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.trust-badge.text-center {
    justify-content: center;
}

.trust-stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trust-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.trust-link:hover {
    color: var(--primary);
}

.google-text {
    color: var(--primary);
    font-weight: 700;
}

/* FAQ Styles */
.faq-grid {
    gap: 15px;
    /* Reduced from 30px */
}

.faq-item {
    padding: 12px 20px;
    /* Reduced from 18px 25px */
    border-radius: var(--border-radius);
    margin-bottom: 0;
    /* Let grid handle the gap */
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.faq-icon {
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(90deg);
}

.faq-content {
    margin-top: 15px;
    padding-left: 25px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: #0d0d0e;
    padding: 80px 0 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-about p {
    color: var(--text-secondary);
    max-width: 350px;
    line-height: 1.8;
    margin: 0 auto;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--primary);
    width: 20px;
    font-size: 1.1rem;
}

.footer-contact li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #080809;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-about p {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* Reviews Marquee Section */
.reviews-marquee {
    background-color: var(--dark);
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    width: 400px;
    /* Fixed width for consistent marquee */
    flex-shrink: 0;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-author-name {
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    font-size: 1rem;
}

.review-stars {
    color: #ffcc00;
    /* Gold for stars */
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
}

.text-left {
    text-align: left;
}

/* Map Full Width */
.map-full-width {
    width: 100%;
    line-height: 0;
}

.map-full-width iframe {
    width: 100%;
    border: 0;
}

/* Custom Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-grey);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 30px 100px rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modal-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-icon {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.modal-message {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

.modal-error .modal-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
}