/* ============================================================
   RASHMIRA BASE STYLES
   These are global styles Elementor builds ON TOP of.
   Do NOT put page layouts here — Elementor handles those.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--rashmira-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--rashmira-text);
    background: var(--rashmira-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--rashmira-teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rashmira-navy); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
input, textarea, select { outline: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--rashmira-cream); }
::-webkit-scrollbar-thumb { background: var(--rashmira-teal); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--rashmira-font-head);
    color: var(--rashmira-navy);
    line-height: 1.2;
    font-weight: 400;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-family: var(--rashmira-font-body); font-weight: 700; }
h6 { font-size: 0.85rem; font-family: var(--rashmira-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
p { color: var(--rashmira-text-mid); margin-bottom: 1em; line-height: 1.8; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--rashmira-text); }

/* ── CONTAINER ── */
.rsh-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}
@media (max-width: 768px) { .rsh-container { padding-left: 20px; padding-right: 20px; } }

/* ── BUTTONS ── */
.rsh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--rashmira-font-body);
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
}
.rsh-btn--primary {
    background: var(--rashmira-teal);
    color: #fff;
    border-color: var(--rashmira-teal);
    box-shadow: 0 8px 28px rgba(45,191,191,0.35);
}
.rsh-btn--primary:hover {
    background: var(--rashmira-navy);
    border-color: var(--rashmira-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(26,47,90,0.25);
}
.rsh-btn--navy {
    background: var(--rashmira-navy);
    color: #fff;
    border-color: var(--rashmira-navy);
}
.rsh-btn--navy:hover {
    background: var(--rashmira-teal);
    border-color: var(--rashmira-teal);
    color: #fff;
    transform: translateY(-2px);
}
.rsh-btn--outline {
    background: transparent;
    color: var(--rashmira-teal);
    border-color: var(--rashmira-teal);
}
.rsh-btn--outline:hover {
    background: var(--rashmira-teal);
    color: #fff;
    transform: translateY(-2px);
}
.rsh-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.rsh-btn--outline-white:hover {
    border-color: var(--rashmira-teal);
    background: rgba(45,191,191,0.15);
    color: #fff;
}
.rsh-btn--white {
    background: #fff;
    color: var(--rashmira-teal);
    border-color: #fff;
}
.rsh-btn--white:hover {
    background: var(--rashmira-navy);
    border-color: var(--rashmira-navy);
    color: #fff;
    transform: translateY(-2px);
}
.rsh-btn--gold {
    background: var(--rashmira-gold);
    color: var(--rashmira-navy);
    border-color: var(--rashmira-gold);
}
.rsh-btn--sm  { padding: 10px 22px; font-size: 0.82rem; }
.rsh-btn--lg  { padding: 18px 44px; font-size: 1rem; }
.rsh-btn--full { width: 100%; display: flex; }

/* ── BADGES ── */
.rsh-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--rashmira-font-body);
}
.rsh-badge--teal    { background: rgba(45,191,191,0.12); color: var(--rashmira-teal); }
.rsh-badge--navy    { background: var(--rashmira-navy); color: #fff; }
.rsh-badge--gold    { background: rgba(201,168,76,0.15); color: var(--rashmira-gold); }
.rsh-badge--outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* ── FORMS ── */
.rsh-form-group { margin-bottom: 18px; }
.rsh-form-label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; color: var(--rashmira-navy); margin-bottom: 6px; }
.rsh-form-control {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--rashmira-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: var(--rashmira-font-body);
}
.rsh-form-control:focus { border-color: var(--rashmira-teal); box-shadow: 0 0 0 3px rgba(45,191,191,0.12); }
.rsh-form-control::placeholder { color: #b0bec5; }
textarea.rsh-form-control { resize: vertical; min-height: 120px; }

/* ── SECTION HELPERS ── */
.rsh-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rashmira-teal);
    margin-bottom: 14px;
}
.rsh-section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    flex-shrink: 0;
}
.rsh-section-tag--white { color: #4dd9d9; }

/* ── BREADCRUMBS ── */
.rashmira-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.rashmira-breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.rashmira-breadcrumbs li::after { content: '/'; opacity: 0.4; }
.rashmira-breadcrumbs li:last-child::after { display: none; }
.rashmira-breadcrumbs a { color: rgba(255,255,255,0.7); }
.rashmira-breadcrumbs a:hover { color: var(--rashmira-teal-light); }

/* ── TOPBAR ── */
.rsh-topbar {
    background: #0a1728;
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    padding: 9px 0;
    font-family: var(--rashmira-font-body);
}
.rsh-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.rsh-topbar__left, .rsh-topbar__right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rsh-topbar__link { color: #4dd9d9; text-decoration: none; transition: color 0.2s; }
.rsh-topbar__link:hover { color: #fff; }

/* ── HEADER ── */
.rsh-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(45,191,191,0.12);
    transition: box-shadow 0.3s, transform 0.3s;
    font-family: var(--rashmira-font-body);
}
.rsh-header.is-scrolled { box-shadow: 0 4px 20px rgba(26,47,90,0.1); }
.rsh-header.is-hidden   { transform: translateY(-100%); }
.rsh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

/* Logo */
.rsh-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.rsh-logo svg { flex-shrink: 0; }
.rsh-logo__text { line-height: 1.2; }
.rsh-logo__name { display: block; font-family: var(--rashmira-font-head); font-size: 1.3rem; font-weight: 700; color: var(--rashmira-navy); }
.rsh-logo__sub  { display: block; font-size: 0.6rem; font-weight: 600; color: var(--rashmira-teal); letter-spacing: 0.14em; text-transform: uppercase; }

/* Nav */
.rsh-nav { flex: 1; }
.rsh-nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
}
.rsh-nav__menu > li { position: relative; }
.rsh-nav__menu > li > a {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rashmira-text-mid);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.rsh-nav__menu > li > a:hover,
.rsh-nav__menu > li.current-menu-item > a { color: var(--rashmira-navy); background: var(--rashmira-teal-pale); }
.rsh-nav__menu > li.current-menu-item > a { color: var(--rashmira-teal); }

/* Dropdowns */
.rsh-nav__menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--rashmira-border);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(26,47,90,0.14);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 100;
}
.rsh-nav__menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.rsh-nav__menu .sub-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.86rem;
    color: var(--rashmira-text-mid);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.18s;
}
.rsh-nav__menu .sub-menu a:hover { background: var(--rashmira-teal-pale); color: var(--rashmira-teal); padding-left: 18px; }

/* Header actions */
.rsh-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.rsh-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}
.rsh-hamburger:hover { background: var(--rashmira-teal-pale); }
.rsh-hamburger span { display: block; width: 22px; height: 2px; background: var(--rashmira-navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.rsh-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rsh-hamburger.is-active span:nth-child(2) { opacity: 0; }
.rsh-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.rsh-mobile-overlay { position: fixed; inset: 0; background: rgba(13,31,60,0.6); backdrop-filter: blur(4px); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
.rsh-mobile-overlay.is-visible { opacity: 1; visibility: visible; }

/* ── MAIN CONTENT ── */
.rsh-main { min-height: 60vh; }

/* ── FOOTER ── */
.rsh-footer { background: #0d1f3c; color: rgba(255,255,255,0.6); font-family: var(--rashmira-font-body); }
.rsh-footer__body { padding: 72px 0 0; }
.rsh-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
}
.rsh-footer__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px; }
.rsh-footer__logo-name { display: block; font-family: var(--rashmira-font-head); font-size: 1.15rem; font-weight: 700; color: #fff; }
.rsh-footer__logo-sub  { display: block; font-size: 0.58rem; font-weight: 600; color: #4dd9d9; letter-spacing: 0.14em; text-transform: uppercase; }
.rsh-footer__desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.85; max-width: 300px; margin-bottom: 18px; }
.rsh-footer__contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.rsh-footer__contact a { font-size: 0.84rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.rsh-footer__contact a:hover { color: #4dd9d9; }
.rsh-social { display: flex; gap: 10px; }
.rsh-social__btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.rsh-social__btn:hover { background: var(--rashmira-teal); color: #fff; transform: translateY(-2px); }
.rsh-footer__col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 20px; font-family: var(--rashmira-font-body); }
.rsh-footer__menu { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rsh-footer__menu a { color: rgba(255,255,255,0.48); font-size: 0.87rem; text-decoration: none; transition: color 0.2s; }
.rsh-footer__menu a:hover { color: #4dd9d9; }
.rsh-footer__newsletter-desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; line-height: 1.75; }
.rsh-newsletter__row { display: flex; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.rsh-newsletter__input { flex: 1; padding: 11px 14px; background: rgba(255,255,255,0.06); border: none; color: #fff; font-size: 0.85rem; font-family: var(--rashmira-font-body); }
.rsh-newsletter__input::placeholder { color: rgba(255,255,255,0.3); }
.rsh-newsletter .rsh-btn--primary { border-radius: 0; padding: 11px 18px; }
.rsh-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.rsh-footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.rsh-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.rsh-footer__bottom-inner p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.rsh-footer__legal-menu { display: flex; gap: 20px; list-style: none; }
.rsh-footer__legal-menu a { font-size: 0.78rem; color: rgba(255,255,255,0.38); text-decoration: none; }
.rsh-footer__legal-menu a:hover { color: #4dd9d9; }

/* ── WHATSAPP & BACK-TOP ── */
.rsh-whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; background: #25D366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(37,211,102,0.45); z-index: 9000;
    text-decoration: none; transition: all 0.3s;
}
.rsh-whatsapp-btn:hover { background: #128C7E; color: #fff; transform: scale(1.1); }
.rsh-back-top {
    position: fixed; bottom: 90px; right: 24px;
    width: 44px; height: 44px; background: #fff; color: var(--rashmira-navy);
    border: 1.5px solid rgba(45,191,191,0.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; cursor: pointer; box-shadow: 0 4px 16px rgba(26,47,90,0.1);
    z-index: 8999; transition: all 0.3s;
}
.rsh-back-top:hover { background: var(--rashmira-navy); color: #fff; border-color: var(--rashmira-navy); }

/* ── 404 ── */
.rsh-404 { background: var(--rashmira-navy); min-height: 70vh; display: flex; align-items: center; }
.rsh-404__inner { text-align: center; padding: 80px 20px; }
.rsh-404__emoji { font-size: 5rem; margin-bottom: 16px; }
.rsh-404__title { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 14px; }
.rsh-404__sub { color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 32px; }
.rsh-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG / ARCHIVE ── */
.rsh-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.rsh-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.rsh-post-card { background: #fff; border: 1px solid rgba(45,191,191,0.15); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.rsh-post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,47,90,0.1); }
.rsh-post-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.rsh-post-card__body { padding: 24px; }
.rsh-post-card__meta { font-size: 0.76rem; color: var(--rashmira-text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.rsh-post-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.rsh-post-card__title a { color: var(--rashmira-navy); }
.rsh-post-card__title a:hover { color: var(--rashmira-teal); }
.rsh-single-post { padding-top: 60px; padding-bottom: 80px; }
.rsh-single-post__layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.rsh-single-post__hero img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; margin-bottom: 32px; }
.rsh-post-meta { font-size: 0.8rem; color: var(--rashmira-text-light); margin-bottom: 12px; }
.rsh-entry-content { font-size: 1rem; line-height: 1.85; color: var(--rashmira-text-mid); }
.rsh-entry-content h2, .rsh-entry-content h3 { color: var(--rashmira-navy); margin: 28px 0 12px; }
.rsh-entry-content a { color: var(--rashmira-teal); }
.rsh-entry-content ul, .rsh-entry-content ol { padding-left: 24px; margin-bottom: 1.2em; }
.rsh-entry-content blockquote { border-left: 4px solid var(--rashmira-teal); padding: 16px 24px; background: var(--rashmira-teal-pale); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; }
.rsh-pagination { margin-top: 40px; }

/* ── ELEMENTOR PAGE OVERRIDES ── */
/* Remove default margin/padding from Elementor pages */
.elementor-page .rsh-main { min-height: 0; }
.elementor-section-wrap, .e-con-inner { max-width: 100%; }

/* Ensure Elementor full-width sections work */
body.elementor-page .rsh-main,
body.rashmira-elementor-page .rsh-main { padding: 0; }

/* ── SEARCH ── */
.rsh-search-title { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--rashmira-navy); margin-bottom: 24px; }

/* ── ARCHIVE ── */
.rsh-archive-header { margin-bottom: 40px; }
.rsh-archive-header h1 { color: var(--rashmira-navy); }

/* ── SCREEN READER ── */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--rashmira-teal); outline-offset: 3px; border-radius: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .rsh-footer__grid { grid-template-columns: 1fr 1fr; }
    .rsh-blog-layout { grid-template-columns: 1fr; }
    .rsh-single-post__layout { grid-template-columns: 1fr; }
    .rsh-single-post__sidebar { display: none; }
}
@media (max-width: 768px) {
    .rsh-hamburger { display: flex; }
    .rsh-nav {
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: min(360px, 88vw);
        background: #fff;
        z-index: 9998;
        padding: 80px 24px 32px;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 40px rgba(26,47,90,0.15);
    }
    .rsh-nav.is-open { right: 0; }
    .rsh-nav__menu { flex-direction: column; align-items: stretch; gap: 4px; }
    .rsh-nav__menu > li > a { display: block; padding: 14px 16px; font-size: 1rem; }
    .rsh-nav__menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 0 16px; }
    .rsh-footer__grid { grid-template-columns: 1fr; }
    .rsh-footer__bottom-inner { flex-direction: column; text-align: center; }
    .rsh-topbar__right { display: none; }
    .rsh-header__inner { height: 68px; }
}

/* ── PRINT ── */
@media print {
    .rsh-header, .rsh-footer, .rsh-whatsapp-btn, .rsh-back-top { display: none; }
    body { color: #000; background: #fff; }
}
