/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #050505;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #000000;
    --text-muted: #888888;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.relative-z { position: relative; z-index: 10; }

.mt-2 { margin-top: 5px; }
.mt-3 { margin-top: 15px; }
.mt-5 { margin-top: 40px; }
.mb-5 { margin-bottom: 40px; }

/* Utilities */
.bg-dark { background-color: var(--bg-dark); }
.text-light-section { color: var(--text-light); }

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--text-light);
    text-align: center;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    z-index: 1000;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-light); 
}

.btn-quote-header {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-quote-header:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.lang-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.lang-selector:hover { opacity: 0.7; }

.menu-icon { cursor: pointer; }

.dot-grid {
    display: grid;
    grid-template-columns: repeat(3, 4px);
    grid-gap: 4px;
}

.dot-grid span {
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
    transition: var(--transition);
}

.menu-icon:hover .dot-grid span { transform: scale(1.2); }

/* Hero Split Section */
.hero-split.hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-left {
    flex: 1.2;
    background-color: var(--text-dark); /* black background */
    color: var(--text-light);          /* white text */
    padding: 120px 6% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    /* We make sure the header text contrasts on this side */
}

/* Adjusting header text to white inside the split */
.header-right { color: var(--text-light); }
.logo img { filter: none; }

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.hero-content {
    max-width: 550px;
    margin-top: 30px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-nav {
    display: flex;
    gap: 20px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-link i {
    font-weight: 300;
    transition: var(--transition);
}

.arrow-link:hover {
    border-color: var(--text-light);
}

.arrow-link:hover i {
    transform: translateX(10px);
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    border-color: var(--text-light);
    background: rgba(255,255,255,0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Inclusions Section */
.inclusions-section {
    padding: 120px 0;
    background-color: var(--bg-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    padding: 30px 20px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-large {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Packages Section */
.packages-section {
    padding: 120px 0;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover { border-color: #dddddd; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

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

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

.card-body {
    padding: 30px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.cta-link:hover {
    gap: 25px;
    border-bottom-color: var(--text-light);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.cta-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
.card-body p {
    color: #999;
    font-weight: 300;
    margin-bottom: 30px;
    min-height: 80px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 3px;
}

.card-link:hover { border-color: var(--text-light); }
.card-link:hover i { transform: translateX(5px); }

/* Results Section */
.results-section, .clinic-section {
    padding: 100px 0;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.results-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 20px 0;
    width: 100%;
}

.results-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.result-slide {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: center;
    transition: var(--transition);
}

.result-slide img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: var(--bg-dark);
    color: white;
}

.slider-nav.prev { left: -30px; }
.slider-nav.next { right: -30px; }

@media (max-width: 1200px) {
    .slider-nav.prev { left: -10px; }
    .slider-nav.next { right: -10px; }
}

@media (max-width: 992px) {
    .result-slide { flex: 0 0 calc(50% - 15px); }
    .slider-nav { width: 50px; height: 50px; }
    .slider-nav.prev { left: 0; }
    .slider-nav.next { right: 0; }
    .results-section { padding: 60px 0; }
}

@media (max-width: 768px) {
    .result-slide { flex: 0 0 100%; }
    .results-slider { gap: 15px; }
}

/* Videos Section */
.videos-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

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

.video-box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.video-box iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    opacity: 0.9;
    transition: all 0.5s;
}

.video-box:hover img {
    opacity: 0.7;
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    z-index: 2;
}

.video-box:hover .play-btn {
    background: white;
    color: black;
}

.trustpilot-hero p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px; /* Reduced gap */
}

.tp-stars {
    color: #00b67a;
    font-size: 1.1rem; /* Slightly smaller to fit better */
    line-height: 1;    /* Remove extra line spacing */
    margin-bottom: 5px;
}

.tp-link {
    color: var(--text-light);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Trustpilot Section Styles */
.trustpilot-reviews-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

.tp-large-card {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.tp-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tp-overall-stars {
    color: #00b67a;
    font-size: 2rem;
    display: flex;
    gap: 5px;
}

.btn-tp {
    display: inline-block;
    background-color: #00b67a;
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-tp:hover {
    background-color: #009e6a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--text-light);
}
.btn-outline-dark:hover i { transform: translateX(5px); }

/* Form Section */
.appointment-section {
    padding: 120px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.decor-circle {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    border: 30px solid var(--bg-gray);
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
    z-index: 1;
}

.decor-circle::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 800px;
    height: 800px;
    border: 100px solid black;
    border-radius: 50%;
    z-index: 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    /* Remove rounding to stick to sharper B/W stark aesthetic */
    border-radius: 0; 
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.input-group {
    flex: 1;
    min-width: 250px;
}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--text-dark);
}

.captcha-group {
    width: 100%;
}

.fake-captcha {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px 25px;
    border: 1px solid #eee;
}

.submit-btn {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.full-width-mobile { flex: 1; min-width: 250px; }

/* Footer */
.footer {
    padding: 80px 0 40px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 30px;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn-rect {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    border-radius: 50px;
}

.float-btn-rect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.float-btn-rect i {
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-left { padding: 120px 40px 80px 40px; }
    .hero-content h1 { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .hero-split.hero { flex-direction: column; }
    .hero-left { 
        padding: 120px 30px 60px 30px; 
        min-height: auto; 
        order: 1; /* Text first */
    }
    .hero-right { 
        height: 500px; 
        order: 2; /* Image below */
    }
    .booking-form { flex-direction: column; align-items: stretch; }
    .input-group { min-width: 100%; }
    .decor-circle { display: none; }
    .footer-flex { flex-direction: column; text-align: center; gap: 30px; }
    .footer-contact.text-right { text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    /* Header fixes */
    .header { padding: 15px 0; }
    .header-container { padding: 0 15px; }
    .logo img { height: 32px; }
    .btn-quote-header { 
        padding: 8px 12px; 
        font-size: 0.65rem; 
        letter-spacing: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Hero Refinement */
    .hero-left { 
        padding: 100px 20px 50px 20px; 
        min-height: auto; 
    }
    .hero-right { height: 350px; }
    
    .hero-content h1 { 
        font-size: 2rem; 
        line-height: 1.2; 
        margin-bottom: 15px; 
    }
    .hero-content p { font-size: 0.9rem; margin-bottom: 25px; }
    
    .hero-cta-group { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 12px; 
        width: 100%; 
    }
    .cta-link { font-size: 0.95rem; }
    .cta-whatsapp { width: 100%; justify-content: center; }

    /* Trustpilot Hero */
    .trust-badge { border-left: none; padding-left: 0; margin-top: 30px; }
    .trustpilot-hero p { font-size: 0.8rem; }
    .tp-stars { font-size: 1rem; }
    .tp-link { font-size: 1rem; }

    /* Section Headings */
    .section-title, .section-title-dark, .section-title-light { font-size: 1.6rem; margin-bottom: 30px; }
    
    /* Packages/Cards */
    .card-grid { grid-template-columns: 1fr; gap: 20px; }
    
    /* Testimonials/Reviews */
    .tp-large-card { padding: 40px 20px; }
    .tp-overall-stars { font-size: 1.5rem; }
}

@media (max-width: 400px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn-quote-header { padding: 6px 10px; font-size: 0.6rem; }
    .logo img { height: 28px; }
    .hero-left { padding-top: 90px; }
}

/* Lite YouTube Embeds */
.lite-youtube {
    background-color: #000;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 315px;
    border-radius: 8px;
    overflow: hidden;
}

.lite-youtube .play-button {
    width: 68px;
    height: 48px;
    background-color: #212121;
    opacity: 0.8;
    border-radius: 12%;
    position: relative;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.lite-youtube:hover .play-button {
    background-color: #ff0000;
    opacity: 1;
}

.lite-youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}


