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

:root {
    /* Light / White Theme */
    --primary: #1e293b;
    --primary-dark: #0f172a;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --text: #0f172a;
    --text-light: #64748b;
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --white: #ffffff;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --card-shadow: 0 8px 24px rgba(30, 41, 59, 0.12), 0 4px 12px rgba(30, 41, 59, 0.08);
    --card-shadow-hover: 0 16px 40px rgba(30, 41, 59, 0.18), 0 8px 20px rgba(30, 41, 59, 0.12);
    --shadow-amber: 0 4px 20px rgba(245, 158, 11, 0.2);
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

/* Scroll offset for fixed header - nav links scroll to correct position */
#services, #how-it-works, #faq, #reviews {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 800; }
h3 { font-size: 1.125rem; font-weight: 700; }

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.header-top {
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.header-tag { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.header-phone {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.header-phone i { font-size: 0.9em; opacity: 0.95; }
.header-phone:hover { color: var(--primary); }
.header-phone:hover i { opacity: 1; }

.header-main {
    background: #fff;
    /* padding: 14px 0; */
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-accent { color: var(--primary); }

.nav-links { display: flex; gap: 24px; }
.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

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

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.header-btn-whatsapp { background: #25d366; color: white; }
.header-btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }

.header-btn-call { background: var(--primary); color: white; }
.header-btn-call:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(30, 41, 59, 0.4); }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav - Simple dropdown */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 998;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.06);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-nav-close:hover {
    background: rgba(0,0,0,0.06);
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: rgba(0,0,0,0.04);
    color: var(--primary);
}

/* Hero Title Bar */
.hero-title-bar {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.hero-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.hero-subheading {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.hero-title-bar .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.hero-title-bar .star {
    color: #fbbf24;
    font-size: 1.1rem;
}

.hero-title-bar .rating-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
}

.hero-title-bar .separator,
.hero-title-bar .rating-max {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hero-title-bar .rating-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-left: 8px;
}

/* Hero Banner - Redesigned */
.hero-banner {
    margin-top: 100px;
    position: relative;
    height: 420px;
    overflow: hidden;
    width: 100%;
}

.banner-track {
    position: absolute;
    inset: 0;
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1e293b;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.1) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Arrows */
.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.5);
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.banner-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: var(--primary);
    color: white;
}

.banner-prev { left: 24px; }
.banner-next { right: 24px; }

/* Dots */
.banner-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-dot:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.15);
}

.banner-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.5);
}

/* Progress bar */
.banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
    overflow: hidden;
}

.banner-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #334155);
    transition: width 0.1s linear;
}

/* Services */
.services .section-tag,
.assistance .section-tag,
.how-it-works .section-tag,
.why-choose .section-tag,
.faq .section-tag,
.reviews .section-tag {
    display: block;
    text-align: center;
}

.services { padding: 40px 0 72px; }

.services .section-tag,
.faq .section-tag {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.12) 0%, rgba(30, 41, 59, 0.06) 100%);
    border: 1px solid rgba(30, 41, 59, 0.2);
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.services h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text);
}

.services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* Service tabs - desktop: same width as service cards, no background. Mobile: sticky with background */
.service-tabs-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    z-index: 100;
    padding: 0;
}

.tab-btn-img {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 140px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
    box-shadow: var(--card-shadow);
}

.tab-btn-img:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.3); }
.tab-btn-img.active { box-shadow: 0 0 0 3px var(--primary), 0 10px 28px rgba(0,0,0,0.4), 0 5px 14px rgba(0,0,0,0.28); }

.tab-btn-img-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: inset 0 -25px 40px -15px rgba(0,0,0,0.4);
}

.tab-btn-bg {
    position: absolute;
    inset: 0;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
}

.tab-btn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
}

.tab-btn-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.tab-btn-img.active .tab-btn-label {
    color: #fff;
}

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; }

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

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }

.service-card-img {
    height: 180px;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
}

.service-card-body { padding: 24px; }

.service-card h3 { margin-bottom: 6px; font-size: 0.95rem; }
.service-card p { font-size: 0.82rem; color: var(--text-light); }

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.book-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.25);
}

.book-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #020617 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.3);
}

/* Assistance */
.assistance {
    padding: 64px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.assistance-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.assistance-img {
    flex-shrink: 0;
    width: 280px;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
}

.assistance-content {
    flex: 1;
    padding: 32px 40px 32px 0;
}

.assistance-content h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; }
.assistance-content p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }

.assistance .cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.assistance .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-call {
    background: var(--primary);
    color: white;
}
.cta-call:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30, 41, 59, 0.35); }

.cta-whatsapp {
    background: #25d366;
    color: white;
}
.cta-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }

/* Assistance - mobile */
@media (max-width: 768px) {
    .assistance-inner { flex-direction: column; gap: 0; }
    .assistance-img { width: 100%; height: 180px; }
    .assistance-content { padding: 24px 24px 28px; text-align: center; }
    .assistance-content h2 { font-size: 1.5rem; }
    .assistance .cta-buttons { justify-content: center; }
}

/* Stats */
.stats {
    padding: 40px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }

/* How it Works */
.how-it-works { padding: 64px 0 72px; background: #fff; }

.how-work-title { text-align: center; margin-bottom: 48px; }
.how-it-works h2 { margin-bottom: 12px; font-size: 1.75rem; }
.how-work-title p { color: var(--text-light); font-size: 1.05rem; }

.how-work-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.how-works-block {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-works-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.how-step-arrow {
    flex: 0 0 50px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 4px, transparent 4px, transparent 8px);
    opacity: 0.4;
    margin: 0 8px;
    align-self: center;
}

.how-step-img {
    margin-bottom: 24px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-img img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.how-works-block h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.how-works-block h5 span {
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .how-work-steps { flex-direction: column; gap: 24px; }
    .how-step-arrow {
        width: 2px;
        height: 24px;
        flex: none;
        background: repeating-linear-gradient(180deg, var(--primary) 0, var(--primary) 4px, transparent 4px, transparent 8px);
        margin: 0;
    }
    .how-works-block { max-width: 100%; }
}

/* Enquiry Form Section */
.enquiry-section { padding: 64px 0 72px; background: var(--bg); }

.form-container { max-width: 700px; margin: 0 auto; }

.call-support-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.08) 0%, rgba(15, 23, 42, 0.06) 100%);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(30, 41, 59, 0.12);
}

.call-support-section h2 { margin-bottom: 8px; font-size: 1.5rem; }
.call-support-section p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.35);
    transition: all 0.25s ease;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.45);
}

.form-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.request-form input,
.request-form select,
.request-form textarea {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font);
    transition: border-color 0.2s;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.call-back-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.call-back-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.35);
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.rating-item {
    text-align: center;
}

.rating-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.rating-value-wrapper img { width: 24px; height: 24px; }
.rating-value { font-size: 1.25rem; font-weight: 800; }
.rating-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.rating-highlight { font-size: 1.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 4px; }

.rating-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.info-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.info-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

@media (max-width: 768px) {
    .service-features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .additional-info { grid-template-columns: 1fr; }
    .rating-info { flex-direction: column; gap: 20px; }
    .rating-divider { width: 60px; height: 1px; }
    .form-wrapper { padding: 24px; }
}

/* Why Choose Us */
.why-choose-us { padding: 64px 0 72px; background: #fff; }

.why-choose-us h2 { text-align: center; margin-bottom: 12px; }
.why-choose-sub { text-align: center; color: var(--text-light); margin-bottom: 48px; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.why-choose-icon {
    margin-bottom: 16px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.why-choose-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

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

@media (max-width: 768px) {
    .why-choose-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .why-choose-card { padding: 20px 12px; }
    .why-choose-icon { min-height: 60px; }
    .why-choose-icon img { max-height: 60px; }
    .why-choose-title { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .why-choose-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .why-choose-card { padding: 16px 10px; }
    .why-choose-icon { min-height: 50px; }
    .why-choose-icon img { max-height: 50px; }
    .why-choose-title { font-size: 0.75rem; }
}

/* Why Choose (benefits) */
.why-choose { padding: 64px 0 72px; }

.why-choose .section-tag { display: block; text-align: center; margin-bottom: 12px; }
.why-choose h2 { text-align: center; margin-bottom: 12px; }
.why-choose > .container > p { text-align: center; color: var(--text-light); margin-bottom: 40px; }

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.benefit {
    padding: 20px 28px;
    background: var(--bg-card);
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.benefit-icon { font-size: 1.5rem; }

/* FAQ */
.faq { padding: 64px 0 72px; background: #fff; }

.faq h2 { text-align: center; margin-bottom: 40px; }

.faq-list { max-width: 680px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover { border-color: rgba(30, 41, 59, 0.3); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--card-shadow); }

.faq-q {
    width: 100%;
    padding: 18px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-q:hover { background: rgba(30, 41, 59, 0.06); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
}

/* Reviews */
.reviews { padding: 64px 0 72px; }

.reviews .section-tag { display: block; text-align: center; margin-bottom: 12px; }
.reviews h2 { text-align: center; margin-bottom: 12px; }
.rating-summary { text-align: center; font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 32px; }

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

.review-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.review-card .stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 12px; }
.review-card h4 { margin-bottom: 4px; }
.review-card .location { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }

.google-reviews-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    transition: all 0.25s ease;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.google-reviews-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); transform: translateY(-2px); }

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-cta:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(30, 41, 59, 0.5); }

/* Floating Bottom Bar - Mobile only (Call + WhatsApp) */
.floating-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .floating-cta { display: none; }
    .floating-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        gap: 12px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 -4px 24px rgba(0,0,0,0.12), 0 -2px 8px rgba(0,0,0,0.06);
        backdrop-filter: blur(10px);
    }
    .floating-bottom-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 20px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        color: white;
        transition: all 0.25s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .floating-bottom-call {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    .floating-bottom-call:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    }
    .floating-bottom-whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
    }
    .floating-bottom-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    .scroll-top { bottom: 80px; }
    .footer { padding-bottom: 100px; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: white;
    padding: 48px 0 36px;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: #f59e0b; }

.footer-contact {
    margin: 20px 0 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-email:hover { color: #f59e0b; }

.footer-email i { font-size: 1rem; opacity: 0.9; }

.footer-address {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.footer-address i {
    color: #f59e0b;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-copy { margin-bottom: 6px; font-weight: 500; font-size: 0.95rem; }
.disclaimer {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.disclaimer p { margin: 0 0 10px 0; }

.disclaimer p:last-child { margin-bottom: 0; }

.disclaimer-sign { font-weight: 600; margin-top: 12px !important; }

.disclaimer-link { color: rgba(255,255,255,0.9); text-decoration: underline; }

.disclaimer-link:hover { color: #f59e0b; }

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-credit a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-credit a:hover { color: #fbbf24; text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) {
    .header-top { display: none; }
    .hero-title-bar { margin-top: 62px; }
    .hero-banner { margin-top: 0; }
}

@media (min-width: 769px) {
    .mobile-nav { display: none !important; }
}

@media (max-width: 768px) {
    #services, #how-it-works, #faq, #reviews { scroll-margin-top: 70px; }
    .nav-links { display: none; }
    .header-actions { display: none; }
    .menu-toggle { display: flex; }

    .hero-heading { font-size: 1.05rem; }
    .hero-subheading { font-size: 0.78rem; }
    .hero-title-bar { padding: 18px 16px; }
    .hero-banner { height: 300px; }
    .banner-btn { width: 44px; height: 44px; }
    .banner-prev { left: 12px; }
    .banner-next { right: 12px; }
    .banner-dots { bottom: 20px; gap: 8px; }
    .banner-dot { width: 10px; height: 10px; }

    .service-tabs-img {
        position: sticky;
        top: 60px;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 18px;
        padding: 12px 14px 14px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: var(--bg);
        box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
        border-radius: 0 0 16px 16px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .tab-btn-img { height: 72px; border-radius: 12px; }
    .tab-btn-img-wrap { border-radius: 12px; }
    .tab-btn-label { padding: 5px 6px; font-size: 0.7rem; }

    .services { padding: 28px 0 48px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .service-card-img { height: 95px; }
    .service-card-body { padding: 12px 14px; }
    .service-card h3 { font-size: 0.82rem; margin-bottom: 4px; }
    .service-card p { font-size: 0.75rem; }
    .service-card .price { font-size: 1.1rem; }
    .price-row { margin-top: 10px; gap: 10px; }
    .book-btn { padding: 8px 14px; font-size: 0.75rem; }


    .cta-buttons { flex-direction: column; }
    .cta-btn { justify-content: center; }

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

    .footer-grid { flex-direction: column; }

    .footer-contact { margin: 16px 0 12px; padding: 12px 0; }
    .footer-address { font-size: 0.85rem; padding: 0 12px; }
    .disclaimer { font-size: 0.75rem; padding: 0 12px; }

    .floating-cta { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .scroll-top { bottom: 20px; left: 20px; width: 44px; height: 44px; }
}

@media (max-width: 400px) {
    .service-tabs-img { gap: 8px; padding: 10px 12px 12px; margin-bottom: 14px; }
    .tab-btn-img { height: 58px; border-radius: 10px; }
    .tab-btn-img-wrap { border-radius: 10px; }
    .tab-btn-label { padding: 4px 4px; font-size: 0.65rem; }
    .service-grid { gap: 8px; }
    .service-card-img { height: 80px; }
    .service-card-body { padding: 10px 12px; }
    .service-card h3 { font-size: 0.75rem; }
    .service-card p { font-size: 0.7rem; }
    .service-card .price { font-size: 1rem; }
    .book-btn { padding: 6px 10px; font-size: 0.7rem; }
}

/* Privacy Policy Page */
.privacy-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.privacy-content h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.privacy-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.privacy-content h2 {
    font-size: 1.25rem;
    margin: 32px 0 16px;
    color: var(--primary);
}

.privacy-content h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
}

.privacy-content h4 {
    font-size: 1rem;
    margin: 20px 0 10px;
}

.privacy-content p {
    margin-bottom: 16px;
    color: var(--text);
}

.privacy-content ul {
    margin: 0 0 16px 24px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-content a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .privacy-page { padding: 130px 0 40px; }
    .privacy-content { padding: 24px 20px; }
    .privacy-content h1 { font-size: 1.5rem; }
}
