/* ═══════════════════════════════════════════
   TechMySpa — Contact Us Page CSS
   File: public/frontend/css/contactus.css
═══════════════════════════════════════════ */

/* ── HERO SECTION ── */
.hero-section {
    background: #0c080f;
    position: relative;
    min-height: calc(100vh - 66px);
    overflow: hidden;
    margin-top: 85px;
}

/* Full-bleed image — right half, purely decorative */
.hero-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?w=900&q=85') center top / cover no-repeat;
    filter: brightness(.72) saturate(1.1);
    animation: contactHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes contactHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

/* Blend gradient: dark left bleeds over image */
.hero-img-blend {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to right, #0c080f 0%, rgba(12, 8, 15, .3) 40%, transparent 100%);
    pointer-events: none;
}

/* Top/bottom + pink radial overlay */
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(12, 8, 15, .5) 0%, transparent 20%, transparent 70%, rgba(12, 8, 15, .6) 100%),
        radial-gradient(ellipse at 80% 40%, rgba(229, 121, 173, .13) 0%, transparent 55%);
    pointer-events: none;
}

/* Big decorative "C" */
.hero-deco-c {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 420px;
    font-weight: 700;
    font-style: italic;
    color: rgba(229, 121, 173, .04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Pink vertical accent line */
.hero-vline {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #e579ad 40%, transparent);
    opacity: .5;
}

/* Pulsing rings */
.hero-rings {
    position: absolute;
    bottom: -120px;
    left: -120px;
    pointer-events: none;
    z-index: 1;
}

.hr {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(229, 121, 173, .07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hr1 {
    width: 280px;
    height: 280px;
    animation: ringPulse 4s ease-in-out infinite;
}

.hr2 {
    width: 460px;
    height: 460px;
    animation: ringPulse 4s ease-in-out .8s infinite;
}

.hr3 {
    width: 640px;
    height: 640px;
    animation: ringPulse 4s ease-in-out 1.6s infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: .4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: .9;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Hero grid: 2 columns inside container-xxl */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 66px);
    position: relative;
    z-index: 2;
}

/* LEFT content */
.hero-left-content {
    display: flex;
    align-items: center;
    padding: 72px 48px 72px 0;
    position: relative;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Eyebrow tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(229, 121, 173, .3);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #e579ad;
    margin-bottom: 24px;
    opacity: 0;
    animation: contactFadeUp .7s ease .2s forwards;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e579ad;
    animation: dotBlink 2s infinite;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* Main heading */
.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 5.2vw, 88px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0;
    animation: contactFadeUp .8s ease .35s forwards;
}

.hero-h1 strong {
    font-weight: 700;
    display: block;
}

.hero-h1 em {
    font-style: italic;
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px #e579ad;
    font-weight: 300;
}

/* Subtext */
.hero-p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.8;
    max-width: 370px;
    margin-bottom: 36px;
    opacity: 0;
    animation: contactFadeUp .8s ease .5s forwards;
}

/* Contact rows */
.hero-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: contactFadeUp .8s ease .65s forwards;
}

.h-citem {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s;
}

.h-citem:hover {
    background: rgba(229, 121, 173, .1);
    border-color: rgba(229, 121, 173, .28);
    transform: translateX(6px);
}

.h-cic {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(229, 121, 173, .13);
    color: #e579ad;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, color .25s;
}

.h-citem:hover .h-cic {
    background: #e579ad;
    color: #fff;
}

.h-clbl {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
}

.h-cval {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
}

/* Social links strip */
.hero-soc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    opacity: 0;
    animation: contactFadeUp .8s ease .8s forwards;
}

.h-soc-lbl {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .22);
    margin-right: 4px;
}

.h-slink {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}

.h-slink:hover {
    background: #e579ad;
    border-color: #e579ad;
    color: #fff;
}

/* RIGHT content — stat cards floating over image */
.hero-right-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 24px 48px;
}

.hero-stats-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.hstat {
    flex: 1;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
}

.hstat:nth-child(1) {
    animation: statFloat 5s ease-in-out infinite;
}

.hstat:nth-child(2) {
    animation: statFloat 5s ease-in-out 1.2s infinite;
}

.hstat:nth-child(3) {
    animation: statFloat 5s ease-in-out 2.4s infinite;
}

@keyframes statFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

.hstat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hstat-n span {
    color: #e579ad;
}

.hstat-l {
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
}

/* Vertical "CONTACT US" label */
.hero-vert-lbl {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .18);
}

/* Scroll indicator */
.hero-scroll-ind {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .22);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.scroll-ln {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {

    0%,
    100% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50% {
        transform: scaleY(.5);
        transform-origin: top;
    }
}


/* ── CONTACT SECTION ── */
.contact-sec {
    padding: 0px 0 80px;
}

.sec-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #e579ad;
    margin-bottom: 12px;
}

.sec-eye::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #e579ad;
    border-radius: 2px;
}

.sec-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #160f1c;
    margin-bottom: 12px;
}

.sec-h2 em {
    font-style: italic;
    color: #e579ad;
}

.sec-p {
    font-size: 16px;
    color: #7a6882;
    line-height: 1.8;
    max-width: 400px;
}

/* Info cards */
.icard {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1.5px solid #ede3f2;
    border-radius: 18px;
    padding: 18px 20px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.icard:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(229, 121, 173, .09);
    border-color: rgba(229, 121, 173, .3);
}

.icard-ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    background: #fdf0f7;
    border: 1px solid #f2c6e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e579ad;
    font-size: 19px;
    transition: background .25s, color .25s;
}

.icard:hover .icard-ic {
    background: #e579ad;
    color: #fff;
}

.icard-l {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #7a6882;
    margin-bottom: 3px;
}

.icard-v {
    font-size: 16px;
    font-weight: 600;
    color: #160f1c;
}

.icard-s {
    font-size: 14px;
    color: #7a6882;
    margin-top: 2px;
}

/* Hours card */
.hours-card {
    background: #160f1c;
    border-radius: 20px;
    padding: 26px 24px;
}

.hours-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hours-top h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px;
}

.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(22, 163, 74, .14);
    border: 1px solid rgba(22, 163, 74, .3);
    border-radius: 999px;
    padding: 3px 11px;
    font-size: 13px;
    font-weight: 700;
    color: #4ade80;
}

.open-badge .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: dotBlink 2s infinite;
}

.hrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.hrow:last-child {
    border-bottom: none;
}

.hday {
    font-size: 15px;
    color: rgba(255, 255, 255, .42);
}

.htime {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
}

.hrow.today .hday,
.hrow.today .htime {
    color: #e579ad;
    font-weight: 600;
}

/* Form card */
.form-card {
    background: #fff;
    border: 1.5px solid #ede3f2;
    border-radius: 26px;
    padding: 44px 42px;
    position: sticky;
    top: 82px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(229, 121, 173, .07);
}

.form-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 121, 173, .07) 0%, transparent 70%);
}

.fh3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #160f1c;
    letter-spacing: -.4px;
    margin-bottom: 4px;
}

.fh3 span {
    color: #e579ad;
    font-style: italic;
}

.fsub {
    font-size: 15px;
    color: #7a6882;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Topic pills */
.tpills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.tpill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid #ede3f2;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 13px;
    font-weight: 500;
    color: #7a6882;
    cursor: pointer;
    background: #fefaf6;
    font-family: 'Outfit', sans-serif;
    transition: all .2s;
}

.tpill.active {
    background: #fdf0f7;
    border-color: #e579ad;
    color: #e579ad;
    font-weight: 600;
}

.tpill:hover:not(.active) {
    border-color: #f2c6e0;
}

/* Form inputs */
.flbl {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #7a6882;
    margin-bottom: 7px;
}

.finput {
    width: 100%;
    background: #fefaf6;
    border: 1.5px solid #ede3f2;
    border-radius: 13px;
    padding: 12px 15px;
    font-size: 13.5px;
    color: #160f1c;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
    appearance: none;
}

.finput::placeholder {
    color: #c0b5c9;
}

.finput:focus {
    border-color: #e579ad;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(229, 121, 173, .1);
}

textarea.finput {
    resize: vertical;
    min-height: 110px;
}

select.finput {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c0b5c9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

/* Time buttons */
.time-btns {
    display: flex;
    gap: 7px;
}

.tbtn {
    flex: 1;
    padding: 10px 6px;
    text-align: center;
    background: #fefaf6;
    border: 1.5px solid #ede3f2;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 600;
    color: #7a6882;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all .2s;
}

.tbtn.active {
    background: #fdf0f7;
    border-color: #e579ad;
    color: #e579ad;
}

.tbtn:hover:not(.active) {
    border-color: #f2c6e0;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e579ad, #a8407a);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 8px 26px rgba(229, 121, 173, .35);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, transparent 50%);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(229, 121, 173, .45);
}

.btn-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

/* Privacy note */
.priv-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #7a6882;
    margin-top: 12px;
}

.priv-note i {
    color: #e579ad;
    font-size: 12px;
}

/* Form success state */
.form-success {
    display: none;
    padding: 48px 20px;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: contactFadeUp .6s ease;
}

.sc-ico {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #dcfce7, #a7f3d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #16a34a;
    animation: scPop .6s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes scPop {
    from {
        transform: scale(0) rotate(-20deg)
    }

    to {
        transform: scale(1) rotate(0)
    }
}

.form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #160f1c;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 14px;
    color: #7a6882;
    line-height: 1.7;
}


/* ── CTA BANNER ── */
.cta-banner {
    background: #0c080f;
    border-radius: 26px;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.cta-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(229, 121, 173, .16) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(168, 64, 122, .12) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 85%, rgba(229, 121, 173, .08) 0%, transparent 40%);
}

.cta-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image:
        linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 56px 56px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-eye {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #e579ad;
    margin-bottom: 10px;
}

.cta-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cta-h2 em {
    font-style: italic;
    color: #e579ad;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.75;
    max-width: 440px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #e579ad, #a8407a);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(229, 121, 173, .4);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(229, 121, 173, .5);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .78);
    border-radius: 999px;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

.cta-soc {
    display: flex;
    gap: 9px;
}

.csoc {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    text-decoration: none;
    transition: all .2s;
}

.csoc:hover {
    background: #e579ad;
    border-color: #e579ad;
    color: #fff;
    transform: translateY(-3px);
}


/* ── SCROLL REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

.rv.d1 {
    transition-delay: .1s;
}

.rv.d2 {
    transition-delay: .2s;
}

.rv.d3 {
    transition-delay: .3s;
}

.rv.d4 {
    transition-delay: .4s;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-img-bg {
        width: 100%;
    }

    .hero-img-blend {
        width: 100%;
        background: linear-gradient(to bottom, #0c080f 0%, rgba(12, 8, 15, .5) 60%, rgba(12, 8, 15, .7) 100%);
    }

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

    .hero-left-content {
        padding: 64px 0 40px;
    }

    .hero-deco-c {
        font-size: 240px;
        left: -10px;
    }

    .hero-right-content {
        padding: 0 0 56px;
    }

    .form-card {
        position: static;
    }

    .cta-banner {
        padding: 44px 36px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-left-content {
        padding: 52px 0 36px;
    }

    .hero-deco-c {
        display: none;
    }

    .hero-rings {
        display: none;
    }

    .hero-h1 {
        font-size: 50px;
    }

    .contact-sec {
        padding: 60px 0;
    }

    .form-card {
        padding: 28px 20px;
    }

    .cta-banner {
        padding: 36px 24px;
        border-radius: 20px;
        margin-bottom: 56px;
    }

    .cta-h2 {
        font-size: 30px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .btn-cta,
    .btn-ghost {
        justify-content: center;
    }

    .time-btns {
        flex-wrap: wrap;
    }

    .tbtn {
        min-width: calc(50% - 4px);
        flex: none;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-h1 {
        font-size: 44px;
    }

    .hero-stats-row {
        gap: 8px;
    }

    .hstat {
        padding: 12px 10px;
    }

    .hstat-n {
        font-size: 22px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero-left-content {
        padding: 40px 0 30px;
    }

    .hero-h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }
}
