/* ================================
   CSS VARIABLES & RESET
   ================================ */

:root {
    /* Brand Colors - From Clinic 103 Menu */
    --primary-green: #1a4d2e;
    --secondary-green: #4fb848;
    --accent-coral: #ff6b6b;
    --accent-pink: #ff8787;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f1f3f5;
    --gray: #adb5bd;
    --dark-gray: #495057;
    --darker-gray: #212529;
    --black: #000000;

    /* Semantic Colors */
    --success: #51cf66;
    --warning: #ffd43b;
    --error: #ff6b6b;
    --info: #339af0;

    /* Typography */
    --font-primary: 'Helvetica Neue', 'Arial', sans-serif;
    --font-heading: 'Helvetica Neue', 'Arial', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font-primary);
    color: var(--darker-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

h1 { font-size: 3.5rem; letter-spacing: 6px; }
h2 { font-size: 2.5rem; letter-spacing: 5px; }
h3 { font-size: 1.75rem; letter-spacing: 3px; }
h4 { font-size: 1.25rem; letter-spacing: 2px; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ================================
   UTILITY CLASSES
   ================================ */

.container {
    max-width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-coral);
}

/* ================================
   HEADER (Green Gradient)
   ================================ */

.clinic-header {
    background: linear-gradient(135deg, #1a4d2e 0%, #4fb848 100%);
    color: white;
    padding: 60px 40px;
    margin-bottom: 0;
    text-align: center;
    border-bottom: 1px solid #000;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.clinic-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #000;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.header-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.clinic-header h1 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.clinic-header p {
    font-size: 15px;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 2px;
    color: #cccccc;
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 24px;
    border-radius: 0;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    border-color: var(--secondary-green);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 4px 12px rgba(79, 184, 72, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
    letter-spacing: 2.5px;
}

/* ================================
   NAVIGATION (Black Bar)
   ================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid #1a4d2e;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    max-width: 100vw;
    width: 100%;
}

.navbar::-webkit-scrollbar {
    display: none;
}

.nav-inner {
    display: flex;
    padding: 0 20px;
    gap: 8px;
    min-width: max-content;
    justify-content: center;
}

.nav-item {
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
}

.nav-item:hover {
    color: #4fb848;
    border-bottom-color: #4fb848;
}

.nav-item.active {
    color: #ffffff;
    border-bottom-color: #4fb848;
}

.nav-phone {
    color: #aaa;
}

.nav-phone:hover {
    color: #fff;
}

.nav-book {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white !important;
    border: 1px solid var(--secondary-green);
    padding: 10px 20px;
}

.nav-book:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    border-bottom-color: var(--secondary-green);
    transform: translateY(-2px);
}

/* ================================
   WHATSAPP FLOATING BUTTON
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-base);
    border: 1px solid var(--secondary-green);
    will-change: transform;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 184, 72, 0.4);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

/* ================================
   HERO SECTION (Black Background)
   ================================ */

.hero {
    background: #000000;
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-bottom: 1px solid #1a4d2e;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #4fb848;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #cccccc;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 13px;
    color: #aaa;
}

.hero-feature i {
    color: var(--secondary-green);
    font-size: 1.125rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #888;
    margin-top: 2rem;
}

.hero-trust i {
    color: #ffd43b;
}

/* ================================
   TRUST BAR
   ================================ */

.trust-bar {
    background: #0a0a0a;
    padding: 0;
    border-bottom: 1px solid #1a4d2e;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 40px 20px;
    border-right: 1px solid #222;
    transition: all 0.3s ease;
    text-align: center;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: rgba(79, 184, 72, 0.05);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    border-color: var(--secondary-green);
    background: rgba(79, 184, 72, 0.1);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.trust-text span {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

/* ================================
   SECTION HEADERS
   ================================ */

section {
    padding: 5rem 0;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--secondary-green);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
    background: var(--off-white);
}

.service-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    transition: var(--transition-base);
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-card.reverse .service-image {
    order: 2;
}

.service-card.reverse .service-content {
    order: 1;
}

.service-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-video,
.service-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-video,
.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.video-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--secondary-green);
    transform: scale(1.05);
}

.video-mute-btn i {
    font-size: 1.125rem;
    pointer-events: none;
}

.video-mute-btn.unmuted {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-color: var(--secondary-green);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.1), rgba(79, 184, 72, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.image-placeholder.large {
    min-height: 350px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.image-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.6;
    text-align: center;
}

.image-placeholder small {
    font-size: 0.875rem;
    opacity: 0.5;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent-coral);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 20;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-badge.popular {
    background: var(--warning);
    color: var(--darker-gray);
}

.service-badge.wellness {
    background: var(--success);
}

.service-content {
    padding: 3rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--darker-gray);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

#tattoos .service-benefits {
    grid-template-columns: repeat(2, 1fr);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.benefit i {
    color: var(--success);
    font-size: 1rem;
}

.service-pricing {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item.featured {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary-green);
}

.price-label,
.price {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-green);
}

.pricing-item.featured .price-label {
    color: var(--white);
}

.price-desc {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.pricing-item.featured .price-desc {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--info);
    margin-top: 0.25rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ================================
   WHY CHOOSE US
   ================================ */

.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.why-grid .swiper-wrapper {
    display: contents;
}

.why-grid .swiper-pagination {
    display: none;
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid #e8e8e8;
}

.why-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
    transform: translateY(-4px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--darker-gray);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ================================
   GALLERY
   ================================ */

.gallery {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-grid .swiper-wrapper {
    display: contents;
}

.gallery-grid .swiper-pagination {
    display: none;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid #e8e8e8;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-grid .swiper-wrapper {
    display: contents;
}

.testimonial-grid .swiper-pagination {
    display: none;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid #e8e8e8;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--darker-gray);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ================================
   FAQ SECTION
   ================================ */

.faq {
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid #e8e8e8;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-question h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--darker-gray);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
}

.faq-question i {
    color: var(--primary-green);
    transition: var(--transition-base);
    font-size: 1.25rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta-buttons .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cta-guarantee i {
    font-size: 1.25rem;
}

/* ================================
   LOCATION SECTION
   ================================ */

.location {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
}

.location-detail i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 1.125rem;
}

.location-detail strong {
    display: block;
    font-size: 1.125rem;
    color: var(--darker-gray);
    margin-bottom: 0.25rem;
}

.location-detail p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.location-detail a {
    color: var(--primary-green);
}

.location-detail a:hover {
    text-decoration: underline;
}

.location-map {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
    border: 1px solid #e8e8e8;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.1), rgba(79, 184, 72, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    font-size: 0.875rem;
    opacity: 0.5;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--darker-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column p {
    color: var(--gray);
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--gray);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-column ul li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.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;
    font-size: 1.125rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-card.reverse .service-image {
        order: 1;
    }

    .service-card.reverse .service-content {
        order: 2;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 400px;
    }

    .service-video,
    .service-img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }

    section, .container, .hero, .clinic-header, .navbar, .trust-bar {
        max-width: 100vw;
        overflow-x: hidden;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    /* Mobile Sliders */
    .why-grid,
    .gallery-grid,
    .testimonial-grid {
        display: block;
    }

    .why-grid .swiper-wrapper,
    .gallery-grid .swiper-wrapper,
    .testimonial-grid .swiper-wrapper {
        display: flex;
    }

    .why-grid .swiper-slide,
    .gallery-grid .swiper-slide,
    .testimonial-grid .swiper-slide {
        height: auto;
        flex-shrink: 0;
    }

    .why-grid .swiper-pagination,
    .gallery-grid .swiper-pagination,
    .testimonial-grid .swiper-pagination {
        display: block;
        position: relative;
        margin-top: 30px;
    }

    .swiper-pagination-bullet {
        background: var(--primary-green);
        opacity: 0.3;
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--secondary-green);
    }

    .clinic-header {
        padding: 40px 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .header-logo {
        max-width: 200px;
        margin-bottom: 15px;
    }

    .clinic-header h1 {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .clinic-header p {
        font-size: 13px;
    }

    .header-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-inner {
        justify-content: flex-start;
        padding: 0 15px;
    }

    .nav-item {
        font-size: 10px;
        padding: 12px 15px;
    }

    .hero {
        padding: 50px 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .trust-bar {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .trust-item {
        padding: 25px 15px;
        border-right: none;
        border-bottom: 1px solid #222;
    }

    .trust-item:nth-child(odd) {
        border-right: 1px solid #222;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: none;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .trust-text strong {
        font-size: 0.875rem;
        letter-spacing: 1px;
    }

    .trust-text span {
        font-size: 0.6875rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta a {
        width: 100%;
        justify-content: center;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 2rem;
    }

    .service-image {
        min-height: 280px;
        max-height: 320px;
    }

    .service-video,
    .service-img {
        min-height: 280px;
        max-height: 320px;
        object-fit: cover;
        object-position: center 40%;
    }

    .video-mute-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .video-mute-btn i {
        font-size: 1rem;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Location Section - Mobile Improvements */
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .location-details {
        gap: 1rem;
    }

    .location-detail {
        flex-direction: row;
        padding: 15px;
        background: var(--off-white);
        border: 1px solid #e8e8e8;
    }

    .location-detail i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .location-detail strong {
        font-size: 0.9375rem;
    }

    .location-detail p {
        font-size: 0.875rem;
    }

    .location-map {
        min-height: 300px;
        order: -1;
    }

    /* Footer - Mobile Improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        height: 50px;
        margin: 0 auto 1rem;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul li {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* FAQ - Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.875rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }

    .cta-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 0.75rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        position: fixed;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
    }

    section, .container, .hero, .clinic-header, .navbar, .trust-bar {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .whatsapp-float {
        right: 0.5rem;
        bottom: 0.75rem;
        width: 45px;
        height: 45px;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .trust-item {
        padding: 20px 10px;
    }

    .trust-icon {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
    }

    .trust-text strong {
        font-size: 0.75rem;
    }

    .trust-text span {
        font-size: 0.625rem;
    }
}

/* ================================
   VIDEO VIEWER / REELS MODAL
   ================================ */

.video-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background: #000;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.video-viewer.active {
    display: flex;
    opacity: 1;
}

.video-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.video-viewer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-viewer-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-viewer-video-container {
    flex: 1;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-viewer-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.video-viewer-info {
    flex: 0 0 350px;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.video-viewer-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.video-viewer-title {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: white;
}

.video-viewer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.video-viewer-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-viewer-cta .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Navigation arrows */
.video-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.video-viewer-nav:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-color: var(--secondary-green);
    transform: translateY(-50%) scale(1.1);
}

.video-viewer-prev {
    left: 20px;
}

.video-viewer-next {
    right: 20px;
}

/* Mobile Reels Style */
@media (max-width: 768px) {
    .video-viewer-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-width: 100vw;
        max-height: 100vh;
        overflow: hidden;
    }

    .video-viewer-video-container {
        flex: 1;
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .video-viewer-video {
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        object-fit: contain;
        object-position: center center;
    }

    .video-viewer-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        flex: none;
        max-height: 40vh;
        max-width: 100vw;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 70%, transparent 100%);
        border: none;
        padding: 2rem 1.5rem 1.5rem;
        backdrop-filter: blur(20px);
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .video-viewer-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .video-viewer-title {
        font-size: 1.25rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }

    .video-viewer-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .video-viewer-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }

    /* Hide desktop navigation arrows on mobile */
    .video-viewer-nav {
        display: none;
    }

    /* Touch indicator for swipe */
    .video-viewer-content::after {
        content: 'Swipe up for next';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        pointer-events: none;
        opacity: 0;
        animation: swipeHint 4s ease-in-out 0.5s;
        text-align: center;
        padding: 1rem 2rem;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .video-viewer-content::before {
        content: '↑';
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: rgba(255, 255, 255, 0.7);
        font-size: 3rem;
        pointer-events: none;
        opacity: 0;
        animation: swipeArrow 4s ease-in-out 0.5s;
    }

    @keyframes swipeHint {
        0%, 100% { opacity: 0; transform: translate(-50%, -50%); }
        10%, 90% { opacity: 1; }
        50% { opacity: 1; transform: translate(-50%, -60%); }
    }

    @keyframes swipeArrow {
        0%, 100% { opacity: 0; transform: translate(-50%, -50%); }
        10%, 90% { opacity: 1; }
        50% { opacity: 1; transform: translate(-50%, -80%); }
    }
}

/* Cursor pointer for clickable videos and images */
.service-video,
.service-img {
    cursor: pointer;
}

.service-video:hover,
.service-img:hover {
    opacity: 0.95;
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .navbar,
    .whatsapp-float,
    .hero-cta,
    .service-cta,
    .cta-section {
        display: none;
    }
}
