:root {
    --primary-color: #0b1a30;
    --primary-dark: #06101f;
    --secondary-color: #c59d5f;
    --accent-color: #3b82f6;
    --text-dark: #111827;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 80px 0;
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-12 {
    margin-top: 3rem;
}

.text-light {
    color: var(--text-light);
}

/* Typography */
.section-subtitle {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

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

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

.btn-secondary:hover {
    background-color: #b08d53;
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1001;
    transition: var(--transition);
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
    position: relative;
}

header.scrolled .nav-container {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
    padding: 5px 0;
}

.nav-links>li>a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu CSS */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: rgba(197, 157, 95, 0.05);
    /* very light gold tint */
    color: var(--secondary-color);
    padding-left: 25px;
    /* Slight indent hover effect for premium feel */
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    position: relative;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(11, 26, 48, 0.05);
}

.mobile-phone-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 1003;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(197, 157, 95, 0.3);
}

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

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Hero Entrance Animations */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-text .section-subtitle {
    animation: heroFadeUp 0.8s ease-out 0.2s both;
}

.hero-text h1 {
    animation: heroFadeUp 0.8s ease-out 0.4s both;
}

.hero-text p {
    animation: heroFadeUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    animation: heroFadeUp 0.8s ease-out 0.8s both;
}

.hero-image {
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.trust-badge {
    animation: heroFadeUp 0.6s ease-out 1s both;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 157, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 26, 48, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.15;
}

.hero-text h1 span {
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.trust-badge-text h4 {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.trust-badge-text p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: heroFadeIn 0.8s ease-out 1.2s both;
    z-index: 2;
}

.scroll-indicator i {
    animation: scrollBounce 2s ease-in-out infinite;
    font-size: 1rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
}

/* Stats/Trust Section */
.stats {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Before and After Gallery */
.gallery {
    padding-bottom: 0;
}

/* ========================================= */
/* BEFORE / AFTER COMPARISON SLIDER          */
/* ========================================= */

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    background: #e5e7eb;
}

/* Both images: before defines height, after overlays */
.comparison-before {
    display: block;
    width: 100%;
    line-height: 0;
}

.comparison-before img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.comparison-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--slider-width, 700px) !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Handle line */
.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Circular drag button */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    color: var(--primary-color);
    font-size: 0.9rem;
    z-index: 11;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-slider:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.comparison-slider.dragging .handle-circle {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 20px rgba(197, 157, 95, 0.4);
}

.comparison-slider.dragging .comparison-handle {
    width: 3px;
    background: var(--secondary-color);
}

/* Before / After labels */
.comparison-label {
    position: absolute;
    bottom: 16px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    pointer-events: none;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.label-before {
    left: 16px;
}

.label-after {
    right: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .handle-circle {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .comparison-label {
        font-size: 0.7rem;
        padding: 5px 12px;
        bottom: 12px;
    }

    .label-before {
        left: 12px;
    }

    .label-after {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .handle-circle {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .comparison-label {
        font-size: 0.65rem;
        padding: 4px 10px;
        bottom: 10px;
    }
}

/* Why Choose Us */
.why-us {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.why-us .section-subtitle,
.why-us .section-title {
    color: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 157, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-content h4 {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.why-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Process Section */
.process {
    background-color: var(--bg-light);
}

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

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--secondary-color);
    z-index: 1;
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Reviews */
.reviews-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: reviews-scroll 30s linear infinite;
    will-change: transform;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.reviewer-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.stars {
    color: #fbbc05;
    /* Google stars color */
    font-size: 0.875rem;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.review-card::before {
    content: '\201C';
    font-family: serif;
    font-size: 4rem;
    color: rgba(197, 157, 95, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

/* Blog Section */
.blog-section {
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

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

.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 0.8rem;
    color: #999;
}

.blog-meta span i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 14px;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Blog Full Page */
.blog-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-grid-full .blog-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-grid-full .blog-featured .blog-img {
    height: 100%;
    min-height: 300px;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.blog-grid-full .blog-featured .blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.blog-grid-full .blog-featured .blog-title {
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
}

.blog-grid-full .blog-featured .blog-excerpt {
    -webkit-line-clamp: 4;
}

@media (max-width: 768px) {
    .blog-grid-full {
        grid-template-columns: 1fr;
    }

    .blog-grid-full .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-grid-full .blog-featured .blog-img {
        height: 220px;
        min-height: auto;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--bg-white);
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--secondary-color);
}

.accordion-icon {
    color: var(--secondary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-body {
    padding: 20px;
}

/* Page Headers for Interior Pages */
.page-header {
    margin-top: 80px;
    /* Offset sticky header */
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px !important;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
    }
}

/* Lead Capture Form */
.booking-section {
    background: linear-gradient(rgba(11, 26, 48, 0.95), rgba(11, 26, 48, 0.95)), url('assets/images/clinic-interior.jpg') center/cover;
    color: var(--bg-white);
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
    transform: translateY(-50%);
}

.progress-bar-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--secondary-color);
    z-index: 2;
    transform: translateY(-50%);
    width: 0%;
    transition: var(--transition);
}

.progress-step {
    width: 30px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-light);
    position: relative;
    z-index: 3;
    transition: var(--transition);
}

.progress-step.active {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.progress-step.completed {
    background: var(--primary-color);
    color: var(--bg-white);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
}

.problem-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.problem-card {
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--secondary-color);
    background: rgba(197, 157, 95, 0.05);
}

.problem-card.selected {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--bg-white);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Footer */
footer {
    background: #061121;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

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

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 15px;
    display: block;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--bg-white);
}

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

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

.footer-map {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* VIP Gallery, Experts */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vip-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.expert-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: left;
    transition: var(--transition);
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ========================================= */
/* DESKTOP STYLES (>768px)                   */
/* ========================================= */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-phone-btn {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
    }
}

/* ========================================= */
/* RESPONSIVE - TABLET (1024px)              */
/* ========================================= */
@media (max-width: 1024px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        order: 2;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 400px;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
        width: 85%;
        justify-content: center;
    }

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

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

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

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

    .process-grid::before {
        display: none;
    }

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

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

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

    .international-patients .container > div {
        grid-template-columns: 1fr !important;
    }

    .intl-image {
        order: -1;
    }

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

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

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

/* ========================================= */
/* RESPONSIVE - MOBILE (768px)               */
/* ========================================= */
@media (max-width: 768px) {
    /* Debug: Add this to test if media query triggers */


    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-phone-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: 0; /* Clear previous margin */
    }

    .logo {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .nav-menu {
        display: flex !important;
        visibility: hidden;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 25px 30px;
        transition: all 0.3s ease;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1003;
        overflow-y: auto;
        transform: translateX(-100%);
    }

    .nav-menu.active {
        visibility: visible;
        transform: translateX(0);
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: left;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu .dropdown-toggle {
        padding: 14px 0 !important;
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-menu .btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-image img {
        height: 300px;
        border-radius: var(--border-radius-lg) !important;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Stats */
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Before/After Slider */
    .comparison-slider {
        max-width: 100%;
    }

    /* Experts */
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expert-card img {
        height: 280px !important;
    }

    /* VIP */
    .vip-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Reviews */
    .review-card {
        min-width: 280px;
        padding: 20px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .footer-col {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

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

    /* Floating Buttons */
    .floating-buttons {
        right: 12px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        padding: 0 12px;
    }

    .floating-btn:hover {
        width: 140px;
    }

    .floating-btn i {
        font-size: 1.1rem;
        min-width: 22px;
    }

    .floating-label {
        font-size: 0.75rem;
        margin-left: 8px;
    }

    /* International */
    .international-patients .container > div {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .intl-content {
        text-align: center;
    }

    .intl-benefits li {
        justify-content: center;
    }

    /* Booking Form */
    .booking-container {
        padding: 25px;
    }

    .problem-options {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* Page Headers */
    .page-header {
        padding: 100px 0 60px !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }
}

/* ========================================= */
/* RESPONSIVE - SMALL MOBILE (480px)         */
/* ========================================= */
@media (max-width: 480px) {

    .section-title {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.65rem;
    }

    .hero-image img {
        height: 250px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

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

    .review-card {
        min-width: 260px;
        padding: 16px;
    }

    .reviewer-img {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .floating-buttons {
        right: 8px;
        gap: 6px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
        padding: 0 9px;
        border-radius: 20px;
    }

    .floating-btn:hover {
        width: 110px;
        border-radius: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer-grid {
        gap: 25px;
    }

    .service-img {
        height: 180px;
    }

    .blog-img {
        height: 180px;
    }

    .expert-card img {
        height: 240px !important;
    }

    /* Before/After Slider */
    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .handle-circle {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .comparison-label {
        font-size: 0.65rem;
        padding: 4px 10px;
        bottom: 10px;
    }
}

/* ========================================= */
/* GRAFT CALCULATOR STYLES                   */
/* ========================================= */

.calculator-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
}

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

.svg-head-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.zone-group {
    cursor: pointer;
}

.zone-group.image-overlay .head-zone {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-dasharray: 6, 4;
    transition: all 0.3s ease;
}

.zone-group.image-overlay:hover .head-zone {
    fill: rgba(255, 255, 255, 0.3);
}

.zone-group.image-overlay.active .head-zone {
    fill: rgba(220, 53, 69, 0.6);
    /* Deep red reference color */
    stroke: rgba(220, 53, 69, 0.9);
}

.zone-group.image-overlay .zone-number {
    fill: #333333;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-anchor: middle;
    pointer-events: none;
    text-shadow: 0 0px 8px rgba(255, 255, 255, 0.9);
}

.zone-group.image-overlay.active .zone-number {
    fill: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.calc-results {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.calc-stat {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.calc-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Floating Side Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 52px;
    height: 52px;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
    border-radius: 26px;
    padding: 0 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
}

.floating-btn:hover {
    width: 170px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(0, 0, 0, 0);
    transform: translateX(-4px);
}

.floating-btn i {
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
    z-index: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.floating-label {
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease 0.05s;
    letter-spacing: 0.3px;
}

.floating-btn:hover .floating-label {
    opacity: 1;
    transform: translateX(0);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #2EE76F 0%, #149B8A 100%);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp {
    animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp:hover {
    animation: none;
}

.floating-calculator {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a07e3f 100%);
}

.floating-calculator::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.floating-calculator:hover {
    background: linear-gradient(135deg, #d4aa60 0%, #b59045 100%);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}