/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0d9488;        /* teal-600 — clean, fresh, trustworthy */
    --primary-dark: #0f766e;   /* teal-700 */
    --primary-light: #f0fdfa;  /* teal-50 */
    --accent: #14b8a6;         /* teal-400 — lighter for gradients */
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* ===== SPLASH SCREEN ===== */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: all;
}

.splash-screen.splash-fade {
    opacity: 0;
    pointer-events: none;
}

.splash-screen.splash-gone {
    display: none;
}

.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: splashReveal 0.7s ease forwards;
}

@keyframes splashReveal {
    from { opacity: 0; transform: translateY(18px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-logo {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1);
}

.splash-brand {
    font-size: 1.55rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
}

.splash-brand span {
    color: var(--accent);
}

.splash-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: -12px;
}

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

h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}
.btn-ghost:hover { border-color: var(--gray-500); }

/* White button — for use on dark/image hero sections */
.btn-white {
    background: #ffffff;
    color: var(--primary);
    border: 1.5px solid #ffffff;
    font-weight: 600;
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-nav {
    background: var(--primary);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.btn-nav:hover { 
    background: var(--primary-dark); 
    color: #ffffff !important;
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    column-gap: 24px;
    height: 96px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-service {
    font-weight: 400;
    color: var(--gray-500);
}

.logo-icon { color: var(--primary); font-size: 1.5rem; }

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    list-style: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--dark); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    background: none;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--primary);
}

.lang-active {
    color: var(--primary);
    font-weight: 700;
}

.lang-inactive {
    color: var(--gray-300);
}

/* ===== NAV PHONE ===== */
.nav-phone-item { display: flex; align-items: center; }
.nav-phone-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark) !important;
    padding: 7px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-phone-link:hover {
    color: var(--primary) !important;
    border-color: var(--primary);
}
@media (max-width: 1100px) { .nav-phone-item { display: none; } }

.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

.lang-toggle-mobile {
    display: none;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
}

.hero-content { max-width: 720px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.text-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-top: 20px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* ===== HERO TRUST CHIPS ===== */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-top: 22px;
}
.hero-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}
.hero-chip-check {
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
}

.hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-300);
    flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-number { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.trust-label { font-size: 0.85rem; color: var(--gray-500); }
.trust-divider { width: 1px; background: var(--gray-300); }

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 1.05rem;
}

/* ===== SERVICES WITH IMAGES ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1.5px solid transparent;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: white;
}

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

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img-icon {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ccfbf1 100%);
}

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

.service-content {
    padding: 28px;
}

.service-content h3 { margin-bottom: 10px; }
.service-content > p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 16px; }

.service-list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-list li {
    font-size: 0.88rem;
    color: var(--gray-700);
    padding-left: 16px;
    position: relative;
}
.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-actions {
    display: flex;
    gap: 12px;
}
.service-actions .btn { flex: 1; }

/* ===== STATS BAND ===== */
.stats-band {
    background: var(--dark);
    padding: 60px 0;
}
.stats-band-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.stats-band-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}
.stats-band-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
@media (max-width: 768px) {
    .stats-band-inner { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .stats-band-item { border-right: none; }
}
@media (max-width: 480px) {
    .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-band { padding: 48px 0; }
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== VALUES ===== */
.values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: white;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ===== ABOUT US ===== */
.about {
    padding: 100px 0;
    background: var(--gray-100);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content h2 {
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.about-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-point-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.about-point strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.about-point p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 100px 0;
    background: var(--primary-light);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 40px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: var(--transition);
}
.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 24px;
    opacity: 1;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--gray-500); }

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.35;
    margin-top: 60px;
    font-weight: 300;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

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

.review-card {
    padding: 32px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.review-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer strong { display: block; font-size: 0.9rem; }
.reviewer span { font-size: 0.8rem; color: var(--gray-500); }

.reviews-cta {
    margin-top: 48px;
    background: #fff;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.reviews-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.reviews-google-g {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 25%, #EA4335 25% 50%, #FBBC04 50% 75%, #34A853 75%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.reviews-cta-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.reviews-cta-count {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.reviews-cta-middle {
    flex: 1;
    min-width: 200px;
}

.reviews-cta-middle strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.reviews-cta-middle p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

.reviews-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .reviews-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }
    .reviews-cta-btn { width: 100%; text-align: center; }
}

/* ===== BOOKING ===== */
.booking {
    padding: 100px 0;
    background: var(--gray-100);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 { margin-bottom: 16px; }
.booking-info > p { color: var(--gray-500); margin-bottom: 40px; }

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.booking-feature span { font-size: 1.5rem; }
.booking-feature p { font-size: 0.85rem; color: var(--gray-500); margin-top: 2px; }

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: var(--primary);
    padding: 64px 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-strip-text h2 {
    color: #fff;
    font-size: 1.875rem;
    margin-bottom: 10px;
}
.cta-strip-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    margin: 0;
}
@media (max-width: 700px) {
    .cta-strip-inner { flex-direction: column; text-align: center; }
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: rgba(255,255,255,0.6);
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 12px;
}

.footer-brand .logo .logo-img {
    filter: brightness(0) invert(1);
    height: 56px;
}

.footer-brand .logo .logo-text {
    color: white;
}

.footer-brand .logo .logo-service {
    color: rgba(255,255,255,0.65);
}

/* Hero logo display */
.hero-logo {
    margin-bottom: 20px;
}

.hero-logo-img {
    width: 82px;
    height: 82px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-ceo { margin-top: 12px; font-weight: 500; color: rgba(255,255,255,0.8); }

.footer-links h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-links a:hover { color: white; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal-overlay.active { display: flex; }

.modal {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 { margin-bottom: 8px; }
.modal p { color: var(--gray-500); margin-bottom: 24px; }

/* ===== SERVICE INFO MODAL ===== */
.service-modal {
    max-width: 500px;
    text-align: left;
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--gray-500);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.modal-close:hover { background: var(--gray-100); color: var(--dark); }

.service-modal-icon { font-size: 2.5rem; margin-bottom: 12px; }

.service-modal-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 12px 0 4px;
}

.service-modal-list {
    list-style: none;
    margin: 16px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-modal-list li {
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.service-modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-modal-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding: 10px 16px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: inline-block;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 140px 0 80px;
}

.legal-page h1 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.legal-page h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page h4 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--gray-700);
}

.legal-page a {
    color: var(--primary);
}
.legal-page a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--dark);
    color: white;
}
.service-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.service-hero-content h1 { color: white; }
.service-hero-content .section-tag { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); }
.service-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin: 20px 0 32px; line-height: 1.7; max-width: 580px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* Rich description section */
.sp-description { padding: 80px 0; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.sp-desc-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
}
.sp-desc-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 28px;
}
.sp-desc-text p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 22px;
}
.sp-desc-text p:last-child { margin-bottom: 0; }
.sp-desc-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 90px;
}
.sp-highlight-box {
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 18px 22px;
}
.sp-highlight-box h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary);
    margin-bottom: 6px;
}
.sp-highlight-box p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin: 0;
}
.sp-highlight-box strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
@media (max-width: 900px) {
    .sp-desc-inner { grid-template-columns: 1fr; gap: 40px; }
    .sp-desc-aside { position: static; flex-direction: row; flex-wrap: wrap; }
    .sp-highlight-box { flex: 1 1 180px; }
}
@media (max-width: 480px) {
    .sp-desc-text h2 { font-size: 1.5rem; }
    .sp-highlight-box { flex: 1 1 100%; }
}

/* What's included */
.sp-included { padding: 80px 0; background: var(--white); }
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}
.included-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 0.92rem;
    color: var(--gray-700);
    border: 1.5px solid transparent;
    transition: var(--transition);
}
.included-item:hover { border-color: var(--primary); background: white; }
.included-item .check { color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* How we work */
.sp-process { padding: 80px 0; background: var(--gray-100); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.process-step {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: var(--transition);
}
.process-step:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.process-step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 14px;
    line-height: 1;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* What to expect */
.sp-expect { padding: 80px 0; background: var(--white); }
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.expect-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1.5px solid transparent;
    transition: var(--transition);
}
.expect-card:hover { border-color: var(--primary); background: white; box-shadow: var(--shadow); }
.expect-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.expect-card h3 { margin-bottom: 8px; font-size: 1rem; }
.expect-card p { font-size: 0.9rem; color: var(--gray-500); }

/* FAQ */
.sp-faq { padding: 80px 0; background: var(--gray-100); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-300);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.75;
    border-top: 1px solid var(--gray-100);
    padding-top: 14px;
}

/* Responsive – service pages */
@media (max-width: 768px) {
    .service-hero { padding: 120px 0 60px; }
    .process-steps { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr 1fr; }
    .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .expect-grid { grid-template-columns: 1fr; }
}

/* ===== OTHER SERVICES STRIP (service pages) ===== */
.sp-services-strip {
    padding: 80px 0;
    background: var(--dark);
}
.sp-services-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.sp-services-panel {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}
.sp-services-panel-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}
.sp-services-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sp-services-panel ul li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
}
.sp-services-panel ul li:last-child { border-bottom: none; }
.sp-services-panel ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.sp-services-panel ul li.sp-current {
    color: var(--accent);
    font-weight: 600;
}
.sp-services-panel ul li.sp-current::before {
    background: var(--accent);
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(20,184,166,0.2);
}
.sp-services-panel ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}
.sp-services-panel ul li:hover a { color: white; }
.sp-services-right .section-tag { margin-bottom: 16px; display: inline-block; }
.sp-services-right h2 { color: white; margin-bottom: 16px; }
.sp-services-right p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .sp-services-strip-inner { grid-template-columns: 1fr; gap: 36px; }
    .sp-services-panel { padding: 28px 24px; }
}

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

    .nav-links {
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-right-mobile {
        display: flex;
    }
    .nav-right {
        display: none;
    }
    .lang-toggle-mobile {
        display: block;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow { transform: rotate(90deg); margin: 0; }

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

    .form-row { grid-template-columns: 1fr; }
    .booking-form { padding: 24px; }

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

    .hero-trust { gap: 20px; }
    .trust-divider { display: none; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-large { grid-column: span 1; }
}