@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   1. DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #0B3D91;       /* Luxury Deep Royal Blue */
    --color-primary-dark: #072A66;
    --color-primary-light: #1A52B8;
    --color-secondary: #0E7490;     /* Medical Teal-Cyan */
    --color-secondary-dark: #0B5B71;
    --color-accent: #D4AF37;        /* Luxury Gold Accent */
    --color-accent-dark: #B59129;
    --color-accent-light: #E9C962;
    --color-bg-white: #FFFFFF;
    --color-bg-light: #F8FAFC;      /* Soft cold white */
    --color-bg-soft: #F1F5F9;       /* Light grey for alternates */
    --color-text-dark: #0F172A;     /* Off-black slate */
    --color-text-muted: #475569;    /* Medium slate text */
    --color-text-light: #94A3B8;   /* Light slate text */
    --color-border: #E2E8F0;
    --color-success: #10B981;
    --color-error: #EF4444;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Layout & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(11, 61, 145, 0.05), 0 4px 6px -2px rgba(11, 61, 145, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(11, 61, 145, 0.08), 0 10px 10px -5px rgba(11, 61, 145, 0.04);
    --shadow-gold: 0 10px 20px -3px rgba(212, 175, 55, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Header Heights */
    --top-bar-height: 40px;
    --header-height: 70px;
}

/* ==========================================================================
   2. BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;

    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

p {
    font-family: var(--font-body);
    color: var(--color-text-muted);
}

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

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

/* ==========================================================================
   3. REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 60px 0;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 12px auto 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark) !important;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -5px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-bg-white) !important;
    border: 1px solid var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white) !important;
}

.btn-whatsapp{

    background:#2db564;
    color:#fff!important;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    padding:14px 26px;

    border-radius:30px;

    font-weight:700;
    text-decoration:none;

    transition:.3s ease;

}


.btn-whatsapp:hover{

    background:#24ad5b;

    transform:translateY(-2px);

}


.btn-whatsapp svg{

    flex-shrink:0;

}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    background-color: var(--color-bg-white);
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-error-msg {
    color: var(--color-error);
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

/* ==========================================================================
   4. SECTION 1: TOP CONVERSION BAR
   ========================================================================== */
.top-marquee{
    background:#072A66;
    color:#fff;
    height: 30px;
    overflow:hidden;
    border-bottom:2px solid #D4AF37;
}

.top-marquee-track{
    display:flex;
    width:max-content;
    white-space:nowrap;
    animation:scrollLoop 25s linear infinite;
}

.top-marquee-track span{
    padding-right:120px;
    font-size:14px;
    font-weight:600;
}

@keyframes scrollLoop{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/* -----------navbar------- */
/* ==================================
   HEADER
================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}


.header-flex {

    min-height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

}



/* ==================================
   LOGO
================================== */


.logo {

    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;

}


.logo img {

    width:45px;
    height:45px;
    object-fit:contain;

}



.logo-text {

    display:flex;
    flex-direction:column;

}



.logo-text h1 {

    margin:0;
    font-size:24px;
    line-height:1;

    font-weight:800;
    color:#0B3D91;

}



.logo-text span {

    margin-top:4px;
    font-size:9px;
    line-height:1.3;
    color:#64748b;
    white-space:nowrap;

}



.logo.footer-widget-logo{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo image */
.footer-logo-img{
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Text block */
.logo-text-group{
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title{
    font-size: 1rem;
    font-weight: 700;
    color: #f4f7ff;
}

.logo-subtitle{
    font-size: 0.75rem;
    color: #b7bdc5;
}

.logo-subsubtitle{
    font-size: 0.7rem;
    color: #b7bdc5;
}
@media (max-width: 600px){

    .logo.footer-widget-logo{
        gap: 10px;
    }

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

    .logo-title{
        font-size: 0.9rem;
    }

    .logo-subtitle{
        font-size: 0.7rem;
    }

    .logo-subsubtitle{
        font-size: 0.65rem;
    }
}
@media (max-width: 480px){
    .logo-subtitle,
    .logo-subsubtitle{
        display: none;
    }
}
/* ==================================
   DESKTOP NAV
================================== */


.navbar {

    margin-left:auto;
    margin-right:35px;

}


.nav-links {

    display:flex;
    align-items:center;
    gap:30px;

    list-style:none;
    padding:0;
    margin:0;

}


.nav-links a {

    text-decoration:none;
    color:#222;

    font-size:14px;
    font-weight:600;

    position:relative;

}


.nav-links a:hover {

    color:#0d6efd;

}



.nav-links a:after {

    content:"";
    position:absolute;

    bottom:-6px;
    left:0;

    width:0;
    height:2px;

    background:#0d6efd;
    transition:.3s;

}



.nav-links a:hover:after {

    width:100%;

}





/* ==================================
   RIGHT SIDE
================================== */


.header-right {

    display:flex;
    align-items:center;
    gap:15px;

}


.phone-widget {

    text-align:right;

}



.phone-widget-label {

    font-size:11px;
    color:#777;
    text-transform:uppercase;

}



.phone-widget-number {

    font-size:14px;
    font-weight:700;
    color:#0B3D91;
    text-decoration:none;

}



/* Button */


.btn-primary {

    background:#2f6de0;
    color:white!important;

    padding:13px 25px;

    border-radius:30px;

    text-decoration:none;
    font-weight:700;

    font-size:14px;

    box-shadow:
    0 10px 20px rgba(47,109,224,.25);

}





/* ==================================
   HAMBURGER
================================== */


.menu-toggle {

    display:none;

    width:40px;
    height:40px;

    border:none;
    background:none;

    cursor:pointer;

}



.menu-toggle span {

    display:block;

    width:24px;
    height:3px;

    background:#222;

    margin:5px auto;

    border-radius:5px;

    transition:.3s;

}




/* ==================================
   MOBILE MENU
================================== */


.mobile-menu {

    max-height:0;
    overflow:hidden;

    background:white;

    transition:.3s;

}



.mobile-menu.active {

    max-height:500px;

}



.mobile-menu a {

    display:block;

    padding:15px 25px;

    border-bottom:1px solid #eee;

    text-decoration:none;

    color:#222;

}



.mobile-btn {

    background:#0d6efd;

    color:#fff!important;

    margin:15px;

    border-radius:8px;

    text-align:center;

}





/* ==================================
   MOBILE RESPONSIVE
================================== */


@media(max-width:992px){


.header-flex {

    min-height:65px;

    padding:0 15px;

}



/* Logo */

.logo img {

    width:36px;
    height:36px;

}


.logo-text h1 {

    font-size:18px;

}


.logo-text span {

    display:none;

}



/* Hide desktop */

.navbar {

    display:none;

}


.phone-widget {

    display:none;

}





/* Right side */

.header-right {

    display:flex!important;

    margin-left:auto;

    gap:8px;

}





.btn-primary {

    width:75px;

    height:38px;

    padding:5px;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:10px;

    border-radius:8px;

}





/* hamburger */


.menu-toggle {

    display:block;

}


}





@media(max-width:420px){


.logo img {

    width:32px;
    height:32px;

}



.logo-text h1 {

    font-size:16px;

}



.btn-primary {

    width:65px;
    font-size:9px;

}



.menu-toggle {

    width:35px;

}


}
/* ==========================================================================
   6. SECTION 2: HERO SECTION
   ========================================================================== */
.hero {
    background: radial-gradient(circle at 10% 20%, rgba(240, 244, 248, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}
@media (min-width: 992px) {
    .hero {
        padding: 80px 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(11, 61, 145, 0.08);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-primary);
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.hero-badges-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 35px;
}
@media (min-width: 480px) {
    .hero-badges-list {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.hero-badge-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Hero Capture Card */
.hero-form-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(11, 61, 145, 0.05);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

.hero-form-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.hero-form-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   7. SECTION 3: TRUST SECTION (STATS)
   ========================================================================== */
.trust-stats {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 50px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}
@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   8. SECTION 4: FOUNDERS SECTION
   ========================================================================== */
.founders {
    background-color: var(--color-bg-light);
}

/* GRID */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .founders-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* CARD */
.founder-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);

    /* IMPORTANT: smooth animation */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

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

/* IMAGE WRAPPER */
.founder-img-container {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f1f5f9;
}

/* IMAGE */
.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;

    /* smooth zoom */
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
    backface-visibility: hidden;
}

/* ONLY ONE HOVER CONTROL (IMPORTANT) */
.founder-card:hover .founder-img {
    transform: scale(1.06);
}

/* DETAILS */
.founder-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 1.6rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--color-accent-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}
/* ==========================================================================
   9. SECTION 5: SCAR TYPES WE TREAT
   ========================================================================== */
.scar-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 576px) {
    .scar-types-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .scar-types-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (min-width: 1200px) {
    .scar-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.scar-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.scar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.scar-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.scar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scar-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.scar-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.scar-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.scar-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 16px;
    margin-top: auto;
}

/* ==========================================================================
   10. SECTION 6: TREATMENTS OFFERED
   ========================================================================== */
.treatments {
    background-color: var(--color-bg-soft);
}

.treatment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 576px) {
    .treatment-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .treatment-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (min-width: 1200px) {
    .treatment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.treatment-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}
.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.treatment-header {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #e2e8f0;
}

.treatment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-icon-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 3px solid var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.treatment-body {
    padding: 30px 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.treatment-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.treatment-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   11. SECTION 7: BEFORE & AFTER RESULTS
   ========================================================================== */
.before-after-container{
    max-width:900px;
    margin:0 auto;
}

.ba-slider-wrapper{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
}

.ba-slider-item{
    position:relative;
    width:100%;
    height:100%;
}

.ba-after,
.ba-before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.ba-after{
    z-index:1;
}

.ba-before{
    width:50%;
    overflow:hidden;
    z-index:2;
    border-right:3px solid var(--color-accent);
}

.ba-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    user-select:none;
    pointer-events:none;
}

.ba-handle{
    position:absolute;
    top:0;
    left:50%;
    width:3px;
    height:100%;
    background:var(--color-accent);
    transform:translateX(-50%);
    z-index:10;
    cursor:ew-resize;
}

.ba-handle-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--color-accent);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.ba-label{
    position:absolute;
    bottom:20px;
    padding:8px 14px;
    border-radius:30px;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    z-index:20;
}

.ba-label-before{
    left:20px;
}

.ba-label-after{
    right:20px;
}

@media(max-width:768px){

    .ba-slider-wrapper{
        height:380px;
    }

    .ba-handle-button{
        width:40px;
        height:40px;
    }

    .ba-label{
        font-size:11px;
        padding:6px 10px;
    }
}

/* ==========================================================================
   12. SECTION 8: WHY CHOOSE ICAL INSTITUTE
   ========================================================================== */
.why-choose {
    background-color: var(--color-bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.benefit-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}
.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.benefit-icon-container {
    width: 60px;
    height: 60px;
    background-color: rgba(11, 61, 145, 0.06);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   13. SECTION 9: TREATMENT PROCESS
   ========================================================================== */
.process-timeline {
    max-width: 900px;
    margin: 40px auto 0 auto;
    position: relative;
    padding-left: 30px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

@media (min-width: 768px) {
    .process-timeline {
        padding-left: 0;
    }
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}
.process-step:last-child {
    margin-bottom: 0;
}

.process-node {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-bg-white);
    border: 4px solid var(--color-primary);
    border-radius: var(--radius-full);
    z-index: 2;
}
@media (min-width: 768px) {
    .process-node {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-content {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--color-border);
    width: 100%;
}
@media (min-width: 768px) {
    .process-content {
        width: 45%;
    }
    .process-step:nth-child(odd) .process-content {
        margin-left: auto;
    }
    .process-step:nth-child(even) .process-content {
        margin-right: auto;
        text-align: right;
    }
}

.process-step-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.process-step-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

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

/* ==========================================================================
   14. SECTION 10: TESTIMONIALS (AUTO SLIDER)
   ========================================================================== */
.testimonials {
    background-color: var(--color-bg-soft);
    position: relative;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-smooth);
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 20px;
}

.testimonial-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--color-border);
    position: relative;
}

.google-review-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.google-review-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.stars {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

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

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.user-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
}

.user-tag {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(11, 61, 145, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.dot-btn.active {
    background-color: var(--color-primary);
    width: 24px;
}

/* ==========================================================================
   15. SECTION 11: Treatment Process
   ========================================================================== */
.workshop-highlights{
    background:#f8fafc;
}

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

.master-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    border:1px solid #e5e7eb;
}

.master-card:hover{
    transform:translateY(-8px);
}

.master-icon{
    font-size:40px;
    margin-bottom:15px;
}

.master-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.master-card p{
    color:#64748b;
    line-height:1.7;
}

@media(max-width:991px){

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

}

@media(max-width:767px){

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

}
/* ==========================================================================
   16. SECTION 12: FAQ (ACCORDION)
   ========================================================================== */
.faq {
    background-color: var(--color-bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-fast);
}
.faq-item.active {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-bg-soft);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-body {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.faq-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:center;
    margin-top:40px;
}

.faq-image-side img{
    width:100%;
    max-width:420px;
    display:block;
    margin:auto;
}

.faq-content-side{
    width:100%;
}

@media(max-width:991px){

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

    .faq-image-side{
        text-align:center;
    }

    .faq-image-side img{
        max-width:300px;
    }

}
/* ==========================================================================
   17. SECTION 13: LIMITED OFFER & COUNTDOWN
   ========================================================================== */
.limited-offer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg-white);
    text-align: center;
    position: relative;
    padding: 70px 0;
}

.limited-offer-title {
    color: var(--color-accent);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.limited-offer-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* Countdown Timer */
.timer-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.timer-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timer-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.1;
}

.timer-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   18. SECTION 14: FINAL LEAD CAPTURE
   ========================================================================== */
.final-capture {
    background-color: var(--color-bg-white);
}

.final-capture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
@media (min-width: 992px) {
    .final-capture-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.final-capture-info {
    text-align: left;
}

.final-capture-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-capture-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.final-form-box {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   19. SECTION 15: FOOTER
   ========================================================================== */
.footer-section {
    background-color: #0b172a; /* Dark background */
    color: var(--color-bg-white);
    padding: 70px 0 30px 0;
    border-top: 3px solid var(--color-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
}

.footer-widget-logo  {
    color: var(--color-bg-white);
}

.footer-widget-logo  {
    color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 25px 0;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-size: 0.95rem;
}
.footer-contact-item svg {
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-widget-title {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links-list {
    list-style: none;
}

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}
.footer-links-list a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.map-placeholder-box {
    background-color: #1e293b;
    border-radius: var(--radius-sm);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.map-placeholder-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* ==========================================================================
   20. POPUP MODALS & EXIT INTENT
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 500px;
    margin: 20px;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
    border: 1px solid rgba(11, 61, 145, 0.1);
}
.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--color-accent), var(--color-secondary));
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-bg-soft);
    color: var(--color-text-muted);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    z-index: 2;
}
.modal-close-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

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

.modal-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Toast Notification (Form Submit Feedback) */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(150%);
    transition: transform var(--transition-smooth);
    border-left: 4px solid var(--color-accent);
}
.toast-notification.active {
    transform: translateY(0);
}

.toast-notification.error {
    border-left-color: var(--color-error);
}

/* ==========================================================================
   21. MOBILE CONVERSION FEATURES
   ========================================================================== */
/* Floating WhatsApp */

.floating-whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 8px 25px rgba(37,211,102,.45);

    z-index:9999;

    transition:.3s ease;

}


.floating-whatsapp:hover{

    transform:scale(1.1);

    box-shadow:
    0 12px 30px rgba(37,211,102,.55);

}


.floating-whatsapp svg{

    display:block;

}



/* Mobile */

@media(max-width:480px){

.floating-whatsapp{

    width:55px;
    height:55px;

    right:18px;
    bottom:18px;

}


.floating-whatsapp svg{

    width:30px;
    height:30px;

}

}

/* Sticky Bottom Mobile Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 90;
    border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
    .sticky-bottom-bar {
        display: none; /* Hide on Desktop */
    }
}

.sticky-bottom-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    gap: 4px;
    color: var(--color-text-dark);
}

.sticky-bottom-btn svg {
    font-size: 1.15rem;
}

.sticky-bottom-btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

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

/* Adjust margins on body to not cover content by sticky bottom on mobile */
body {
    padding-bottom: 60px; /* space for sticky bar */
}
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* Smooth Card Hover Easing (Cubic-Bezier Easing) */
.founder-card, .scar-card, .treatment-card, .benefit-card, .btn, .faq-trigger {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* work shop css */
.workshop-includes {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

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

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: #0d6efd15;
  color: #0d6efd;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.include-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #eef2f7;
}

.include-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.include-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.include-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111;
}

.include-card p {
  color: #666;
  line-height: 1.6;
}

.highlight {
  background: linear-gradient(135deg, #0d6efd, #004fc5);
  color: white;
}

.highlight h3,
.highlight p {
  color: white;
}

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

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

  .workshop-includes {
    padding: 70px 15px;
  }
}



/* hero slider css start */
.includes-slider-section{
    background:#fff;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
    overflow:hidden;
    padding:14px 0;
}

.includes-slider{
    display:flex;
    width:max-content;
    animation:scrollBenefits 28s linear infinite;
}

.slide-item{
    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:18px;

    padding:12px 22px;

    background:#f8fafc;
    border:1px solid #dbeafe;

    border-radius:50px;

    font-size:.95rem;
    font-weight:600;
    color:#1d4ed8;

    white-space:nowrap;

    box-shadow:0 3px 10px rgba(0,0,0,.04);
}

.includes-slider:hover{
    animation-play-state:paused;
}

@keyframes scrollBenefits{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}



/* Workshop Experience */

.experience-section{
    padding:80px 20px;
    background:#f8fafc;
    overflow:hidden;
}

/* title */
.section-head{
    text-align:center;
    margin-bottom:30px;
}

.section-head h2{
    font-size:2rem;
    color:#0f172a;
}

/* MARQUEE WRAPPER */
.marquee{
    overflow:hidden;
    position:relative;
}

/* TRACK ANIMATION */
.track{
    display:flex;
    gap:20px;
    width:max-content;

    animation:scroll 25s linear infinite;
}

/* SLIDES */
.slide{
    flex:0 0 auto;
    width:280px;

    border-radius:16px;
    overflow:hidden;

    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.slide img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.caption{
    padding:12px;
    font-weight:600;
    color:#0f172a;
}

/* 🔥 MAIN ANIMATION */
@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* optional pause on hover */
.track:hover{
    animation-play-state:paused;
}