/* =====================================================================
   ALPHABENI FRONTEND THEME v3
   Outfit | Ice White #f4feff | Powder Blue #a9c0e0 | Royal Blue #0e2f76
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Dancing+Script:wght@600;700&display=swap');

:root {
    --ice:    #f4feff;
    --powder: #a9c0e0;
    --royal:  #0e2f76;
    --royal2: #14367f;
    --text:   #1b2942;
    --muted:  #6b7a96;
    --border: #dce6f4;
    --white:  #ffffff;
    --radius: 18px;
    --radius-sm: 10px;
    --shadow: 0 12px 40px -20px rgba(14,47,118,.28);
    --shadow-sm: 0 4px 20px -12px rgba(14,47,118,.32);
    --grad: linear-gradient(140deg, #14367f 0%, #0e2f76 100%);
    --base-color: var(--royal);
}

/* ---- global typography ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text);
    background: var(--ice);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--royal);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.15;
}
p { color: var(--muted); line-height: 1.7; }
a { color: var(--royal); transition: color .2s; }
a:hover { color: var(--royal2); }
::selection { background: var(--powder); color: var(--royal); }

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: var(--ice); }
body::-webkit-scrollbar-thumb { background: var(--powder); border-radius: 20px; border: 2px solid var(--ice); }

/* =====================================================================
   PRELOADER
   ===================================================================== */
.preloader { background: var(--ice); }
.preloader-dotline .dot { background: var(--royal); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn, .btn--base, .cmn--btn, button.btn {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: .01em;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn--base, .bg--base, .cookies-btn {
    background: var(--grad) !important;
    border-color: var(--royal) !important;
    color: #fff !important;
    box-shadow: var(--shadow-sm);
}
.btn--base:hover, .cookies-btn:hover {
    filter: brightness(1.1);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -14px rgba(14,47,118,.55);
}
.btn-outline--base { border: 1.5px solid var(--royal) !important; color: var(--royal) !important; background: transparent !important; border-radius: 50px; }
.btn-outline--base:hover { background: var(--royal) !important; color: #fff !important; }
.text--base, .text-base { color: var(--royal) !important; }
.bg--base { background: var(--grad) !important; }

/* =====================================================================
   HEADER / NAVBAR
   ===================================================================== */
.header { background: transparent; position: relative; z-index: 100; }

.header__top {
    background: var(--royal);
    padding: 8px 0;
}
.header__top a,
.header-info-list a,
.header-user-btn {
    color: rgba(255,255,255,.85) !important;
    font-size: .85rem;
    font-weight: 500;
}
.header__top a:hover,
.header-user-btn:hover { color: #fff !important; }
.header-info-list { display: flex; align-items: center; gap: 20px; list-style: none; padding: 0; margin: 0; }
.header-info-list li { display: flex; align-items: center; gap: 6px; }
.header-info-list .las, .header-info-list .fas { color: var(--powder); }

.header-user-btn {
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    padding: 5px 16px;
    transition: all .2s;
}
.header-user-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); }

.header__bottom {
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px -18px rgba(14,47,118,.45);
    padding: 10px 0;
}
.header.active .header__bottom,
.header-fixed .header__bottom { background: rgba(255,255,255,.98); }

.site-logo.site-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800;
    color: var(--royal);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.site-logo.site-title img { max-height: 46px; width: auto; }

/* nav links */
.navbar-nav.main-menu > li > a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
    color: var(--text) !important;
    font-size: .92rem;
    letter-spacing: .01em;
    padding: 10px 14px;
    position: relative;
    transition: color .2s;
}
.navbar-nav.main-menu > li > a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--royal);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.navbar-nav.main-menu > li > a:hover { color: var(--royal) !important; }
.navbar-nav.main-menu > li > a.active { color: var(--royal) !important; }
.navbar-nav.main-menu > li > a:hover::after,
.navbar-nav.main-menu > li > a.active::after { transform: scaleX(1); }

.nav-right .btn--base { padding: 9px 22px; font-size: .88rem; }

.navbar-toggler {
    border: 1.5px solid var(--royal) !important;
    border-radius: 50% !important;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; color: var(--royal);
    box-shadow: var(--shadow-sm);
}
.navbar-toggler__icon { color: var(--royal); display: inline-flex; font-size: 1.2rem; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 1199px) {
    .collapse.navbar-collapse {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 10px;
        box-shadow: var(--shadow);
    }
    .navbar-nav.main-menu > li > a::after { display: none; }
}

/* =====================================================================
   HERO / BANNER — staggered gallery + availability form
   ===================================================================== */
.hero-redesign {
    background: linear-gradient(170deg, var(--ice) 0%, #e8f4ff 100%);
    padding: clamp(24px, 3vw, 44px) 0 clamp(40px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}
.hero-redesign::before {
    content: "";
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(169,192,224,.45) 0%, transparent 70%);
    top: -200px; left: -200px;
    border-radius: 50%;
}
.hero-redesign::after {
    content: "";
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,47,118,.12) 0%, transparent 70%);
    bottom: -150px; right: -100px;
    border-radius: 50%;
}
.hero-redesign .container { position: relative; z-index: 2; }

/* decorative badge above the hero title */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 auto clamp(16px, 2vw, 24px);
    padding: 9px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,162,75,.45);
    box-shadow: 0 10px 30px -16px rgba(14,47,118,.4);
    color: var(--royal);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-badge i { color: var(--gold, #c9a24b); font-size: 1rem; }
.hero-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold, #c9a24b); box-shadow: 0 0 0 4px rgba(201,162,75,.18); }

.hero-redesign__head { text-align: center; }

.hero-redesign__title {
    font-size: clamp(1.9rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--royal);
    line-height: 1.08;
    margin-bottom: 14px;
    text-align: center;
}

/* elegant signature treatment for the hero headline */
.hero-redesign__title--script {
    font-family: 'Great Vibes', 'Dancing Script', cursive !important;
    font-weight: 400;
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1.3;
    letter-spacing: .01em;
    background: linear-gradient(120deg, var(--royal) 0%, #1f4fb0 55%, var(--gold, #c9a24b) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--royal);
    padding: .16em .14em .12em;
    margin-bottom: 6px;
}

/* looping typewriter treatment (overlays a hidden full-text sizer so the
   layout below never shifts as characters are typed / deleted) */
.hero-typewriter {
    position: relative;
    padding: 0;
    display: block;
}
.hero-tw__ghost {
    display: inline-block;
    visibility: hidden;
    padding: .16em .14em .12em;
}
.hero-tw__live {
    position: absolute;
    left: 0; right: 0; top: 0;
    text-align: center;
    white-space: normal;
}
.hero-tw__text {
    background: linear-gradient(120deg, var(--royal) 0%, #1f4fb0 55%, var(--gold, #c9a24b) 130%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--royal);
    padding: .16em .14em .12em;
}
/* caret rides at the end of the typed text, always on the current line */
.hero-tw__text::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: .78em;
    margin-left: .02em;
    border-radius: 3px;
    background: var(--gold, #c9a24b);
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: var(--gold, #c9a24b);
    vertical-align: -.06em;
    animation: heroCaretBlink .9s steps(1) infinite;
}
@keyframes heroCaretBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-tw__text::after { animation: none; }
}
.hero-redesign__sub {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: clamp(18px, 2.4vw, 28px);
}

/* gallery tiles */
.hero-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 22px);
    margin: clamp(28px, 3.5vw, 44px) 0 clamp(30px, 4vw, 48px);
}
.hero-gallery__tile {
    margin: 0; flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--powder);
    transition: transform .35s ease, box-shadow .35s ease;
}
.hero-gallery__tile img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.hero-gallery__tile:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -24px rgba(14,47,118,.5); }

/* tile size scale: xs  sm  lg  sm  xs */
.hero-gallery .tile--xs { width: clamp(90px, 9vw, 140px);  height: clamp(110px, 12vw, 170px); }
.hero-gallery .tile--sm { width: clamp(130px, 14vw, 200px); height: clamp(160px, 18vw, 260px); }
.hero-gallery .tile--lg { width: clamp(190px, 22vw, 320px); height: clamp(240px, 26vw, 420px); }

@media (max-width: 767px) {
    .hero-gallery { overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
    .hero-gallery::-webkit-scrollbar { display: none; }
    .hero-gallery .tile--xs { display: none; }
    .hero-gallery .tile--sm { width: 130px; height: 160px; }
    .hero-gallery .tile--lg { width: 190px; height: 230px; }
}

/* search form bar */
.hero-redesign .filter-wrapper {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 12px 16px;
    box-shadow: var(--shadow);
}
.hero-redesign .filter-wrapper .form--control {
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 10px 44px 10px 16px;
    font-size: .9rem;
}
.hero-redesign .custom-icon-field { position: relative; }
.hero-redesign .custom-icon-field .form--control { padding-left: 16px; padding-right: 44px; }
.hero-redesign .custom-icon-field > i {
    position: absolute; right: 14px; left: auto; top: 50%;
    width: auto; padding: 0;
    transform: translateY(-50%);
    color: var(--royal); font-size: 1.15rem;
    pointer-events: none;
}
.hero-redesign .btn--base { border-radius: 50px; padding: 11px 20px; width: 100%; }
@media (max-width: 575px) {
    .hero-redesign .filter-wrapper { border-radius: var(--radius); }
}

/* =====================================================================
   BREADCRUMB
   ===================================================================== */
.breadcrumb-section, .inner-hero {
    background: var(--grad);
    padding: 60px 0;
}
.breadcrumb-section h2, .breadcrumb-section h3,
.breadcrumb-section .page-title { color: #fff !important; }
.breadcrumb li, .breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb .active { color: #fff; }

/* =====================================================================
   SECTION HEADERS
   ===================================================================== */
section { background: transparent; }
.section { padding: clamp(50px, 7vw, 90px) 0; }

.section-header { margin-bottom: clamp(28px, 4vw, 48px); }
.section-header .section-title,
.section-title {
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: var(--royal);
}
.section-header .subtitle,
.section-subtitle {
    color: var(--royal);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    font-size: .75rem;
    margin-bottom: 10px;
    display: block;
}
.section-header p { color: var(--muted); max-width: 600px; }
.section-bg, .bg--light { background: rgba(169,192,224,.1) !important; }

/* =====================================================================
   ABOUT SECTION — 2x2 image grid
   ===================================================================== */
.about-thumb-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    height: 420px;
}
.about-thumb {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.about-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-thumb:first-child { border-radius: 16px 60px 16px 16px; }
.about-thumb:last-child  { border-radius: 16px 16px 60px 16px; }

/* =====================================================================
   ROOM CARDS
   ===================================================================== */
.room-card, .custom--card.room-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card .card-image { overflow: hidden; height: 200px; }
.room-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .card-image img { transform: scale(1.08); }
.room-card .card-body { padding: 18px 20px; }
.room-card .card-title { color: var(--royal); font-weight: 700; }
.room-card .price { color: var(--royal); font-weight: 800; font-size: 1.1rem; }

/* =====================================================================
   SERVICE SECTION (dark bg)
   ===================================================================== */
.service-section { background: var(--grad); }
.service-section .section-title { color: #fff !important; }
.service-section p { color: rgba(255,255,255,.78); }

.service-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    transition: background .25s, transform .25s;
    box-shadow: none;
}
.service-card:hover { background: rgba(255,255,255,.15); transform: translateY(-5px); }
.service-card .icon { color: var(--powder); font-size: 2.2rem; margin-bottom: 12px; }
.service-card .icon .las, .service-card .icon .la { font-size: 2.2rem; }
.service-card .title { color: #fff !important; font-weight: 600; margin: 0; }

.video-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-icon { background: rgba(169,192,224,.9); color: var(--royal); border-radius: 50%; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.video-icon:hover { background: var(--powder); }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}
.testimonial-card .client-info img { border: 3px solid var(--powder); border-radius: 50%; }

/* =====================================================================
   FAQ
   ===================================================================== */
.accordion-button:not(.collapsed) { color: var(--royal); background: rgba(14,47,118,.06); }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(169,192,224,.4); }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 8px; overflow: hidden; }

/* =====================================================================
   BLOG CARDS
   ===================================================================== */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .28s, box-shadow .28s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .thumb { overflow: hidden; height: 200px; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .content { padding: 18px 20px; }

/* =====================================================================
   SUBSCRIBE SECTION
   ===================================================================== */
.subscribe-section { background: var(--grad); padding: clamp(50px, 6vw, 80px) 0; }
.subscribe-section h2 { color: #fff; }
.subscribe-section p { color: rgba(255,255,255,.8); }
.subscribe-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.subscribe-form input {
    flex: 1; border-radius: 50px;
    padding: 13px 22px;
    border: none; outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
}
.subscribe-form .btn { border-radius: 50px; white-space: nowrap; padding: 13px 28px; background: var(--powder) !important; color: var(--royal) !important; font-weight: 700; border: none !important; }
.subscribe-form .btn:hover { background: #fff !important; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer, .footer-section {
    background: var(--grad);
    color: rgba(255,255,255,.82);
    padding-top: clamp(48px, 6vw, 80px);
}
.footer-widget__title, footer h2, footer h3, footer h4, footer h5 {
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.footer-widget p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.7; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a { color: rgba(255,255,255,.72); font-size: .9rem; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-widget ul li a:hover { color: #fff; padding-left: 4px; }
.footer-widget ul li a .las { color: var(--powder); font-size: .85rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }
.footer-logo img { max-height: 48px; filter: brightness(2); }

.social-icons, .footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.social-icons a, .footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1);
    color: #fff !important;
    font-size: .9rem;
    transition: background .2s, transform .2s;
}
.social-icons a:hover, .footer-social a:hover { background: var(--powder); color: var(--royal) !important; transform: translateY(-3px); }

/* =====================================================================
   CARDS / GENERIC SURFACES
   ===================================================================== */
.card, .custom--card {
    background: var(--white);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
}
.card-header {
    background: var(--ice) !important;
    border-bottom: 1px solid var(--border) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: var(--royal);
    padding: 14px 20px;
    border-radius: var(--radius) var(--radius) 0 0 !important;
}

/* =====================================================================
   FORMS (frontend)
   ===================================================================== */
.form--control, .form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-family: 'Outfit', sans-serif !important;
    font-size: .92rem;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.form--control:focus, .form-control:focus, .form-select:focus {
    border-color: var(--powder);
    box-shadow: 0 0 0 4px rgba(169,192,224,.3);
    background: #fff;
}
label, .form-label { color: var(--text); font-weight: 600; }

/* =====================================================================
   TABLES (user area)
   ===================================================================== */
.table thead th {
    background: var(--ice);
    color: var(--royal);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-color: var(--border);
}
.table td, .table th { border-color: var(--border); vertical-align: middle; }
.table-hover tbody tr:hover { background: rgba(169,192,224,.12); }

/* =====================================================================
   PAGINATION
   ===================================================================== */
.pagination .page-link { color: var(--royal); border-color: var(--border); border-radius: 8px; margin: 0 2px; }
.pagination .page-item.active .page-link { background: var(--royal); border-color: var(--royal); color: #fff; }
.pagination .page-link:hover { background: var(--ice); }

/* =====================================================================
   BADGES
   ===================================================================== */
.badge { border-radius: 50px; font-weight: 600; }
.badge--primary, .badge--base { background: rgba(14,47,118,.1) !important; color: var(--royal) !important; }
.badge--success { background: rgba(29,171,98,.12) !important; color: #1dab62 !important; }
.badge--warning { background: rgba(245,158,11,.12) !important; color: #b45309 !important; }
.badge--danger  { background: rgba(229,57,53,.12)  !important; color: #c62828  !important; }

/* =====================================================================
   DASHBOARD SIDENAV (user area)
   ===================================================================== */
.sidebar, .user-sidebar, .dashboard-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* =====================================================================
   COOKIE CARD
   ===================================================================== */
.cookies-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.cookies-card__icon { background: rgba(14,47,118,.08); color: var(--royal); }

/* =====================================================================
   SCROLL-TO-TOP
   ===================================================================== */
.progress-wrap { box-shadow: var(--shadow-sm); }
.progress-wrap::after { color: var(--royal); }
.progress-circle path { stroke: var(--royal); }

/* =====================================================================
   WHATSAPP FLOAT
   ===================================================================== */
.whatsapp-float { box-shadow: var(--shadow); }

/* =====================================================================
   AUTH PAGES (frontend split)
   ===================================================================== */
.auth-shell { min-height: 100vh; }
.auth-split { display: flex; min-height: 100vh; background: var(--ice); }

.auth-split__brand {
    flex: 0 0 46%; max-width: 46%;
    position: relative; overflow: hidden;
    background: var(--grad);
}
.auth-split__brand::after {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--auth-bg);
    background-size: cover; background-position: center;
    opacity: .18; z-index: 0;
}
.auth-split__brand-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(170deg, rgba(10,36,86,.6) 0%, rgba(14,47,118,.88) 100%);
    z-index: 1;
}
.auth-split__brand-inner {
    position: relative; z-index: 2;
    height: 100%; min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: clamp(36px, 5vw, 64px);
}
.auth-brand-logo img { max-height: 52px; }
.auth-brand-copy { margin: auto 0; }
.auth-brand-copy__title { color: #fff !important; font-size: clamp(1.8rem,3.2vw,3rem); font-weight: 800; margin-bottom: 14px; }
.auth-brand-copy__text { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 26px; }
.auth-brand-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.auth-brand-points li { display: flex; align-items: center; gap: 10px; color: #e8efff; font-weight: 500; }
.auth-brand-points li .las { color: var(--powder); font-size: 1.15rem; }
.auth-brand-back { color: rgba(255,255,255,.7) !important; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; }
.auth-brand-back:hover { color: #fff !important; }

.auth-split__main { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(28px,5vw,60px) clamp(20px,4vw,56px); }
.auth-split__main-inner { width: 100%; max-width: 480px; }
.auth-mobile-logo { display: block; text-align: center; margin-bottom: 28px; }
.auth-mobile-logo img { max-height: 48px; }

.auth-form__eyebrow {
    display: inline-block;
    text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700;
    color: var(--royal); background: rgba(14,47,118,.08);
    padding: 5px 12px; border-radius: 50px; margin-bottom: 14px;
}
.auth-form__title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--royal); margin-bottom: 6px; }
.auth-form__subtitle { color: var(--muted); margin: 0 0 22px; }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form .custom-icon-field { position: relative; }
.auth-form .custom-icon-field .form--control { padding-left: 46px; }
.auth-form .custom-icon-field > .las,
.auth-form .custom-icon-field > .fas {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: var(--royal); font-size: 1.05rem;
}
.auth-form .input-eye { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); cursor: pointer; color: var(--muted); }
.auth-form .btn--base { padding: 13px; font-size: 1rem; }
.auth-switch { text-align: center; margin-top: 24px; color: var(--muted); }
.auth-switch a { color: var(--royal); font-weight: 700; }

.social-auth { margin-top: 22px; }
.auth-devide { position: relative; text-align: center; margin: 22px 0; }
.auth-devide::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border); }
.auth-devide span { position: relative; background: var(--white); padding: 0 16px; color: var(--muted); font-size: .85rem; font-weight: 600; }
.social-auth-list { display: flex; justify-content: center; gap: 12px; }
.social-login-btn {
    width: 52px; height: 52px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border); background: #fff; color: var(--royal) !important;
    font-size: 1.1rem; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.social-login-btn:hover { transform: translateY(-3px); border-color: var(--powder); box-shadow: var(--shadow-sm); }

@media (max-width: 991px) {
    .auth-split { flex-direction: column; }
    .auth-split__brand { display: none; }
    .auth-split__main { min-height: 100vh; }
}
