/* ================================================================
   ZUKTI INNOVATIONS — MAIN STYLESHEET
   Original site styles + new Products & Contact section overrides
================================================================ */

a.slider-a {
    display: none;
}

select#Your_Country {
    padding: 8px 10px;
    width: 100%;
}

input#my-product {
    width: 100%;
    padding: 8px 10px;
    outline: none;
}

h2.support-h {
    padding: 60px 0px 20px;
}

.sim {
    background-color: #10332f !important;
}

nav.navbar.navbar-expand-lg.navbar.right.custom-nav .container {
    display: block;
}

ul.list-inline-wrapp {
    list-style: disc;
    padding-left: 16px;
    margin-bottom: 15px;
}

a.nav-link.active {
    color: white;
}

/* ── design tokens ── */
:root {
    --primary-color:   #10332F;
    --secondary-color: #2dd4bf;
    --teal:            #0b7b6b;
    --teal-light:      #12a58f;
    --teal-dark:       #0a5c4f;
    --teal-deeper:     #092e29;
    --cream:           #f9f7f3;
    --white:           #ffffff;
    --text-dark:       #1a1a1a;
    --text-mid:        #444444;
    --text-light:      #777777;
    --border:          #e5e0d8;
    /* new section tokens */
    --zp-teal:         #0b7b6b;
    --zp-teal-light:   #12a58f;
    --zp-teal-dark:    #0a5c4f;
    --zp-bg-deep:      #092e29;
    --zp-bg-section:   #0d2b26;
    --zp-card-bg:      rgba(255,255,255,0.055);
    --zp-border:       rgba(255,255,255,0.09);
    --zp-white:        #ffffff;
    --zp-faint:        rgba(255,255,255,0.42);
    --zp-radius:       22px;
    --zp-ease:         cubic-bezier(.4,0,.2,1);
}

* {
    margin: 0px;
    font-family: 'Sora', sans-serif;
}

body {
    overflow-x: hidden;
}

h2 {
    font-weight: 700;
    margin-bottom: 13px;
}

ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

p.sub-text {
    margin-bottom: 22px;
}

.tel-wrap {
    margin-bottom: 20px;
}

/* body {
    font-family: 'Inter', sans-serif;
} */

button {
    outline: none;
    background: none;
    border: none;
}

/* ── hero banner ── */
.herobanner {
    min-height: 500px;                       /* was height: 500px */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF8F0F2;
}

.herobanner-inner-box {
    width: 100%;
    max-width: 1270px;
    height: auto;                            /* was 552px */
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-around;
}

.hero-inner-sections {
    width: clamp(300px, 40vw, 459px);        /* was 612px (the old 0.75 scale = 459 effective) */
    height: auto;                            /* was 552px */
    /* scale: 0.75 removed — its shrink is now baked into the sizes below */
}

.herobanner-left-section {
    display: flex;
    flex-direction: column;
    row-gap: clamp(16px, 2vw, 23px);         /* was 31.2px */
    position: relative;
}

.left-section-top-section {
    width: auto;                             /* was 331px */
    max-width: 65%;
    height: auto;                            /* was 38px */
    padding: 6px clamp(12px, 1.6vw, 18px);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #10332F;
    font-weight: 600;
    font-family: sora;
    letter-spacing: 0.35px;
    font-size: clamp(9px, 1vw, 11px);        /* was 14px */
    background-color: #10332F0D;
    border: 1px solid #10332F33;
}
.background-box{
    position: absolute;
    bottom: 0px;
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.herobanner-maintext {
    font-family: sora;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem); /* was 96px → 72px effective */
    font-weight: bold;
    width: 100%;
    line-height: 1.0;                        /* was 91.2px */
    letter-spacing: -1.8px;                  /* was -2.4px */
}
.herobanner-maintext span { color: #2DD4BF; }

.hero-subheading {
    font-family: sora;
    font-size: clamp(0.85rem, 1.3vw, 0.94rem); /* was 20px → ~15px effective */
    width: 100%;
    max-width: 384px;                        /* was 512px */
    line-height: 1.6;
}

.hero-buttons-box {
    padding-top: 9px;
    width: 100%;
    display: flex;
    column-gap: clamp(10px, 1.4vw, 15px);    /* was 20px */
}
.hero-buttons-box button {
    border-radius: 50px;
    display: flex;
    width: 180px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.hero-buttons-box button:first-child {
    background-color: var(--primary-color);
    box-shadow: 0px 20px 25px -5px #0000001A, 0px 8px 10px -6px #0000001A;
    color: #FFF8F0;
    font-weight: 600;
    line-height: 24px;
}

.hero-buttons-box button:nth-child(2) {
    border: 2px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 24px;
}

.right-section-box {
    border-radius: 36px;                     /* was 48px */
    border: 3px solid #10332F33;             /* was 4px */
    width: 100%;
    max-width: 459px;                        /* was 612px */
    height: auto;                            /* was 552px */
    aspect-ratio: 612 / 552;                 /* holds the original shape while it scales */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2DD4BF33;
    box-shadow: 0px 0px 11px 15px #2DD4BF33; /* was 15px 20px */
}

.herobanner-img { width: 100%; display: flex; align-items: center; justify-content: center; }
.herobanner-img img { max-width: 86%; height: auto; }   /* keeps the image inside the box as it shrinks */

/* ── footer ── */
ul.support-ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    color: #6d6d6d;
    font-size: 10px;
}

section.futter {
    background: #2A2A2A;
    border-bottom: 1px white solid;
}

.col1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contect-us p a {
    color: #000;
}

.first {
    padding: 30px 0px;
}

li.support {
    border-right: 2px #D7D7D7 solid;
    padding: 0px 15px;
}

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

section.futter2 {
    background: #2A2A2A;
    color: #D7D7D7;
}

.second-futter {
    padding: 5px 0px;
    font-size: 10px;
}

a.AA {
    color: #D7D7D7;
    font-size: 16px;
}

li.laaaaa {
    padding: 0px 10px;
}

.navbar-toggler-icon {
    background-color: #00ffa999;
}

select#country {
    width: 100%;
    padding: 8px 10px;
}

section#about-us {
    padding: 28px 0px;
}

section.Zukti_Digital {
    padding-bottom: 90px;
}

/* ── country / phone helpers ── */
.form-container {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: start;
}

div#mt-select-wrap {
    flex-direction: column;
}

span.P {
    font-size: 13px !important;
}

.form-container .iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.form-container select {
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #aaa;
    margin-right: -1px;
    width: 120px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 37px;
}

select#countryCode:focus,
select:focus {
    outline: none !important;
}

.form-popup {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.form-popup select {
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #aaa;
    margin-right: -1px;
    width: 120px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 40px;
}

.form-popup input#phoneNumberpopup {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid;
    outline: none;
    border-radius: 4px;
    height: 41px;
}

.form-popup .iti__selected-dial-code { color: #000 !important; }
.form-popup li.iti__country { color: #000 !important; }

/* ── popup / overlay ── */
body.overlay-modal {
    position: relative;
}

body.overlay-modal::before {
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: #10332f;
    position: absolute;
    z-index: 9;
    opacity: 0.9;
}

#popupFormWrapper {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    /* transform: translate(-50%, -50%); */
    padding: 20px;
    z-index: 999;
    color: #10332f;
    background-color: #fff;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* ── misc support ── */
section.suppot-wrapper {
    height: 100%;
    display: flex;
    height: calc(100% - 204px);
}

body, html { height: 100%; }

section#about-us img.img-fluid {
    height: 310px;
    width: 100%;
    object-fit: cover;
}

h2.support-h { padding: 60px 0px 20px; }
.support-p { padding-bottom: 90px; }
section.million.p5.hide { height: 287px; }

button.fill-details-cross button {
    font-size: 24px;
    background: #000;
    border-radius: 50%;
    height: 34px;
    width: 33px;
}

/* ── first/custom slider (non-product) ── */
.custom-Slider.owl-carousel.owl-theme.owl-loaded.owl-drag { position: relative; }
.custom-Slider .owl-nav button i {
    position: absolute;
    top: 50%;
    background-color: #fff;
    padding: 14px 17px;
    border-radius: 50%;
    color: #000;
}
.custom-Slider button.owl-next i { right: 20px; top: 50%; transform: translateY(-50%); }
.custom-Slider button.owl-prev i { left: 20px; transform: translateY(-50%); }
.custom-Slider .owl-dots { display: none; }
.owl-theme .owl-nav [class*=owl-]:hover { background: #fff; color: #000; }
.first-slide.item img { max-width: 100%; height: 100%; object-fit: cover; width: 100%; }

/* ================================================================
   NEW HERO SECTION STYLES
================================================================ */
html { scroll-behavior: smooth; }

*, *::before, *::after { box-sizing: border-box; }

.hero-section-bg { background: #ffffff; }
.eye-exam-bg     { background: #FFF8F0; }

.hero {
    padding-top: 100px;
    padding-bottom: 80px;
    padding-left: 55px;
    padding-right: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-wrap { position: relative; width: 100%; max-width: 460px; }

.hero-eye-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    box-shadow: 0px 18px 50px -12px #00000040;
}

.hero-eye-card img { width: 100%; height: 100%; object-fit: cover; }

.eye-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(18,165,143,0.15) 0%, transparent 70%);
}

.scan-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; height: 70%;
    border: 1.5px solid rgba(18,165,143,0.5);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-ring 3s ease-in-out infinite;
}
.scan-ring::before {
    content: '';
    position: absolute; inset: -20px;
    border: 1px solid rgba(18,165,143,0.2);
    border-radius: 50%;
}
@keyframes pulse-ring {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}

.corner-bracket {
    position: absolute; width: 32px; height: 32px;
    border-color: var(--teal-light); border-style: solid; border-width: 0;
}
.corner-bracket.tl { top: 16px;    left: 16px;  border-top-width: 2.5px;    border-left-width: 2.5px; }
.corner-bracket.tr { top: 16px;    right: 16px; border-top-width: 2.5px;    border-right-width: 2.5px; }
.corner-bracket.bl { bottom: 16px; left: 16px;  border-bottom-width: 2.5px; border-left-width: 2.5px; }
.corner-bracket.br { bottom: 16px; right: 16px; border-bottom-width: 2.5px; border-right-width: 2.5px; }

.accuracy-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--primary-color);
    color: white; border-radius: 14px; padding: 20px;
    text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.accuracy-badge .pct         { font-size: 2rem; font-weight: bold; color: #FFF8F0; line-height: 1; }
.accuracy-badge .pct span    { color: var(--secondary-color); }
.accuracy-badge .label       { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 2px; }

.hero-content { padding-top: 20px; }

.hero-eyebrow {
    font-size: 0.72rem; border-radius: 30px; padding: 5px 20px;
    letter-spacing: 1.2px; background-color: #2DD4BF1A; width: fit-content;
    text-transform: uppercase; color: var(--primary-color); font-weight: 600; margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.2; font-weight: bold;
    color: var(--primary-color); margin-bottom: 20px;
}

.hero-desc   { font-size: 0.95rem; color: #10332FB3; line-height: 1.75; margin-bottom: 14px; max-width: 420px; }
.hero-desc-2 { font-size: 0.9rem;  color: #10332FB3; line-height: 1.75; margin-bottom: 36px; max-width: 420px; }

.hero-stats { display: flex; gap: 24px; }
.stat-item {
    padding: 16px 18px; background-color: #FFF8F0; width: 33%; height: 100px;
    text-align: center; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    border: 2px solid #10332F1A; border-radius: 16px;
}
.stat-value             { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); display: block; }
.stat-value span        { color: var(--secondary-color); }
.stat-item:last-child .stat-value { color: var(--secondary-color); }
.stat-label             { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-top: 2px; display: block; }

.teal-underline { display: block; width: 60px; height: 4px; background: var(--teal-light); border-radius: 2px; margin-top: 10px; }

/* ================================================================
   DIGITAL EYE EXAM SECTION
================================================================ */
.eye-exam-section { padding: 90px 55px; max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
    font-size: 0.72rem; border-radius: 30px; padding: 5px 20px;
    letter-spacing: 1.2px; background-color: #2DD4BF1A;
    width: fit-content; text-transform: uppercase; color: var(--primary-color);
    font-weight: 600; margin: auto; margin-bottom: 14px; display: block;
}

.section-title    { font-size: clamp(2rem, 3.5vw, 2.8rem); text-align: center; color: var(--primary-color); margin-bottom: 12px; }
.section-subtitle { text-align: center; font-size: 0.95rem; color: #10332FB3; max-width: 480px; margin: 0 auto 50px; line-height: 1.7; }

.exam-feature-card {
    background: white; border-radius: 20px;
    height: 350px; display: grid;
    padding-left: 40px; padding-right: 0; padding-top: 0; padding-bottom: 0;
    grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0;
    border: 4px solid #10332F1A; margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06); overflow: hidden;
}
.exam-card-text  { padding-right: 30px; display: flex; flex-direction: column; justify-content: center; }
.exam-card-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; color: var(--primary-color); }
.exam-card-desc  { font-size: 0.9rem;  color: #10332FB3; line-height: 1.75; margin-bottom: 8px; }
.exam-card-desc-2{ font-size: 0.88rem; color: #10332FB3; line-height: 1.7;  margin-bottom: 24px; }

.learn-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-color); color: white;
    padding: 12px 22px; border-radius: 50px; font-size: 0.875rem;
    font-weight: 600; text-decoration: none; width: fit-content; transition: background 0.2s;
}
.learn-btn:hover { background: var(--teal); }
.learn-btn svg   { width: 16px; height: 16px; }

.exam-card-img {
    border-radius: 0 16px 16px 0; overflow: hidden;
    min-height: 260px; display: flex; align-items: center; justify-content: center; position: relative;
}
.exam-card-img img { width: 100%; height: 100%; object-fit: cover; }

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

.feature-card {
    background: white; border-radius: 16px; border: 2px solid #10332F1A;
    padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover             { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.feature-card.quote-card        { background: var(--teal-dark); display: flex; align-items: flex-end; }

.feature-icon { width: 48px; height: 48px; background: rgba(11,123,107,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--teal); }
.feature-icon svg { width: 18px; height: 18px; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.feature-desc  { font-size: 0.855rem; color: #10332FB3; line-height: 1.65; }

.quote-mark { font-size: 3rem; line-height: 1; color: rgba(255,255,255,0.25); margin-bottom: 12px; display: block; }
.quote-text { font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; }


/* ================================================================
   OUR PRODUCTS SECTION  (new dark design)
   — overrides the old .zukti-digital / .child1 / .child2 rules
================================================================ */

/* Section wrapper */
section.zukti-digital {
    background: var(--zp-bg-deep) !important;
    padding: 90px 0 80px !important;
}

/* Header */
.zp-prod-header  { text-align: center; margin-bottom: 52px; }

.zp-eyebrow {
    font-size: 0.72rem; border-radius: 30px; padding: 5px 20px;
    letter-spacing: 1.2px; background-color: #2DD4BF1A;
    width: fit-content; text-transform: uppercase; color: var(--secondary-color);
    font-weight: 600; margin: auto; margin-bottom: 14px; display: block;
}

.zp-prod-title  { font-size: clamp(2rem,3.5vw,2.9rem); color: var(--zp-white); line-height: 1.1; margin-bottom: 12px; }
.zp-prod-title em { color: var(--zp-teal-light); font-style: italic; }
.zp-prod-sub    { font-size: .9rem; color: var(--zp-faint); max-width: 470px; margin: 0 auto; line-height: 1.7; }

/* Slider outer wrapper */
.zp-slider-outer { position: relative; padding: 0 36px; }

/* ── Reset old child1 flex/display rules ── */
.parent1 { width: 100%; text-align: center; }

.child1 {
    /* override old flex layout — owl-carousel needs width:100% block */
    width: 100% !important;
    display: block !important;
    flex-direction: unset !important;
    justify-content: unset !important;
    align-items: unset !important;
}

/* ── Owl nav styling ── */
.child1.owl-carousel .owl-stage-outer { border-radius: var(--zp-radius); }

.child1.owl-carousel .owl-nav {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    display: flex !important; justify-content: space-between;
    pointer-events: none; margin-top: 0 !important;
}

.child1.owl-carousel .owl-nav button {
    pointer-events: all;
    width: 46px !important; height: 46px !important;
    border-radius: 50% !important;
    border: 1px solid var(--zp-border) !important;
    background: rgba(255,255,255,0.08) !important;
    color: var(--zp-white) !important;
    font-size: 1.3rem !important;
    display: flex !important; align-items: center; justify-content: center;
    transition: background .25s; margin: 0 !important;
}
.child1.owl-carousel .owl-nav button:hover { background: rgba(255,255,255,0.18) !important; }
.child1.owl-carousel .owl-nav button.owl-prev { margin-left: -23px !important; }
.child1.owl-carousel .owl-nav button.owl-next { margin-right: -23px !important; }

/* Hide old absolute-positioned icon-based nav since we use owl's default text nav restyled */
.child1 .owl-nav.disabled { display: flex !important; }
.child1 button.owl-next i,
.child1 button.owl-prev i { display: none; }

/* ── Owl dots ── */
.child1.owl-carousel .owl-dots { margin-top: 26px !important; display: block !important; }
.child1.owl-carousel .owl-dot span {
    width: 8px !important; height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.22) !important;
    transition: background .25s, transform .25s !important;
    margin: 5px !important;
}
.child1.owl-carousel .owl-dot.active span { background: var(--zp-teal-light) !important; transform: scale(1.4); }

/* ── Each slide (child2.item) ── */
.child2.item {
    padding: 0 8px;
    background-color: transparent !important;
    margin-right: 0 !important;
    text-align: left !important;
}

/* Inner two-column card */
.zp-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--zp-card-bg);
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    padding: 50px 52px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.zp-slide-inner::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle,rgba(18,165,143,.18) 0%,transparent 70%);
    pointer-events: none;
}

/* Slide content fades in after owl finishes moving */
.child1 .owl-item .zp-slide-inner {
    opacity: 0;
    transition: opacity 0.35s ease;
}
.child1 .owl-item.active .zp-slide-inner {
    opacity: 1;
    transition: opacity 0.38s ease 0.18s; /* 0.18s delay = waits for owl slide to land */
}

/* Product tag pill */
.zp-prod-tag {
    display: inline-flex; align-items: center; gap: 7px; width: fit-content;
    background: rgba(18,165,143,.14); color: var(--zp-teal-light);
    font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.zp-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--zp-teal-light); flex-shrink: 0; }

/* Product name — keeps hhh{id} class untouched */
.zp-prod-name {
    font-size: clamp(1.7rem,2.8vw,2.4rem);
    font-weight: bold;
    color: var(--zp-white); line-height: 1.15; margin-bottom: 16px;
}

.zp-prod-desc { font-size: .875rem; color: var(--zp-faint); line-height: 1.75; margin-bottom: 30px; max-width: 380px; }

/* Book demo button — open-button class kept for JS popup hook */
.open-button.zp-book-btn {
    display: inline-flex !important; align-items: center; gap: 9px;
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important; border: none !important;
    padding: 13px 26px !important; border-radius: 9px !important;
    font-size: .8rem !important; font-weight: 700 !important; letter-spacing: .07em;
    cursor: pointer; transition: background .25s, transform .15s;
}
.open-button.zp-book-btn:hover { background: var(--zp-teal) !important; transform: translateY(-2px); }
.open-button.zp-book-btn svg   { width: 15px; height: 15px; flex-shrink: 0; }

/* Slide image */
.zp-slide-img-wrap { position: relative; border-radius: 16px; overflow: hidden; height: 270px; }
.zp-img-glow {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(ellipse at 60% 40%,rgba(18,165,143,.18) 0%,transparent 65%);
}

/* Override old child2 img size — child2-img class kept */
.child2-img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block !important;
    border-radius: 16px !important;
    transition: transform .5s ease !important;
    max-width: unset !important;
}
.zp-slide-img-wrap:hover .child2-img { transform: scale(1.04); }

/* Override old .img-wrapper zoom — keep it only outside products */
.img-wrapper img:hover { transform: scale(1.3); }
.img-wrapper img       { transition: 0.5s ease; }
.img-wrapper           { overflow: hidden; }
/* Inside the new slide, img-wrapper zoom is handled by zp-slide-img-wrap */
.zp-slide-img-wrap .img-wrapper img:hover { transform: none; }

/* Old ppp/hhh styles — hide since they're inside zp-slide-inner now */
.zp-slide-inner .ppp { display: none; }


/* ================================================================
   CONTACT US SECTION  (new design)
   — overrides old .row5, .contect-us, .get-in-touch rules
================================================================ */

section.Contact-Us {
    background: #FFF8F0 !important;
    padding: 90px 0 !important;
}

/* Override old flex row layout */
.row5 {
    display: block !important; /* we use CSS grid via zp-contact-grid */
    width: 100%;
}

.zp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    align-items: start;
}

/* ── Info card ── */
.zp-contact-info {
    background: var(--primary-color);
    border-radius: var(--zp-radius);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 44px 36px;
    color: var(--zp-white);
    height: 100%;
    width: 100% !important; /* override old .contect-us width:50% */
}
.zp-contact-info h2 { font-size: 1.9rem; color: var(--zp-white); margin-bottom: 6px; }
.zp-contact-info .sub-text { font-size: .85rem; color: var(--zp-faint); margin-bottom: 36px; }
.zp-contact-info p a { color: rgba(255,255,255,0.85) !important; }
.zp-contact-info h4 { display: none; } /* old h4 Phone/Email labels replaced by zp-ci-* */
.zp-contact-info .tel-wrap { display: none; } /* replaced by zp-ci-item */

.zp-ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
.zp-ci-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(255,255,255,.08); border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary-color);
}
.zp-ci-icon svg { width: 19px; height: 19px; }
.zp-ci-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .08em; color: white; margin-bottom: 4px;font-weight: 800; }
.zp-ci-value { font-size: .9rem; color: rgba(255,255,255,.85); text-decoration: none; display: block; transition: color .2s; }
.zp-ci-value:hover { color: var(--zp-teal-light); }

.zp-social-section { margin-top: 36px; }
.zp-social-lbl { display: block; font-size: .75rem; color: var(--zp-faint); margin-bottom: 12px; }
.zp-social-row { display: flex; gap: 10px; }
.zp-soc-btn {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55); text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
}
.zp-soc-btn svg { width: 16px; height: 16px; }

/* Per-platform brand colours on hover */
.zp-soc-btn[aria-label="LinkedIn"]:hover  { background: #0a66c2;  color: #fff; transform: translateY(-3px); }
.zp-soc-btn[aria-label="Twitter / X"]:hover { background: #000;   color: #fff; transform: translateY(-3px); }
.zp-soc-btn[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; transform: translateY(-3px);
}

/* ── Form card ── */
.zp-form-card {
    background: var(--zp-white);
    border-radius: var(--zp-radius);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 44px 48px;
    width: 100% !important; /* override old .get-in-touch width:50% */
}
.zp-form-card h2 { font-size: 1.65rem; color: #1a1a1a; margin-bottom: 4px; }
.zp-form-sub { font-size: .84rem; color: #888; margin-bottom: 28px; }

/* Form rows */
.father-a.row, .father-a1.row, .zp-fw-row {
    display: flex !important;
    gap: 16px;
    height: 85px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.zp-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.zp-form-label {
    font-size: .76rem; font-weight: 600; color: #555;
    margin-bottom: 6px; letter-spacing: .02em; display: block;
}

/* ── Input overrides — all original id/name/class hooks kept ── */
.input_get,
.zp-form-card input[type="text"],
.zp-form-card input[type="tel"],
.zp-form-card input[type="url"],
.zp-form-card input[type="email"],
.zp-form-card .message {
    width: 100% !important;
    border: 1.5px solid #e5e0d8 !important;
    border-radius: 9px !important;
    padding: 11px 14px !important;
    font-size: .875rem !important;
    font-family: inherit !important;
    color: #1a1a1a !important;
    background: #ffffff !important;
    transition: border-color .2s, box-shadow .2s !important;
    outline: none !important;
    box-shadow: none !important;
    /* reset old padding-bottom on .message */
    padding-bottom: 11px !important;
}
.input_get:focus,
.zp-form-card input:focus,
.zp-form-card .message:focus {
    border-color: var(--zp-teal) !important;
    box-shadow: 0 0 0 3px rgba(11,123,107,.1) !important;
    background: #fff !important;
}
.input_get::placeholder,
.zp-form-card input::placeholder { color: #bbb !important; }

/* intl-tel-input wrapper */
.zp-form-card .iti { width: 100%; }
/* push the input text past the flag + dial-code prefix */
.zp-form-card .iti--separate-dial-code #phoneNumber { padding-left: 92px !important; }

/* ── Select2 overrides ── */
.select2-container--default .select2-selection--single {
    border: 1.5px solid #e5e0d8 !important;
    border-radius: 9px !important;
    height: 44px !important;
    background: #ffffff !important;
    display: flex !important; align-items: center !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    color: #1a1a1a !important;
    font-size: .875rem !important;
    padding: 0 14px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 44px !important; right: 8px !important; }
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--zp-teal) !important;
    box-shadow: 0 0 0 3px rgba(11,123,107,.1) !important;
}
.select2-dropdown { border: 1.5px solid #e5e0d8 !important; border-radius: 9px !important; }
div#mt-select-wrap .select2-container { max-width: 100% !important; width: 100% !important; }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: #757575 !important; }

/* Error spans */
span.P { font-size: 13px !important; margin-top: 4px; display: block; min-height: 16px; }

/* reCAPTCHA */
.g-recaptcha { margin: 18px 0 6px; }

/* Submit button — fill-butten class kept for existing JS */
button.fill-butten {
    width: 100% !important;
    background: var(--primary-color) !important;
    color: var(--zp-white) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 15px !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    letter-spacing: .06em;
    font-family: inherit !important;
    cursor: pointer;
    margin-top: 10px;
    transition: background .25s, transform .15s !important;
}
button.fill-butten:hover { background: var(--zp-teal) !important; transform: translateY(-1px); }

/* Message textarea in Get In Touch form */
.zp-form-card .zp-textarea {
    width: 100% !important;
    border: 1.5px solid #e5e0d8 !important;
    border-radius: 9px !important;
    padding: 11px 14px !important;
    font-size: .875rem !important;
    font-family: 'Sora', sans-serif !important;
    color: #1a1a1a !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    resize: vertical;
    min-height: 100px;
    transition: border-color .2s, box-shadow .2s !important;
}
.zp-form-card .zp-textarea:focus {
    border-color: var(--zp-teal) !important;
    box-shadow: 0 0 0 3px rgba(11,123,107,.1) !important;
    background: #fff !important;
}
.zp-form-card .zp-textarea::placeholder { color: #bbb !important; }

/* Message row — override the fixed 85px height so the textarea isn't clipped */
.zp-fw-row:has(.zp-textarea) { height: auto !important; }
.zp-form-card .a1,
.zp-form-card .a2,
.zp-form-card .a3,
.zp-form-card .a4 { width: auto !important; }
.zp-form-card .message { width: 100% !important; padding-bottom: 11px !important; margin: 0 !important; }


/* ================================================================
   RESPONSIVE
================================================================ */
@media screen and (max-width: 1299px) {
    section.suppot-wrapper { height: 100%; }
    body, html { height: unset; }
}

@media screen and (max-width: 992px) {
    section.Zukti_Digital .row { flex-direction: column-reverse; }
    section.Zukti_Digital .row img.img-fluid { margin-top: 40px; }

    /* Products */
    .zp-slide-inner { grid-template-columns: 1fr !important; padding: 32px 28px; }
    .zp-slide-img-wrap { height: 220px; order: -1; }

    /* Contact */
    .zp-contact-grid { grid-template-columns: 1fr; }
    .zp-form-card    { padding: 32px 24px; }
    .zp-contact-info { padding: 32px 24px; }

    h2.support-h { padding: 50px 0px 20px; }
    .support-p   { padding-bottom: 60px; }
}

@media only screen and (max-width:992px) and (min-width:768px) {
    div#popupFormWrapper { width: 600px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px; }
}

@media only screen and (max-width:768px) and (min-width:320px) {
    h2.support-h { padding: 40px 0px 2px; }
    .support-p   { padding-bottom: 50px; }
    h2           { font-size: 23px; }

    .custom-Slider .owl-nav button i { padding: 8px 11px; font-size: 12px; }
    .first-slide.item { height: 210px; object-fit: cover; }
    .custom-Slider button.owl-next i { display: block; right: 20px; position: absolute; top: 50%; }

    .child1 .owl-nav button i { padding: 10px 12px; font-size: 12px; }

    li.support { border-bottom: 1px #D7D7D7 solid; border-right: none; padding: 0px 15px 3px; }
    ul.support-ul { align-items: center; flex-direction: column; gap: 10px; }

    section.Contact-Us  { padding: 40px 0 !important; }
    section.zukti-digital { padding: 40px 0 14px !important; }

    .owl-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; }

    .father-a.row, .father-a1.row { flex-wrap: nowrap; }
    .zp-form-card .a3, div#mt-select-wrap { width: 100% !important; margin-bottom: 8px; }
    .zp-form-card .message { margin: 0; }

    .iti.iti--allow-dropdown.iti--separate-dial-code { width: 100%; }
    .zp-slider-outer { padding: 0 34px; }
    .father-a.row, .father-a1.row, .zp-fw-row { flex-direction: column; gap: 0; }
    .zp-form-group { margin-bottom: 14px; }
}

@media only screen and (max-width:768px) and (min-width:575px) {
    #popupFormWrapper { width: 490px; margin: 0 auto;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px; }
    .iti.iti--allow-dropdown.iti--separate-dial-code { width: 100%; }
}

@media only screen and (max-width:575px) and (min-width:480px) {
    #popupFormWrapper { width: 460px; }
}

@media screen and (max-width: 480px) {
    input#Your-Name, .get-in-touch input { font-size: 14px; }
}

@media only screen and (max-width:480px) and (min-width:380px) {
    #popupFormWrapper { width: 380px; margin: 0 auto; padding: 20px 2px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px; }
}

@media only screen and (max-width:380px) and (min-width:320px) {
    #popupFormWrapper { width: 300px; margin: 0 auto; padding: 20px 2px; top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;  }
}

@media only screen and (max-width:1300px) and (min-width:1024px) {
    .zp-form-card input, .zp-form-card .message { width: 100% !important; }
    button.get-form-butten { width: 100%; }
    .father-a { flex-wrap: nowrap; }
}

@media only screen and (max-width:1024px) and (min-width:768px) {
    .select2-container { width: 100% !important; }
    .father-a { flex-wrap: nowrap; }
    .get-in-touch { padding-top: 15px; }
}

@media screen and (max-width: 1024px) {
    .select2-container { width: 100% !important; }
}



.zf-footer {
  background: #10332F;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.55);
  font-family: 'Sora', 'Inter', sans-serif;
}

/* ── Top three-column grid ────────────────────────────────── */
.zf-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.zf-top .zf-col:last-child { display: none; }

/* ── Brand column ─────────────────────────────────────────── */
.zf-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}
.zf-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.zf-logo-text small {
  font-size: 0.45rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.zf-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 230px;
  margin-top: 6px;
}

/* ── Link columns ─────────────────────────────────────────── */
.zf-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.zf-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.zf-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.zf-list a:hover { color: #2DD4BF; }

/* ── Newsletter column ────────────────────────────────────── */
.zf-newsletter-sub {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 220px;
}
.zf-newsletter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  width: fit-content;
}
.zf-email-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  outline: none !important;
  padding: 12px 16px;
  font-size: 0.855rem;
  color: #fff;
  font-family: inherit;
  min-width: 0;
}
.zf-email-input::placeholder { color: rgba(255,255,255,0.3); }
.zf-send-btn {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: #2DD4BF;
  border: none;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #0b2922;
  transition: background 0.2s;
}
.zf-send-btn:hover { background: #12a58f; color: #fff; }

/* ── Divider ──────────────────────────────────────────────── */
.zf-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Bottom bar ───────────────────────────────────────────── */
.zf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.zf-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Override old support-ul row styles inside footer bottom */
.zf-legal.support-ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  list-style: none;
  padding: 0; margin: 0;
}
/* Keep original li.support / li.laaaaa classes but restyle */
.zf-legal li.support,
.zf-legal li.laaaaa {
  border: none !important;
  padding: 0 !important;
}
.zf-legal-link {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s;
  line-height: 1;
}
.zf-legal li:last-child .zf-legal-link { border-right: none; }
.zf-legal-link:hover { color: #2DD4BF !important; }

/* Override old section.futter / section.futter2 background */
section.futter,
section.futter2,
footer.zf-footer {
  border: none !important;
  padding-bottom: 0 !important;
}
/* Hide the old second-futter p since it's merged into zf-bottom */
.second-futter { display: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .zf-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .zf-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .zf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .zf-legal.support-ul { flex-wrap: wrap; justify-content: flex-start !important; }
  .zf-legal-link { padding: 0 12px 0 0 !important; border-right: none !important; }
}


@media (max-width: 768px) {

  /* ---- TOP HERO BANNER ("See The Future Clearly") ---- */
  .herobanner            { height: auto; padding: 32px 18px 48px; }
  .herobanner-inner-box  { flex-direction: column; height: auto; row-gap: 40px; }
  .hero-inner-sections   { width: 100%; height: auto; scale: 1; }   /* kill the 0.75 scale */
  .herobanner-left-section { width: 100%; row-gap: 18px; align-items: flex-start; }
  .left-section-top-section { width: auto; max-width: 100%; height: 34px; font-size: 11px; padding: 0 16px; }
  .herobanner-maintext   { font-size: 42px; line-height: 1.08; letter-spacing: -1px; }
  .hero-subheading       { width: 100%; font-size: 15px; line-height: 1.6; }
  .hero-buttons-box      { flex-wrap: wrap; column-gap: 12px; row-gap: 12px; padding-top: 4px; }
  .hero-buttons-box button { width: auto; flex: 1 1 45%; min-width: 150px; height: 56px; font-size: 14px; column-gap: 8px; }
  .right-section-box     { width: 100%; max-width: 420px; height: auto; aspect-ratio: 16 / 11;
                           margin: 0 auto; border-radius: 28px; border-width: 3px;
                           box-shadow: 0 0 12px 12px #2DD4BF33; padding: 20px; }
  .herobanner-img,
  .herobanner-img img    { width: 100%; height: auto; object-fit: contain; }
  .background-box        { display: block;
                            position: absolute;
                            height: 200px;
                        max-width: 200px; }

  /* ---- ABOUT (Zukti Innovations) — text first, image below ---- */
  .hero            { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px 50px; }
  .hero-content    { order: -1; padding-top: 0; }          /* push text above the eye image */
  .hero-image-wrap { width: 100%; max-width: 340px; margin: 10px auto 16px; }
  .hero-title      { font-size: 2rem;padding-left: 5px;  }
  .hero-desc,
  .hero-desc-2     { max-width: 100%;padding-left: 5px; }
  .hero-stats      { gap: 10px; }
  .stat-item       { width: 33%; height: auto; min-height: 88px; padding: 12px 6px; }
  .stat-value      { font-size: 1.25rem; }

  /* ---- DIGITAL EYE EXAM ---- */
  .eye-exam-section   { padding: 50px 18px; }
  .exam-feature-card  { grid-template-columns: 1fr; height: auto; padding: 28px 22px; }
  .exam-card-text     { padding-right: 0; padding-bottom: 26px;text-align: center; }
  .exam-card-img      { border-radius: 0 0 16px 16px; min-height: 220px;width: 100%; }
  .exam-card-img > div{ min-height: 220px !important; width: 100%;}    /* overrides the inline 503px height */
  .features-grid      { grid-template-columns: 1fr; gap: 16px; }
  .learn-btn          {margin: auto;}

  /* ---- OUR PRODUCTS (dark section) ---- */
  .zp-slider-outer   { padding: 0 30px; }
  .zp-slide-inner    { grid-template-columns: 1fr; gap: 24px; padding: 26px 22px; }
  .zp-slide-img-wrap { order: -1; height: 200px; }         /* image on top, text below */
  .zp-prod-name      { font-size: 1.6rem; }
  .zp-prod-desc      { max-width: 100%; }

  /* ---- CONTACT US ---- */
  .zp-contact-grid { grid-template-columns: 1fr; }
  .zp-contact-info { border-radius: 22px 22px 0 0; padding: 32px 24px; }   /* top rounded */
  .zp-form-card    { border-radius: 0 0 22px 22px; padding: 32px 22px; }   /* bottom rounded */
  .father-a.row,
  .father-a1.row,
  .zp-fw-row       { flex-direction: column; height: auto; gap: 0; }       /* one field per row */
  .zp-form-group   { margin-bottom: 16px; }

  /* ---- FOOTER ---- */
  .zf-top    { grid-template-columns: 1fr; gap: 30px; }
  .zf-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* finer tuning for small phones */
@media (max-width: 400px) {
  .herobanner-maintext     { font-size: 34px; }
  .hero-buttons-box button { flex: 1 1 100%; }
  .hero-title              { font-size: 1.7rem; }
  .stat-item               { min-height: 78px; padding: 10px 4px; }
  .stat-value              { font-size: 1.1rem; }
  .zp-slide-inner          { padding: 22px 18px; }
}


/* ================================================================
   BOOK-DEMO POPUP  — two-panel modal (left: branding, right: form)
   Scoped to #popupFormWrapper / .bd-* classes.
================================================================ */

/* ── Backdrop ── */
.bd-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10, 28, 25, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
}

/* ── Wrapper — full-screen flex centering ── */
#popupFormWrapper {
    display: none;
    position: fixed; inset: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    /* reset old conflicting rules */
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    scale: unset !important;
}
#popupFormWrapper[style*="flex"] { display: flex !important; }

/* ── Modal card ── */
.bd-modal {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 32px);
    border-radius: 20px;
    overflow: hidden;           /* clip to rounded corners visually */
    box-shadow: 0 32px 80px -12px rgba(0,0,0,0.45);
    background: #fff;
    position: relative;
}

/* Clip only the corners visually without clipping overflow */
.bd-modal::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 0 transparent;
    pointer-events: none;
    z-index: 0;
}

/* ================================================================
   LEFT PANEL — removed
================================================================ */
.bd-left { display: none; }

/* ================================================================
   RIGHT PANEL — form
================================================================ */
.bd-right {
    padding: 44px 44px 36px;
    overflow-y: auto;
    overflow-x: visible;        /* let Flatpickr dropdown escape horizontally */
    position: relative;
    background: #fff;
    border-radius: 20px;        /* round corners since bd-modal no longer clips */
    max-height: calc(100vh - 32px); /* constrains height so overflow-y:auto actually scrolls */
}

/* Close button */
.bd-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.bd-close:hover { background: #fee2e2; color: #ef4444; }

/* Form header */
.bd-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #10332f;
    margin-bottom: 4px;
}
.bd-form-sub {
    font-size: 0.84rem;
    color: #9ca3af;
    margin-bottom: 28px;
}

/* Form layout */
.bd-form { display: flex; flex-direction: column; gap: 0; }

.bd-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
    /* reset Bootstrap row margins */
    --bs-gutter-x: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.bd-row [class*="col-"] {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
}

/* Date + time row */
.bd-row-datetime {
    grid-template-columns: 1fr 1fr;
}

/* Full-width field */
.bd-field-full { grid-column: 1 / -1; }

/* Single field */
.bd-field {
    display: flex;
    flex-direction: column;
}

/* Label */
.bd-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.775rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.bd-req { color: #ef4444; font-size: 0.75rem; }

/* All inputs */
.bd-input,
#popupFormWrapper .b1-input,
#popupFormWrapper .custom-input,
#popupFormWrapper .zukti-product,
#popupFormWrapper input[type="date"],
#popupFormWrapper input[type="time"],
#popupFormWrapper input[type="url"],
#popupFormWrapper input[type="email"],
#popupFormWrapper input[type="text"],
#popupFormWrapper input[type="tel"] {
    width: 100% !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 11px 14px !important;
    font-size: 0.875rem !important;
    font-family: 'Sora', sans-serif !important;
    color: #111827 !important;
    background: #f9fafb !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s !important;
    height: auto !important;
}
.bd-input:focus,
#popupFormWrapper .b1-input:focus,
#popupFormWrapper .custom-input:focus,
#popupFormWrapper input[type="date"]:focus,
#popupFormWrapper input[type="time"]:focus,
#popupFormWrapper input[type="url"]:focus,
#popupFormWrapper input[type="email"]:focus,
#popupFormWrapper input[type="text"]:focus,
#popupFormWrapper input[type="tel"]:focus {
    border-color: #10332f !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(16,51,47,0.08) !important;
}
.bd-input::placeholder,
#popupFormWrapper input::placeholder { color: #9ca3af !important; }

/* Error state */
.bd-input-err,
#popupFormWrapper input.bd-input-err {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}

/* Readonly product field */
.bd-input-readonly,
#popupFormWrapper .zukti-product {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    cursor: default !important;
    border-color: #e5e7eb !important;
}

/* Date / time picker icon */
#popupFormWrapper input[type="date"],
#popupFormWrapper input[type="time"] { cursor: pointer; }
#popupFormWrapper input[type="date"]::-webkit-calendar-picker-indicator,
#popupFormWrapper input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.5; cursor: pointer;
}

/* intl-tel-input */
#popupFormWrapper .form-popup { display: block; }
#popupFormWrapper .iti { width: 100%; }
#popupFormWrapper .iti--separate-dial-code #phoneNumberpopup { padding-left: 92px !important; }
#popupFormWrapper .iti__selected-dial-code { color: #111827 !important; }

/* Error text */
.bd-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 16px;
    display: block;
}

/* reCAPTCHA */
.bd-recaptcha { margin: 4px 0 16px; }

/* Submit button */
.bd-submit,
#popupFormWrapper .fill-butten {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: #10332f !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    font-family: 'Sora', sans-serif !important;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s !important;
    margin-top: 4px;
}
.bd-submit:hover,
#popupFormWrapper .fill-butten:hover {
    background: #0b7b6b !important;
    transform: translateY(-1px);
}

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

/* Tablet — single column already, just constrain width */
@media (max-width: 860px) {
    .bd-modal { max-width: 520px; }
    .bd-right { padding: 40px 32px 32px; }
}

/* Mobile — bottom sheet style, full scroll */
@media (max-width: 540px) {
    #popupFormWrapper {
        padding: 0;
        align-items: flex-end;
        /* Use dvh (dynamic viewport height) so Brave/Safari address bar is accounted for */
        height: 100dvh;
        height: 100vh; /* fallback */
    }
    .bd-modal {
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        /* Fill available height minus a small top gap */
        max-height: 94dvh;
        max-height: 94vh; /* fallback */
        overflow: hidden;
    }
    .bd-right {
        padding: 28px 16px 48px;
        /* Make the form panel itself scrollable on mobile */
        max-height: 94dvh;
        max-height: 94vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* Stack all two-column rows to single column */
    .bd-row,
    .bd-row-datetime {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .bd-row { margin-bottom: 0; }
    .bd-field { margin-bottom: 14px; }
    
    /* Ensure date/time row has proper spacing and visibility */
    .bd-row-datetime {
        margin-bottom: 16px;
        padding-bottom: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    /* Ensure date/time fields are visible */
    .bd-row-datetime .bd-field {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        visibility: visible;
        opacity: 1;
    }
    
    /* Make sure Flatpickr inputs are visible */
    #popupFormWrapper .flatpickr-input[readonly] {
        font-size: 16px !important; /* prevents iOS zoom */
        padding: 13px 14px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* reCAPTCHA — scale down on very small screens */
    .bd-recaptcha {
        overflow: hidden;
    }
    .bd-recaptcha .g-recaptcha {
        transform: scale(0.88);
        transform-origin: left top;
        -webkit-transform: scale(0.88);
        -webkit-transform-origin: left top;
    }

    /* Reduce title size */
    .bd-form-title { font-size: 1.15rem; }
    .bd-form-sub   { margin-bottom: 18px; }

    /* Ensure inputs are large enough to tap */
    .bd-input,
    #popupFormWrapper .b1-input,
    #popupFormWrapper .custom-input,
    #popupFormWrapper input[type="url"],
    #popupFormWrapper input[type="email"],
    #popupFormWrapper input[type="text"],
    #popupFormWrapper input[type="tel"] {
        font-size: 16px !important; /* prevents iOS/Brave zoom on focus */
        padding: 13px 14px !important;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .bd-right { padding: 24px 12px 28px; }
    .bd-recaptcha .g-recaptcha {
        transform: scale(0.78);
        -webkit-transform: scale(0.78);
    }
}




/* ================================================================
   OUR PRODUCTS — CARD CAROUSEL
   Cards have a fixed size; carousel shows 3 on desktop, 2 on tablet,
   1 (with peek) on mobile. Single product still renders correctly.
================================================================ */

/* ── Carousel wrapper — adds side padding for nav arrows ── */
.zp-carousel-wrap {
    position: relative;
    padding: 0 44px;
}

/* ── Owl nav arrows ── */
.zp-prod-carousel.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    margin: 0 !important;
}
.zp-prod-carousel.owl-carousel .owl-nav button {
    pointer-events: all;
    width: 44px !important; height: 44px !important;
    border-radius: 50% !important;
    border: 1px solid var(--zp-border) !important;
    background: rgba(255,255,255,0.10) !important;
    color: var(--zp-white) !important;
    display: flex !important; align-items: center; justify-content: center;
    transition: background .25s;
    margin: 0 !important;
}
.zp-prod-carousel.owl-carousel .owl-nav button:hover {
    background: rgba(255,255,255,0.22) !important;
}
.zp-prod-carousel.owl-carousel .owl-nav button.owl-prev { margin-left: -22px !important; }
.zp-prod-carousel.owl-carousel .owl-nav button.owl-next { margin-right: -22px !important; }

/* ── Owl dots ── */
.zp-prod-carousel.owl-carousel .owl-dots {
    margin-top: 28px !important;
    display: block !important;
}
.zp-prod-carousel.owl-carousel .owl-dot span {
    width: 8px !important; height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.22) !important;
    transition: background .25s, transform .25s !important;
    margin: 5px !important;
}
.zp-prod-carousel.owl-carousel .owl-dot.active span {
    background: var(--zp-teal-light) !important;
    transform: scale(1.4);
}

/* ── Each slide item — give it padding so cards don't touch ── */
.zp-prod-carousel .zp-prod-card {
    margin: 0 10px 4px;   /* horizontal gap between cards; 4px bottom for hover shadow */
}

/* ── Card shell ── */
.zp-prod-card {
    height: 400px;
    background: var(--zp-card-bg);
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s var(--zp-ease), box-shadow 0.25s var(--zp-ease);
}
.zp-prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
/* Glow accent */
.zp-prod-card::before {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(18,165,143,.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Image — top 52% of card ── */
.zp-card-img-wrap {
    position: relative;
    width: 100%;
    height: 52%;
    overflow: hidden;
    flex-shrink: 0;
}
.zp-card-img-wrap .zp-img-glow {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(ellipse at 60% 40%, rgba(18,165,143,.18) 0%, transparent 65%);
}
.zp-card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.zp-prod-card:hover .zp-card-img { transform: scale(1.06); }

/* ── Content — bottom 48% ── */
.zp-card-body {
    flex: 1;
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.zp-card-body .zp-prod-tag  { margin-bottom: 8px; flex-shrink: 0; }
.zp-card-body .zp-prod-name {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 6px; flex-shrink: 0;
}
.zp-card-body .zp-prod-desc {
    font-size: .78rem; line-height: 1.6; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}
.zp-card-body .zp-book-btn {
    margin-top: auto;
    padding: 10px 18px !important;
    font-size: .75rem !important;
    align-self: flex-start;
    flex-shrink: 0;
}

/* ── Empty state ── */
.zp-no-products {
    color: var(--zp-faint); font-size: .9rem;
    text-align: center; padding: 40px 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .zp-carousel-wrap { padding: 0 36px; }
    .zp-prod-card { height: 380px; }
}

@media (max-width: 575px) {
    /* On mobile show exactly 1 card — hide the peeking adjacent cards */
    .zp-carousel-wrap { padding: 0 28px; }
    .zp-prod-card {
        height: 360px;
        margin: 0 6px 4px;
    }
    /* Slightly smaller nav buttons on mobile */
    .zp-prod-carousel.owl-carousel .owl-nav button {
        width: 36px !important; height: 36px !important;
    }
    /* Clip the 20px stagePadding peek zones on both sides */
    .zp-prod-carousel.owl-carousel .owl-stage-outer {
        clip-path: inset(0 20px);
    }
}


/* ================================================================
   FLATPICKR — date / time picker overrides
   Scoped to the book-demo popup (#popupFormWrapper)
================================================================ */

/* ── Date/time picker inputs ── */
/* Original picker input — Flatpickr hides this via inline style once it initialises.
   Do NOT set display:none here; if Flatpickr fails to load the field must still show. */
.bd-picker-input {
    cursor: pointer;
}

/* The altInput Flatpickr renders — make sure it's always visible */
#popupFormWrapper .flatpickr-input {
    display: block !important;
}

#popupFormWrapper .flatpickr-input[readonly] {
    padding: 11px 14px !important;   /* same as all other bd-inputs, no icon offset */
    cursor: pointer !important;
    background: #f9fafb !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    width: 100% !important;
    font-size: 0.875rem !important;
    font-family: 'Sora', sans-serif !important;
    color: #111827 !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
#popupFormWrapper .flatpickr-input[readonly]:focus {
    border-color: #10332f !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(16,51,47,0.08) !important;
}
#popupFormWrapper .flatpickr-input[readonly].bd-input-err {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}
#popupFormWrapper .flatpickr-input[readonly]::placeholder { color: #9ca3af !important; }

/* ── Calendar popup ── */
.flatpickr-calendar {
    font-family: 'Sora', sans-serif !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.25) !important;
    border: 1px solid #e5e7eb !important;
    overflow: hidden;
    z-index: 99999 !important;  /* must beat #popupFormWrapper z-index: 999 */
}

/* Month header */
.flatpickr-months {
    background: #10332f !important;
    padding: 6px 0 !important;
    border-radius: 14px 14px 0 0 !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month .cur-month,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    fill: #fff !important;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: rgba(255,255,255,0.7) !important;
    fill: rgba(255,255,255,0.7) !important;
    padding: 8px 12px !important;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #2DD4BF !important;
    fill: #2DD4BF !important;
    background: transparent !important;
}

/* Weekday row */
.flatpickr-weekdays { background: #f3f4f6 !important; }
span.flatpickr-weekday {
    color: #6b7280 !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Day cells */
.flatpickr-day {
    border-radius: 8px !important;
    font-size: 0.855rem !important;
    color: #111827 !important;
    font-family: 'Sora', sans-serif !important;
}
.flatpickr-day:hover {
    background: #e6f4f2 !important;
    border-color: transparent !important;
    color: #10332f !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #10332f !important;
    border-color: #10332f !important;
    color: #fff !important;
}
.flatpickr-day.today {
    border-color: #2DD4BF !important;
    color: #10332f !important;
    font-weight: 700 !important;
}
.flatpickr-day.today.selected { color: #fff !important; }
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #d1d5db !important;
    background: transparent !important;
}

/* Time picker */
.flatpickr-time {
    border-top: 1px solid #f3f4f6 !important;
    background: #fff !important;
}
.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
    font-family: 'Sora', sans-serif !important;
    font-size: 1rem !important;
    color: #10332f !important;
    font-weight: 600 !important;
}
.flatpickr-time input:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
    background: #f3f4f6 !important;
}
.flatpickr-time .numInputWrapper span.arrowUp:after  { border-bottom-color: #10332f !important; }
.flatpickr-time .numInputWrapper span.arrowDown:after { border-top-color: #10332f !important; }

/* ── Book Demo — general error banner + spinner ── */
.bd-general-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.855rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.bd-submit-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes bd-rotate {
    to { transform: rotate(360deg); }
}
.bd-spin {
    animation: bd-rotate 0.8s linear infinite;
}

/* ================================================================
   AUTH PAGES  (login / verify-otp / signup)
   Full-height split layout: dark left panel + white right form
================================================================ */

/* ── Outer wrapper ── */
.auth-wrap {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 100vh;
}

/* ================================================================
   LEFT PANEL
================================================================ */
.auth-left {
    background: linear-gradient(160deg, #0d3b34 0%, #10332f 55%, #092e29 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.auth-left::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,212,191,.15) 0%, transparent 70%);
    pointer-events: none;
}
.auth-left::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,212,191,.10) 0%, transparent 70%);
    pointer-events: none;
}

.auth-left-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.auth-logo-link { display: inline-block; margin-bottom: 44px; }
.auth-logo {
    width: 120px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.auth-brand-title {
    font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.auth-brand-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 300px;
}

/* Perks list */
.auth-perks {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.auth-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}
.auth-perk-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    background: rgba(45,212,191,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #2DD4BF;
}
.auth-perk-icon svg { width: 12px; height: 12px; }

/* OTP visual (verify page) */
.auth-otp-visual {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.auth-otp-box {
    width: 80px; height: 80px;
    background: rgba(45,212,191,0.12);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
}
.auth-otp-hint {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    max-width: 280px;
}
.auth-otp-hint a { color: #2DD4BF; text-decoration: none; }
.auth-otp-hint a:hover { text-decoration: underline; }

/* ================================================================
   RIGHT PANEL
================================================================ */
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background: #f5f7fa;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

.auth-card-head { margin-bottom: 32px; }
.auth-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #10332f;
    margin-bottom: 6px;
}
.auth-card-sub {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ── Form ── */
.auth-form { display: flex; flex-direction: column; gap: 0; }

.auth-field { margin-bottom: 22px; }

.auth-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.auth-input-icon {
    position: absolute;
    left: 14px;
    width: 16px; height: 16px;
    color: #9ca3af;
    pointer-events: none;
    flex-shrink: 0;
}
.auth-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 11px;
    padding: 13px 14px 13px 42px;
    font-size: 0.9rem;
    font-family: 'Sora', sans-serif;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.auth-input:focus {
    border-color: #10332f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16,51,47,0.08);
}
.auth-input::placeholder { color: #9ca3af; }

/* Password toggle */
.auth-pw-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 4px;
    display: flex; align-items: center;
    transition: color 0.2s;
}
.auth-pw-toggle:hover { color: #10332f; }

/* ── Submit button ── */
.auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #10332f;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    margin-top: 4px;
}
.auth-btn:hover { background: #0b7b6b; transform: translateY(-1px); }
.auth-btn:disabled { background: #9ca3af; cursor: not-allowed; transform: none; }

/* ── Footer note ── */
.auth-footer-note {
    text-align: center;
    font-size: 0.84rem;
    color: #9ca3af;
    margin-top: 24px;
    margin-bottom: 0;
}
.auth-footer-note a { color: #10332f; font-weight: 600; text-decoration: none; }
.auth-footer-note a:hover { text-decoration: underline; }

/* ================================================================
   OTP DIGIT BOXES  (verify page)
================================================================ */
.auth-otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 4px;
}
.auth-otp-digit {
    width: 52px; height: 60px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: #10332f;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    caret-color: transparent;
}
.auth-otp-digit:focus {
    border-color: #10332f;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16,51,47,0.08);
}
.auth-otp-digit:not(:placeholder-shown) {
    border-color: #2DD4BF;
    background: #f0fdfb;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 860px) {
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-left  { display: none; }
    .auth-right { padding: 40px 20px; min-height: 100vh; }
    .auth-card  { padding: 36px 28px; }
}

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; border-radius: 16px; }
    .auth-otp-digit { width: 44px; height: 54px; font-size: 1.3rem; }
    .auth-otp-inputs { gap: 8px; }
}
