:root{
  --teal:#12A1A8;
  --teal-dark:#12A1A8;
  --teal-soft:#eafafa;
  --gold:#d9a44d;
  --text:#1b2d34;
  --muted:#65767d;
  --white:#ffffff;
  --shadow:0 14px 35px rgba(7,79,86,.14);
  --radius:18px;
}
*{
    box-sizing:border-box;
    margin:0;
    padding:0
}
body{
    font-family:Inter,Arial,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6
}
html{
    scroll-behavior:smooth;
}

/* ===== Consultation Popup ===== */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.consultation-form {
    width: 500px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #12A1A8;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.close-form {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.consultation-form h2 {
    text-align: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #fff;
    border-radius: 4px;
}

.form-group select {
    cursor: pointer;
}

.consultation-form button {
    width: 100%;
    height: 48px;
    border: 1px solid #0b736b;
    background: transparent;
    color: #d4a04c;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    margin-top: 0px;
    border-radius: 4px;
}

.consultation-form button:hover {
    background: #d4a04c;
    color: #022f2d;
}

.consultation-form::-webkit-scrollbar {
    width: 6px;
}
.consultation-form::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

@media(max-width:768px){
    .consultation-form {
        width: 100%;
        padding: 20px;
    }
    .consultation-form h2 {
        font-size: 22px;
    }
}

/* Form validation */
.form-group .error-msg {
    display: none;
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

.form-group.invalid-field input,
.form-group.invalid-field select {
    border: 1px solid #ff6b6b !important;
}

.form-group.invalid-field .error-msg {
    display: block;
}
/* ===== End Consultation Popup ===== */

a{
    text-decoration:none;
    color:inherit
}
.container{
    width:min(1180px,92%);
    margin:auto
}
.topbar{
    background:linear-gradient(90deg,#12A1A8);
    color:#fff;
    font-size:12px;
    padding:8px 0
}
.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px
}

/* ===== HEADER ===== */
header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 18px rgba(0,0,0,.06)
}
.nav{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    position:relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    max-height: 60px;
}

/* ===== DESKTOP NAV ===== */
.menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-links a {
    color: #333;
    text-decoration: none;
    padding: 8px 13px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.menu-links a:hover {
    color: var(--teal);
}

/* Mobile-only book link — hide on desktop */
.mobile-menu-book {
    display: none !important;
}

/* Desktop Book Consultation button — always visible on desktop */
.desktop-book-btn {
    display: inline-flex;
    flex-shrink: 0;
}

/* Hamburger — hidden on desktop */
.hamburger-btn {
    display: none !important;
}

/* ===== BUTTONS ===== */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:5px;
    padding:13px 28px;
    font-weight:800;
    font-size:13px;
    transition:.25s;
    border:1px solid transparent;
    cursor:pointer;
}
.btn-first {
    background: #12A1A8;
    color: #FFFFFF;
}
.btn-second {
    border-color:var(--teal);
    border:1px solid transparent;
    background: #FFFFFF;
    color: #12A1A8;
}
.btn-first:hover{
    background:#707373;
    transform: scale(1.05)
}
.btn-second:hover{
    background:#707373;
    color:#FFFFFF;
    transform: scale(1.05)
}
.btn-outline{
    border-color:var(--teal);
    color:#12A1A8;
    background:#fff
}
.btn-outline:hover{
    background:#707373;
    color:#FFFFFF;
    transform: scale(1.05)
}
.btn-gold{
    background:linear-gradient(180deg,#12A1A8,#12A1A8);
    color:#FFFFFF;
    border-radius:7px;
}
.btn-gold:hover{
    cursor: pointer;
    transition: all 0.3s ease;
    background:linear-gradient(180deg,#12A1A8,#12A1A8);
    color:#FFFFFF;
    border-radius:7px;
    box-shadow:0 10px 22px #12A1A8;
    transform: scale(1.05)
}

/* ===== HERO ===== */
.hero{
    display:grid;
    grid-template-columns:45% 55%;
    min-height:700px;
}

.hero-left{
    background: linear-gradient(135deg,#12A1A8,#12A1A8);
    display:flex;
    align-items:center;
    padding:40px;
}

.hero-copy{
    max-width:500px;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:30px;
    color:#000000;
    font-size:16px;
    font-weight:700;
    margin-bottom:50px;
}

.hero-copy h1{
    color:#000000;
    font-size:29px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-copy h1 span{
    color:#ffffff;
}

.hero-copy p{
    color:#FFFFFF;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

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

.hero-right{
    background:url('../images/banner1.webp');
    background-size:cover;
    background-position:center;
}

/* ===== BADGE ===== */
.badge{
    position:relative;
    left: calc(72% - 0px);
    margin-top: -40px;
    display: inline-block;
    background:#12A1A8;
    color:#fff;
    border-radius:30px 0 30px 0;
    padding:24px 32px;
    box-shadow:var(--shadow);
    z-index:2;
}

.badge strong{
    display:block;
    font-size:42px;
    line-height:1;
}

.badge span{
    display:block;
    font-size:12px;
    text-transform:uppercase;
}

/* ===== STATS ===== */
.stats {
    margin-top: 50px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.stats-card {
    background: #12A1A8;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 25px 15px;
    max-width: 1050px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 5px 10px;
}

.stat:last-child {
    border-right: 0;
}

.stat b {
    display: block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat span {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* ===== TREATMENTS SECTION ===== */
#treatments {
    padding: 70px 40px;
}

.section-title{
    text-align:center;
    margin-bottom: 42px;
    padding: 40px 40px 20px;
}

.section-title h2{
    font-family: 'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size:25px;
    line-height:1.15
}

.section-title h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color:var(--teal);
}

.section-title .section-subtitle {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color:#12A1A8;
    margin-bottom: 5px;
}

.section-title p{
    color:#12A1A8;
    font-size:18px;
    font-weight:800;
    text-transform:uppercase
}

.eyebrow{
    color:var(--teal);
    font-weight:800;
    font-size:13px;
    letter-spacing:.8px;
    text-transform:uppercase
}

/* ===== CARDS ===== */
.cards{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap: 13px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    text-align: center;
    border: 1px solid #ddd;
}

.card img{
    width:100%;
    height:185px;
    object-fit:cover
}

.card-body{
    padding:22px
}

.card h3{
    color:#12A1A8;
    font-size:18px;
    line-height:1.25
}

.card p{
    font-size:13px;
    color:var(--muted);
    margin:12px 0
}

.card a{
    font-size:12px;
    font-weight:800;
    text-transform:uppercase
}

/* ===== DOCTORS ===== */
.doctors{
    background:linear-gradient(90deg,#f5fdfe 0 68%,var(--teal) 68%);
    padding: 70px 0;
}

.doctor-grid{
    display:grid;
    grid-template-columns:1fr 1.6fr .9fr;
    align-items:center;
    gap:28px
}

.doctor-grid h2{
    font-family:'Playfair Display',serif;
    font-size:38px
}

.doctor-grid p{
    color:#707373;
    font-size:14px;
    margin:18px 0
}

.doctor-img img{
    width:100%;
    display:block
}

.safety{
    color:#fff;
    padding:40px
}

.safety h3{
    font-family:'Playfair Display',serif;
    font-size:32px;
    margin-bottom:20px
}

.safety li{
    list-style:none;
    margin:12px 0;
    font-size:14px
}

.safety li:before{
    content:'✓';
    color:#ffffff;
    margin-right:10px
}

/* ===== RESULTS ===== */
.results{
    background:#fbfeff;
    padding: 70px 0;
}

.result-slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.result-marquee-wrapper {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollResults 50s linear infinite;
}

.result-slider:hover .result-marquee-wrapper {
    animation-play-state: paused;
}

.result {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    font-weight: 700;
    color: #12A1A8;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.result img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: #ffffff;
    display: block;
}

.result div {
    padding: 13px;
    font-size: 16px;
    text-transform: uppercase;
}

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

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    font-family: 'Arial', sans-serif;
    background-color: #f8fafc;
    padding-bottom: 80px;
}

.wcu-header {
    background-image: linear-gradient(#12A1A8, #12A1A8);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px 120px 20px;
}

.wcu-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.wcu-subtitle {
    font-family: 'Oswald', sans-serif;
    color: #000000;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.wcu-header h2 {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.wcu-header p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
}

.wcu-container {
    max-width: 1200px;
    margin: -80px auto 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

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

.wcu-card {
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    display: flex;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1,43,29,0.1);
}

.wcu-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(81,124,159,0.1);
    color: #12a1a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}
.wcu-icon i{
    font-size: 24px;
}

.wcu-card h3 {
    font-size: 18px;
    color: #012b1d;
    margin-bottom: 12px;
    font-weight: 700;
}

.wcu-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.wcu-trust-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-top: 4px solid #12A1A8;
}

.trust-tag {
    background: #e6f7f2;
    color: #12A1A8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.wcu-trust-box h3 {
    font-size: 26px;
    color: #000000;
    margin-bottom: 35px;
    font-weight: 700;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.trust-item h4 {
    font-size: 16px;
    color: #12A1A8;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-item p {
    font-size: 14px;
    color: #516170;
    line-height: 1.6;
    text-align: justify;
}

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

.wcu-btn {
    display: inline-block;
    background: #12A1A8;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(1,43,29,0.2);
    cursor: pointer;
}

.wcu-btn:hover {
    background: #707373;
    transform: scale(1.02);
}

/* ===== TESTIMONIALS ===== */
.testimonials{
    background:#f7fcfd;
    padding: 0px 0px 40px;
}

.reviews{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding-bottom: 50px
}

.review{
    background:#fff;
    border-radius:12px;
    box-shadow:var(--shadow);
    padding:24px
}

.review p{
    font-style:italic;
    color:#4f6167;
    font-size:14px
}

.review b{
    display:block;
    margin-top:20px;
    font-size:14px
}

.stars{
    color:#efad2f;
    margin-top:8px
}

/* ===== CTA ===== */
.cta{
    padding: 0;
    background:linear-gradient(90deg,#707373,#707373);
    color:#fff
}

.cta-grid{
    display:grid;
    grid-template-columns:280px 1fr 1.1fr;
    gap:34px;
    align-items:center
}

.cta img{
    width:100%;
    height:170px;
    object-fit:cover
}

.cta h2{
    font-size:25px;
    line-height:1.15;
    margin-bottom:15px;
}

.cta-features{
    display:flex;
    gap:30px;
    font-size:21px;
    margin-bottom:22px;
    flex-wrap:wrap;
}

/* ===== FOOTER ===== */
.footer{
    background:#12A1A8;
    color:#d9eeee;
    padding: 55px 0 18px
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1.2fr 1.4fr 1fr;
    gap:32px
}

.footer h4{
    color:#FFFFFF;
    margin-bottom:18px;
    font-size: 20px;
}

.footer p{
    display:block;
    font-size:16px;
     margin-bottom:18px;
    color:#FFFFFF;
    margin:8px 0
}
.footer-links{
    color:#FFFFFF;
    margin-bottom:10px;
    display:block !important;
}
.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.14);
    padding-top:18px;
    margin-top:36px;
    color:#FFFFFF;
    font-size:16px
}

/* ============================================
   RESPONSIVE — 980px and below
   ============================================ */
@media (max-width: 980px) {

    /* Topbar stack */
    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* Header: hide desktop book btn, show hamburger */
    .desktop-book-btn {
        display: none !important;
    }

    .hamburger-btn {
        display: block !important;
        background: none !important;
        border: none !important;
        font-size: 32px !important;
        color: #333333 !important;
        cursor: pointer !important;
        padding: 5px !important;
        line-height: 1 !important;
        flex-shrink: 0;
    }

    /* Mobile nav dropdown */
    .menu {
        position: static;
        flex: none;
    }

    .menu-links {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
        z-index: 9999 !important;
        padding: 10px 0 !important;
        gap: 0 !important;
    }

    .menu-links.active {
        display: flex !important;
    }

    .menu-links a {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        text-align: center !important;
        border-bottom: 1px solid #eee !important;
        font-size: 15px !important;
    }

    .menu-links a:last-child {
        border-bottom: none !important;
    }

    /* Show mobile book link inside menu */
    .mobile-menu-book {
        display: block !important;
        background: #12A1A8 !important;
        color: #fff !important;
        font-weight: 700 !important;
        margin: 8px 16px 10px !important;
        border-radius: 5px !important;
        width: calc(100% - 32px) !important;
        padding: 14px 20px !important;
        border-bottom: none !important;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 50px 30px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-tag {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-right {
        height: 320px;
    }

    /* Badge */
    .badge {
        position: static !important;
        display: block !important;
        width: fit-content;
        margin: 20px auto !important;
        left: auto !important;
    }

    /* Stats */
    .stats {
        margin-top: 10px;
        padding: 0 16px;
    }

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

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 14px;
    }

    .stat:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.15);
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0;
    }

    /* Treatments */
    #treatments {
        padding: 50px 0;
    }

    .section-title {
        padding: 30px 20px 15px;
    }

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

    /* Doctors */
    .doctors {
        background: #f5fdfe;
        padding: 50px 0;
    }

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

    .safety {
        background: var(--teal);
        border-radius: 18px;
    }

    /* Results */
    .results {
        padding: 50px 0;
    }

    /* Why Choose Us */
    .wcu-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

    /* Testimonials */
    .testimonials {
        padding: 50px 0;
    }

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

    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta img {
        width: 100%;
        height: 200px;
    }

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

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

/* ============================================
   RESPONSIVE — 768px and below
   ============================================ */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .wcu-grid,
    .trust-features {
        grid-template-columns: 1fr;
    }

    .wcu-header h2 {
        font-size: 24px;
    }

    .wcu-trust-box {
        padding: 25px;
    }

    .wcu-container {
        margin-top: -50px;
    }
}

/* ============================================
   RESPONSIVE — 560px and below
   ============================================ */
@media (max-width: 560px) {

    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

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

    .stat {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 12px;
    }

    .stat:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.15) !important;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0 !important;
    }

    .section-title h2 {
        font-size: 30px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 10px 0 !important;
    }

    .section-title p {
        font-size: 15px !important;
        font-weight: 500 !important;
        /* text-align: center !important; */
        letter-spacing: 1px !important;
        margin-bottom: 5px !important;
        display: block !important;
        text-align: justify;
    }

    .cards {
        margin:20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .wcu-header {
        padding: 60px 20px 100px;
    }

    .section-title {
        padding: 25px 16px 10px;
    }
}
.stat-icon {
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
}

.stat-icon i {
    color: #fff;
}

.stat {
    text-align: center;
}
*{box-sizing:border-box;margin:0;padding:0}
.ts-section{font-family:sans-serif;padding:2rem 1rem}
.ts-title{text-align:center;margin-bottom:1.5rem}
.ts-title h3{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:#12A1A8;margin-bottom:4px}
.ts-title p{font-size:22px;font-weight:700;color:var(--color-text-primary)}
.ts-wrap{overflow:hidden;position:relative;padding:1rem 0 0}
.ts-track{display:flex;align-items:stretch;transition:transform 0.5s cubic-bezier(.4,0,.2,1)}
.ts-card{
  flex:0 0 calc(25% - 12px);margin-right:16px;
  background:#fff;border:1px solid #e8f0f0;border-radius:12px;
  padding:24px;display:flex;flex-direction:column;gap:10px;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.ts-stars{color:#efad2f;font-size:18px}
.ts-text{font-size:14px;color:#4f6167;font-style:italic;line-height:1.65;flex:1}
.ts-name{font-size:13px;font-weight:700;color:#074064}
.ts-dots{display:flex;justify-content:center;gap:6px;margin-top:1.2rem}
.ts-dot{width:8px;height:8px;border-radius:50%;background:#ccc;cursor:pointer;border:none;padding:0;transition:background .3s,transform .3s}
.ts-dot.active{background:#12A1A8;transform:scale(1.25)}
.ts-arrows{display:flex;justify-content:center;gap:10px;margin-top:12px}
.ts-btn{background:#fff;border:1px solid #cce6e7;border-radius:50%;width:36px;height:36px;cursor:pointer;font-size:22px;color:#12A1A8;display:flex;align-items:center;justify-content:center;transition:background .2s}
.ts-btn:hover{background:#12A1A8;color:#fff}
@media(max-width:768px){.ts-card{flex:0 0 calc(50% - 8px)}}
@media(max-width:480px){.ts-card{flex:0 0 100%}}
.form-disable{
    display:none;
}
@media (max-width: 768px) {
    .form-disable{
        display:block;
    }
  .topbar .container {
    display: block !important;
    padding: 8px 15px !important;
  }

  .topbar-text {
    display: block !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .topbar .container > div {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .topbar-whatsapp {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 13px !important;
  }

  .topbar-book {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    color: inherit !important;
    white-space: nowrap !important;
  }

  .topbar-whatsapp i,
  .topbar-book i {
    font-size: 14px !important;
  }
  .form-padding-footer{
    margin-bottom:30px;
  }
}
.whatsapp-float{
      position: fixed;
      width: 60px;
      height: 60px;
      background: transparent !important;
      bottom: 25px;
      right: 25px;
      z-index: 9999;
      /* border-radius: 50%; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); */
      /* transition: 0.3s ease; */
    }

    .whatsapp-float img{
        width: 100%;
        height: 100%;
        /* border-radius: 50%; */
    }

    .whatsapp-float:hover{
        transform: scale(1.1);
    }