/* =====================================================================
   Rundla Enterprises — Header / Footer / Auth theme
   Clean, sticky-white-header layout in the brand's teal palette,
   matched to rundlaenterprises.com (Plus Jakarta Sans + #00a2a6).
   Brand variables keep their original names; only the values changed,
   so the whole theme re-skins from this one block.
   ===================================================================== */

:root {
    --cosmo-gold: #00a2a6;        /* brand teal (primary) */
    --cosmo-gold-dark: #007e81;   /* darker teal for hovers */
    --cosmo-navy: #30373f;        /* dark slate (headings / dark bg) */
    --cosmo-navy-2: #262c33;      /* deeper slate */
    --cosmo-ink: #2b2f36;         /* body ink */
    --cosmo-muted: #616161;       /* muted text */
    --cosmo-line: #e6e3e4;        /* hairlines */
    --cosmo-bg-soft: #f6f4f5;     /* soft section background */
    --cosmo-radius: 10px;
    --cosmo-shadow: 0 6px 24px rgba(48, 55, 63, .08);
}

body {
    font-family: "Plus Jakarta Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--cosmo-ink);
}

/* ===================== TOP BAR ===================== */
.cosmo-topbar {
    background: var(--cosmo-navy);
    color: #c7cede;
    font-size: .82rem;
}

.cosmo-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
    flex-wrap: wrap;
}

.cosmo-topbar__contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cosmo-topbar__contact a {
    color: #c7cede;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
}

.cosmo-topbar__contact a:hover {
    color: var(--cosmo-gold);
}

.cosmo-topbar__contact i {
    color: var(--cosmo-gold);
}

.cosmo-topbar__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cosmo-topbar__social span {
    color: #8a93ab;
}

.cosmo-topbar__social a {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .82rem;
    transition: all .15s;
}

.cosmo-topbar__social a:hover {
    background: var(--cosmo-gold);
    color: #fff;
}

/* ===================== HEADER ===================== */
.cosmo-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid var(--cosmo-line);
    box-shadow: 0 2px 10px rgba(20, 33, 61, .05);
}

.cosmo-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 74px;
}

.cosmo-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.cosmo-logo img {
    height: 58px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    display: block;
}
@media (max-width: 575.98px) {
    .cosmo-logo img { height: 46px; }
}

.cosmo-logo__text {
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--cosmo-navy);
    letter-spacing: .2px;
}

.cosmo-logo__text small {
    display: block;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cosmo-gold);
    margin-top: 3px;
}

/* Primary nav — menu centered, auth pushed to the right */
.cosmo-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.cosmo-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.cosmo-menu a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--cosmo-ink);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: color .15s, background .15s;
}

.cosmo-menu a:hover {
    color: var(--cosmo-gold-dark);
    background: var(--cosmo-bg-soft);
}

.cosmo-menu a.is-active {
    color: var(--cosmo-gold-dark);
}

.cosmo-menu a.is-active::after {
    content: "";
    display: block;
    height: 3px;
    border-radius: 3px;
    background: var(--cosmo-gold);
    margin-top: 4px;
}

/* Auth buttons */
.cosmo-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.cosmo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}

.cosmo-btn--ghost {
    color: var(--cosmo-navy);
    border-color: var(--cosmo-line);
    background: #fff;
}

.cosmo-btn--ghost:hover {
    border-color: var(--cosmo-gold);
    color: var(--cosmo-gold-dark);
}

.cosmo-btn--gold {
    background: var(--cosmo-gold);
    color: #fff;
}

.cosmo-btn--gold:hover {
    background: var(--cosmo-gold-dark);
    color: #fff;
}

.cosmo-btn--block {
    width: 100%;
}

/* User dropdown */
.cosmo-user {
    position: relative;
}

.cosmo-user__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cosmo-bg-soft);
    border: 1px solid var(--cosmo-line);
    border-radius: 999px;
    padding: 5px 12px 5px 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--cosmo-ink);
}

.cosmo-user__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cosmo-gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem;
}

.cosmo-user__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 190px;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: var(--cosmo-radius);
    box-shadow: var(--cosmo-shadow);
    padding: 8px;
    display: none;
}

.cosmo-user__menu.open {
    display: block;
}

.cosmo-user__menu a,
.cosmo-user__menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    border: 0;
    background: none;
    border-radius: 8px;
    color: var(--cosmo-ink);
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.cosmo-user__menu a:hover,
.cosmo-user__menu button:hover {
    background: var(--cosmo-bg-soft);
    color: var(--cosmo-gold-dark);
}

.cosmo-user__name {
    padding: 6px 12px 10px;
    border-bottom: 1px solid var(--cosmo-line);
    margin-bottom: 6px;
    font-size: .82rem;
    color: var(--cosmo-muted);
}

.cosmo-user__name strong {
    display: block;
    color: var(--cosmo-ink);
    font-size: .95rem;
}

/* Hamburger */
.cosmo-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}

.cosmo-burger span {
    width: 24px;
    height: 2.5px;
    background: var(--cosmo-navy);
    border-radius: 2px;
    transition: .2s;
}

/* ===================== MOBILE ===================== */
@media (max-width: 991.98px) {
    .cosmo-topbar {
        display: none;
    }

    .cosmo-burger {
        display: flex;
    }

    .cosmo-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px 20px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
        transition: right .28s ease;
        overflow-y: auto;
        margin-left: 0;
    }

    .cosmo-nav.open {
        right: 0;
    }

    .cosmo-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        margin-bottom: 18px;
    }

    .cosmo-menu a {
        padding: 12px 10px;
        border-bottom: 1px solid var(--cosmo-line);
        border-radius: 0;
        font-size: 1rem;
    }

    .cosmo-menu a.is-active::after {
        display: none;
    }

    .cosmo-auth {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin: 0;
    }

    .cosmo-btn {
        width: 100%;
    }

    .cosmo-user {
        width: 100%;
    }

    .cosmo-user__menu {
        position: static;
        display: block;
        box-shadow: none;
        border: 0;
        padding: 0;
        margin-top: 8px;
    }

    .cosmo-nav__close {
        display: block;
        align-self: flex-end;
        background: none;
        border: 0;
        font-size: 1.8rem;
        line-height: 1;
        color: var(--cosmo-navy);
        cursor: pointer;
        margin-bottom: 8px;
    }

    .cosmo-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(20, 33, 61, .45);
        z-index: 1025;
        opacity: 0;
        visibility: hidden;
        transition: .25s;
    }

    .cosmo-backdrop.open {
        opacity: 1;
        visibility: visible;
    }
}

.cosmo-nav__close {
    display: none;
}

/* ===================== FOOTER ===================== */
.cosmo-footer {
    background: var(--cosmo-navy);
    color: #c7cede;
    padding-top: 56px;
    margin-top: 60px;
    border-top: 4px solid var(--cosmo-gold);
}

/* Footer section headings get a small gold underline accent */
.cosmo-footer h4 {
    position: relative;
    padding-bottom: 10px;
}

.cosmo-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--cosmo-gold);
}

.cosmo-footer a {
    color: #c7cede;
    text-decoration: none;
    transition: color .15s;
}

.cosmo-footer a:hover {
    color: var(--cosmo-gold);
}

.cosmo-footer__brand img {
    height: 56px;
    margin-bottom: 14px;
}

.cosmo-footer__brand .name {
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
}

.cosmo-footer__about {
    margin: 12px 0 18px;
    font-size: .92rem;
    line-height: 1.7;
    color: #9fa8be;
    max-width: 320px;
}

.cosmo-footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.cosmo-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cosmo-footer ul li {
    margin-bottom: 11px;
    font-size: .93rem;
}

.cosmo-footer__contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #9fa8be;
}

.cosmo-footer__contact i {
    color: var(--cosmo-gold);
    margin-top: 3px;
}

/* Social icons */
.cosmo-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.cosmo-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.05rem;
    transition: all .18s;
}

.cosmo-social a:hover {
    background: var(--cosmo-gold);
    color: #fff;
    transform: translateY(-2px);
}

.cosmo-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding: 20px 0;
    font-size: .87rem;
    color: #9fa8be;
}

.cosmo-footer__bottom a {
    color: #c7cede;
}

.cosmo-footer__legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ===================== AUTH PAGES ===================== */
.cosmo-auth-wrap {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cosmo-bg-soft);
    padding: 48px 16px;
}

.cosmo-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 16px;
    box-shadow: var(--cosmo-shadow);
    padding: 38px 34px;
}

.cosmo-card__head {
    text-align: center;
    margin-bottom: 26px;
}

.cosmo-card__head img {
    height: 60px;
    margin-bottom: 14px;
}

.cosmo-card__head h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cosmo-navy);
    margin: 0 0 6px;
}

.cosmo-card__head p {
    color: var(--cosmo-muted);
    font-size: .93rem;
    margin: 0;
}

.cosmo-field {
    margin-bottom: 16px;
}

.cosmo-field label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 7px;
    color: var(--cosmo-ink);
}

.cosmo-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--cosmo-line);
    border-radius: 9px;
    font-size: .95rem;
    transition: border .15s, box-shadow .15s;
}

.cosmo-field input:focus {
    outline: none;
    border-color: var(--cosmo-gold);
    box-shadow: 0 0 0 3px rgba(194, 161, 77, .15);
}

.cosmo-field .error {
    color: #dc2626;
    font-size: .82rem;
    margin-top: 6px;
}

.cosmo-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: .88rem;
}

.cosmo-form-row label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--cosmo-muted);
    font-weight: 500;
}

.cosmo-form-row a {
    color: var(--cosmo-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.cosmo-card__foot {
    text-align: center;
    margin-top: 22px;
    font-size: .92rem;
    color: var(--cosmo-muted);
}

.cosmo-card__foot a {
    color: var(--cosmo-gold-dark);
    font-weight: 700;
    text-decoration: none;
}

.cosmo-alert {
    padding: 12px 16px;
    border-radius: 9px;
    font-size: .9rem;
    margin-bottom: 18px;
}

.cosmo-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.cosmo-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===================== SIMPLE PAGES (about/contact/terms) ===================== */
.cosmo-page-hero {
    background: linear-gradient(120deg, var(--cosmo-navy), var(--cosmo-navy-2));
    color: #fff;
    padding: 56px 0;
    text-align: center;
}

.cosmo-page-hero h1 {
    font-weight: 800;
    margin: 0 0 8px;
    font-size: 2rem;
}

.cosmo-page-hero p {
    color: #c7cede;
    margin: 0;
}

.cosmo-page-hero .crumb {
    color: var(--cosmo-gold);
    font-size: .85rem;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

.cosmo-section {
    padding: 56px 0;
}

.cosmo-prose {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
    color: #374151;
}

.cosmo-prose h2 {
    color: var(--cosmo-navy);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 30px 0 12px;
}

.cosmo-prose p {
    margin-bottom: 16px;
}

/* ---- About page ---- */
.cosmo-about {
    max-width: 980px;
}

.cosmo-about-lead {
    font-size: 1.18rem;
    line-height: 1.85;
    color: var(--cosmo-ink);
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.cosmo-about-lead strong {
    color: var(--cosmo-navy);
}

.cosmo-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 44px;
}

.cosmo-about-card {
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 14px;
    padding: 30px 26px;
    box-shadow: var(--cosmo-shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cosmo-about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 161, 77, .5);
    box-shadow: 0 14px 38px rgba(20, 33, 61, .14);
}

.cosmo-about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cosmo-gold), var(--cosmo-gold-dark));
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.cosmo-about-card h3 {
    color: var(--cosmo-navy);
    font-weight: 700;
    font-size: 1.18rem;
    margin: 0 0 10px;
}

.cosmo-about-card p {
    color: var(--cosmo-muted);
    margin: 0;
    line-height: 1.7;
}

/* Gold accent under section headings inside the about body */
.cosmo-about h2 {
    position: relative;
    padding-bottom: 12px;
    margin-top: 40px;
}

.cosmo-about h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    border-radius: 3px;
    background: var(--cosmo-gold);
}

@media (max-width: 991.98px) {
    .cosmo-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .cosmo-about-grid {
        grid-template-columns: 1fr;
    }

    .cosmo-about-lead {
        font-size: 1.05rem;
    }
}

/* ---- Legal pages (terms / privacy) ---- */
.cosmo-legal {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 16px;
    box-shadow: var(--cosmo-shadow);
    padding: 48px 48px 40px;
}

.cosmo-legal__intro {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--cosmo-ink);
    padding-bottom: 26px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--cosmo-line);
}

.cosmo-legal__body {
    max-width: none;
    margin: 0;
    counter-reset: legal-section;
}

.cosmo-legal__body h2 {
    position: relative;
    font-size: 1.22rem;
    color: var(--cosmo-navy);
    margin: 32px 0 10px;
    padding-left: 16px;
}

.cosmo-legal__body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 3px;
    background: var(--cosmo-gold);
}

.cosmo-legal__body h2:first-child {
    margin-top: 6px;
}

.cosmo-legal__body a {
    color: var(--cosmo-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.cosmo-legal__body a:hover {
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .cosmo-legal {
        padding: 30px 22px 26px;
        border-radius: 14px;
    }

    .cosmo-legal__intro {
        font-size: 1rem;
    }
}

.cosmo-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 767.98px) {
    .cosmo-contact-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ---- Info panel (navy card) ---- */
.cosmo-contact-panel {
    background: linear-gradient(150deg, var(--cosmo-navy), var(--cosmo-navy-2));
    color: #fff;
    border-radius: 16px;
    padding: 40px 34px;
    box-shadow: var(--cosmo-shadow);
}

.cosmo-contact-panel h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 12px;
}

.cosmo-contact-panel__sub {
    color: #c7cede;
    font-size: .95rem;
    line-height: 1.7;
    margin: 0 0 30px;
}

.cosmo-contact-panel .item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.cosmo-contact-panel__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cosmo-gold), var(--cosmo-gold-dark));
    color: #fff;
    font-size: 1.25rem;
}

.cosmo-contact-panel .item h4 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.cosmo-contact-panel .item p {
    margin: 0;
    color: #c7cede;
    font-size: .95rem;
    word-break: break-word;
}

.cosmo-contact-panel .item a {
    color: #c7cede;
    text-decoration: none;
    transition: color .15s;
}

.cosmo-contact-panel .item a:hover {
    color: var(--cosmo-gold);
}

.cosmo-contact-panel__social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.cosmo-contact-panel__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.05rem;
    transition: background .2s, color .2s, transform .2s;
}

.cosmo-contact-panel__social a:hover {
    background: var(--cosmo-gold);
    color: var(--cosmo-navy);
    transform: translateY(-3px);
}

/* ---- Form card ---- */
.cosmo-contact-card {
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 16px;
    padding: 40px 34px;
    box-shadow: var(--cosmo-shadow);
}

.cosmo-contact-card h2 {
    color: var(--cosmo-navy);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 6px;
}

.cosmo-contact-card__sub {
    color: var(--cosmo-muted);
    font-size: .92rem;
    margin: 0 0 26px;
}

.cosmo-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 479.98px) {
    .cosmo-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.cosmo-contact-card .cosmo-btn--block i {
    margin-right: 6px;
}

.cosmo-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--cosmo-line);
    border-radius: 9px;
    font-size: .95rem;
    min-height: 130px;
    resize: vertical;
}

.cosmo-field textarea:focus {
    outline: none;
    border-color: var(--cosmo-gold);
    box-shadow: 0 0 0 3px rgba(194, 161, 77, .15);
}

/* ===================== HOME PAGE ===================== */
.cosmo-hero {
    background: linear-gradient(120deg, var(--cosmo-navy), var(--cosmo-navy-2));
    color: #fff;
    padding: 72px 0;
}

.cosmo-hero__badge {
    display: inline-block;
    background: rgba(194, 161, 77, .18);
    color: var(--cosmo-gold);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.cosmo-hero__title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
}

.cosmo-hero__title span {
    color: var(--cosmo-gold);
}

.cosmo-hero__sub {
    color: #c7cede;
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 0 28px;
}

.cosmo-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cosmo-hero__cta .cosmo-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

.cosmo-hero__cta .cosmo-btn--ghost:hover {
    border-color: var(--cosmo-gold);
    color: var(--cosmo-gold);
}

.cosmo-hero__img {
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 14px 40px rgba(0, 0, 0, .35));
}

@media (max-width: 575.98px) {
    .cosmo-hero__title {
        font-size: 2rem;
    }
}

/* Section scaffolding */
.cosmo-section--soft {
    background: var(--cosmo-bg-soft);
}

.cosmo-section__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 36px;
}

.cosmo-section__head h2 {
    font-weight: 800;
    color: var(--cosmo-navy);
    font-size: 1.9rem;
    margin: 0 0 8px;
}

.cosmo-section__head p {
    color: var(--cosmo-muted);
    margin: 0;
}

/* Features */
.cosmo-feature {
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 14px;
    padding: 30px 26px;
    height: 100%;
    transition: transform .18s, box-shadow .18s;
}

.cosmo-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--cosmo-shadow);
}

.cosmo-feature__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(194, 161, 77, .12);
    color: var(--cosmo-gold-dark);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.cosmo-feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cosmo-navy);
    margin: 0 0 8px;
}

.cosmo-feature p {
    color: var(--cosmo-muted);
    margin: 0;
    line-height: 1.6;
}

/* Category cards */
.cosmo-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 12px;
    padding: 24px 14px;
    height: 100%;
    text-decoration: none;
    transition: all .18s;
}

.cosmo-cat-card:hover {
    border-color: var(--cosmo-gold);
    transform: translateY(-3px);
    box-shadow: var(--cosmo-shadow);
}

.cosmo-cat-card__icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(194, 161, 77, .12);
    color: var(--cosmo-gold-dark);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.cosmo-cat-card__name {
    font-weight: 700;
    color: var(--cosmo-navy);
    font-size: .98rem;
}

.cosmo-cat-card__count {
    color: var(--cosmo-muted);
    font-size: .8rem;
}

/* CTA band */
.cosmo-cta {
    background: linear-gradient(120deg, var(--cosmo-gold), var(--cosmo-gold-dark));
    color: #fff;
    padding: 60px 0;
}

.cosmo-cta h2 {
    font-weight: 800;
    font-size: 1.9rem;
    margin: 0 0 10px;
}

.cosmo-cta p {
    color: rgba(255, 255, 255, .9);
    margin: 0 0 24px;
}

.cosmo-cta .cosmo-btn--gold {
    background: #fff;
    color: var(--cosmo-gold-dark);
}

.cosmo-cta .cosmo-btn--gold:hover {
    background: var(--cosmo-navy);
    color: #fff;
}

/* ===================== HOME BANNER SLIDER ===================== */
.cosmo-banner-wrap {
    background: var(--cosmo-navy);
}

.cosmo-banner__slide {
    display: block;
    position: relative;
    text-decoration: none;
}

.cosmo-banner__slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.cosmo-banner__caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(14, 24, 48, .78) 0%, rgba(14, 24, 48, .35) 55%, rgba(14, 24, 48, 0) 100%);
}

.cosmo-banner__caption .container {
    color: #fff;
}

.cosmo-banner__caption h2 {
    font-weight: 800;
    font-size: 2.4rem;
    margin: 0 0 12px;
    max-width: 640px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.cosmo-banner__caption p {
    font-size: 1.1rem;
    color: #e7ebf3;
    max-width: 560px;
    margin: 0 0 22px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}

/* Carousel controls / indicators tuned to the brand */
.cosmo-banner .carousel-control-prev,
.cosmo-banner .carousel-control-next {
    width: 6%;
}

.cosmo-banner .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 4px;
}

.cosmo-banner .carousel-indicators .active {
    background-color: var(--cosmo-gold);
}

@media (max-width: 767.98px) {
    .cosmo-banner__slide img {
        height: 240px;
    }

    .cosmo-banner__caption {
        background: linear-gradient(0deg, rgba(14, 24, 48, .85) 0%, rgba(14, 24, 48, .35) 100%);
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .cosmo-banner__caption h2 {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

    .cosmo-banner__caption p {
        font-size: .92rem;
        margin-bottom: 14px;
    }
}

/* ===================== POPULAR EXAMS (tabbed) ===================== */
.cosmo-exams {
    background: var(--cosmo-bg-soft);
}

.cosmo-exams__head h2 {
    font-weight: 800;
    color: var(--cosmo-navy);
    font-size: 1.9rem;
    margin: 0 0 6px;
}

.cosmo-exams__head p {
    color: var(--cosmo-muted);
    margin: 0 0 24px;
}

/* Tab bar (horizontal scroll) */
.cosmo-exams__tabs-wrap {
    position: relative;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 14px;
    padding: 12px 44px 12px 12px;
    margin-bottom: 26px;
}

.cosmo-exams__tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.cosmo-exams__tabs::-webkit-scrollbar {
    display: none;
}

.cosmo-exam-tab {
    flex: 0 0 auto;
    border: 1px solid var(--cosmo-line);
    background: #fff;
    color: var(--cosmo-ink);
    font-weight: 600;
    font-size: .92rem;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .15s;
}

.cosmo-exam-tab:hover {
    border-color: var(--cosmo-gold);
    color: var(--cosmo-gold-dark);
}

.cosmo-exam-tab.active {
    background: var(--cosmo-gold);
    border-color: var(--cosmo-gold);
    color: #fff;
}

.cosmo-exams__scroll {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--cosmo-line);
    background: #fff;
    color: var(--cosmo-navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: -8px 0 14px rgba(255, 255, 255, .9);
}

.cosmo-exams__scroll:hover {
    border-color: var(--cosmo-gold);
    color: var(--cosmo-gold-dark);
}

/* Panels */
.cosmo-exam-panel {
    display: none;
}

.cosmo-exam-panel.active {
    display: block;
}

/* Exam cards */
.cosmo-exam-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 12px;
    padding: 16px 18px;
    height: 100%;
    text-decoration: none;
    color: var(--cosmo-ink);
    transition: all .15s;
}

.cosmo-exam-card:hover {
    border-color: var(--cosmo-gold);
    box-shadow: var(--cosmo-shadow);
    transform: translateY(-2px);
    color: var(--cosmo-gold-dark);
}

.cosmo-exam-card__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(194, 161, 77, .12);
    color: var(--cosmo-gold-dark);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    overflow: hidden;
}

.cosmo-exam-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cosmo-exam-card__name {
    flex: 1 1 auto;
    font-weight: 600;
    font-size: .98rem;
    color: var(--cosmo-navy);
    line-height: 1.3;
}

.cosmo-exam-card:hover .cosmo-exam-card__name {
    color: var(--cosmo-gold-dark);
}

.cosmo-exam-card__arrow {
    flex: 0 0 auto;
    color: var(--cosmo-muted);
    font-size: 1.2rem;
}

.cosmo-exam-card--all {
    justify-content: center;
    font-weight: 700;
    color: var(--cosmo-gold-dark);
    border-style: dashed;
    gap: 8px;
}

.cosmo-exam-card--all .cosmo-exam-card__name {
    flex: 0 0 auto;
}

/* ===================== VIDEO LECTURES ===================== */
.cosmo-videos {
    background: #fff;
}

.cosmo-video-panel {
    display: none;
}

.cosmo-video-panel.active {
    display: block;
}

.cosmo-video-card {
    display: flex;
    gap: 16px;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    transition: all .15s;
}

.cosmo-video-card:hover {
    border-color: var(--cosmo-gold);
    box-shadow: var(--cosmo-shadow);
    transform: translateY(-2px);
}

.cosmo-video-card__thumb {
    position: relative;
    flex: 0 0 200px;
    height: 116px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cosmo-navy);
}

.cosmo-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cosmo-video-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e23744;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}

.cosmo-video-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    transition: all .15s;
}

.cosmo-video-card:hover .cosmo-video-card__play {
    background: var(--cosmo-gold);
    transform: scale(1.08);
}

.cosmo-video-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 6px 4px 0;
    min-width: 0;
}

.cosmo-video-card__title {
    font-weight: 700;
    color: var(--cosmo-navy);
    font-size: 1.02rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cosmo-video-card__author {
    color: var(--cosmo-muted);
    font-size: .88rem;
}

@media (max-width: 575.98px) {
    .cosmo-video-card__thumb {
        flex-basis: 130px;
        height: 84px;
    }

    .cosmo-video-card__title {
        font-size: .92rem;
    }
}

/* Player modal */
.cosmo-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cosmo-video-modal.open {
    display: flex;
}

.cosmo-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 28, .82);
}

.cosmo-video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 880px;
}

.cosmo-video-modal__close {
    position: absolute;
    top: -42px;
    right: 0;
    background: none;
    border: 0;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.cosmo-video-modal__frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.cosmo-video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================== TESTIMONIALS ===================== */
.cosmo-testimonials {
    background: var(--cosmo-bg-soft);
}

/* Carousel */
.cosmo-tcarousel {
    position: relative;
    padding: 0 8px;
}

.cosmo-tcarousel__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px;
}

.cosmo-tcarousel__track::-webkit-scrollbar {
    display: none;
}

.cosmo-tslide {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}

@media (max-width: 991.98px) {
    .cosmo-tslide {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 575.98px) {
    .cosmo-tslide {
        flex-basis: 100%;
    }
}

.cosmo-tcarousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--cosmo-line);
    background: #fff;
    color: var(--cosmo-navy);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--cosmo-shadow);
    transition: all .15s;
}

.cosmo-tcarousel__nav:hover {
    background: var(--cosmo-gold);
    color: #fff;
    border-color: var(--cosmo-gold);
}

.cosmo-tcarousel__nav--prev {
    left: -10px;
}

.cosmo-tcarousel__nav--next {
    right: -10px;
}

.cosmo-tcard {
    position: relative;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 18px;
    padding: 28px 26px;
    height: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}

/* Gold accent strip on top */
.cosmo-tcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cosmo-gold), var(--cosmo-gold-dark));
}

.cosmo-tcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--cosmo-shadow);
    border-color: var(--cosmo-gold);
}

/* Big watermark quote */
.cosmo-tcard__quote {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--cosmo-gold);
    opacity: .14;
}

.cosmo-tcard__stars {
    display: flex;
    gap: 3px;
    font-size: 1.1rem;
    line-height: 1;
}

.cosmo-star {
    color: #d7dbe3;
}

.cosmo-star.is-on {
    color: #f5b301;
}

.cosmo-tcard__msg {
    color: #374151;
    line-height: 1.7;
    margin: 0;
    flex: 1 1 auto;
    font-size: .96rem;
    overflow-y: auto;
    scrollbar-width: none;          /* Firefox: hide scrollbar */
    -ms-overflow-style: none;       /* IE/Edge: hide scrollbar */
}

.cosmo-tcard__msg::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari: hide scrollbar */
}

.cosmo-tcard__person {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--cosmo-line);
    padding-top: 14px;
}

.cosmo-tcard__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.cosmo-tcard__photo--fallback {
    display: grid;
    place-items: center;
    background: var(--cosmo-gold);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.cosmo-tcard__name {
    font-weight: 700;
    color: var(--cosmo-navy);
}

.cosmo-tcard__role {
    color: var(--cosmo-gold-dark);
    font-size: .85rem;
    font-weight: 600;
}

/* ===================== EXAM GRID (blog landing) ===================== */
.cosmo-examgrid__spark {
    color: var(--cosmo-gold);
    font-size: 1.1em;
    vertical-align: -2px;
}

.cosmo-examgrid__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    height: 100%;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    transition: all .15s;
}

.cosmo-examgrid__card:hover {
    border-color: var(--cosmo-gold);
    box-shadow: var(--cosmo-shadow);
    transform: translateY(-3px);
}

.cosmo-examgrid__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--cosmo-bg-soft);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--cosmo-gold-dark);
    font-size: 2rem;
}

.cosmo-examgrid__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cosmo-examgrid__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--cosmo-navy);
    line-height: 1.35;
}

.cosmo-examgrid__card:hover .cosmo-examgrid__name {
    color: var(--cosmo-gold-dark);
}

@media (max-width: 575.98px) {
    .cosmo-examgrid__card {
        padding: 20px 10px;
        gap: 12px;
    }

    .cosmo-examgrid__icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .cosmo-examgrid__name {
        font-size: .9rem;
    }
}

/* ============ EXAM LISTING CARDS (blog category post grid) ============ */
.examrow-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 14px;
    padding: 18px 20px 20px;
    text-decoration: none;
    transition: all .15s;
}

.examrow-card:hover {
    border-color: var(--cosmo-gold);
    box-shadow: var(--cosmo-shadow);
    transform: translateY(-2px);
}

.examrow-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.examrow-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cosmo-muted);
    font-size: .85rem;
    font-weight: 600;
}

.examrow-card__date i {
    font-size: 1rem;
}

.examrow-card__badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 3px 9px;
    border-radius: 999px;
    text-transform: uppercase;
}

.examrow-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.examrow-card__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cosmo-bg-soft);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--cosmo-gold-dark);
    font-size: 1.3rem;
}

.examrow-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.examrow-card__name {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cosmo-navy);
    line-height: 1.3;
}

.examrow-card:hover .examrow-card__name {
    color: var(--cosmo-gold-dark);
}

/* =====================================================================
   Rundla Enterprises — home page sections
   (about · products · why-choose-us · enquiry)
   ===================================================================== */

/* Shared small bits */
.cosmo-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cosmo-gold);
    margin-bottom: 12px;
}

.cosmo-block-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--cosmo-navy);
    margin: 0 0 16px;
}

.cosmo-block-text {
    color: var(--cosmo-muted);
    line-height: 1.85;
    font-size: 1.02rem;
    margin: 0 0 22px;
}

/* About */
.cosmo-home-about__media {
    border-radius: 18px;
    background: var(--cosmo-bg-soft);
    border: 1px solid var(--cosmo-line);
    padding: 40px;
    text-align: center;
    box-shadow: var(--cosmo-shadow);
}

.cosmo-home-about__media img {
    max-width: 100%;
    height: auto;
}

.cosmo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 12px;
}

.cosmo-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--cosmo-ink);
}

.cosmo-feature-list i {
    color: var(--cosmo-gold);
    font-size: 1.25rem;
}

/* Products */
.cosmo-products {
    background: var(--cosmo-bg-soft);
}

.cosmo-product-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--cosmo-line);
    border-radius: 14px;
    padding: 30px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cosmo-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cosmo-shadow);
    border-color: var(--cosmo-gold);
}

.cosmo-product-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 162, 166, .1);
    color: var(--cosmo-gold);
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.cosmo-product-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cosmo-navy);
    margin: 0 0 8px;
}

.cosmo-product-card__desc {
    color: var(--cosmo-muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.cosmo-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--cosmo-gold);
    text-decoration: none;
}

.cosmo-product-card__link:hover {
    color: var(--cosmo-gold-dark);
}

.cosmo-product-card__link i {
    transition: transform .2s ease;
}

.cosmo-product-card__link:hover i {
    transform: translateX(4px);
}

/* Why choose us */
.cosmo-why__lead {
    max-width: 820px;
    margin: -14px auto 40px;
    text-align: center;
    color: var(--cosmo-muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.cosmo-why-card {
    height: 100%;
    text-align: center;
    padding: 30px 22px;
    border-radius: 14px;
    border: 1px solid var(--cosmo-line);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cosmo-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cosmo-shadow);
}

.cosmo-why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--cosmo-gold);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.cosmo-why-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--cosmo-navy);
    margin: 0 0 8px;
}

.cosmo-why-card p {
    color: var(--cosmo-muted);
    line-height: 1.7;
    margin: 0;
    font-size: .96rem;
}

/* Enquiry */
.cosmo-enquiry {
    background: var(--cosmo-bg-soft);
}

.cosmo-enquiry__panel {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--cosmo-shadow);
    background: #fff;
}

.cosmo-enquiry__intro {
    background: var(--cosmo-navy);
    color: #fff;
    padding: 44px 40px;
}

.cosmo-enquiry__intro h2 {
    color: #fff;
    font-weight: 700;
    margin: 0 0 12px;
}

.cosmo-enquiry__intro p {
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    margin: 0 0 26px;
}

.cosmo-enquiry__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.cosmo-enquiry__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .9);
}

.cosmo-enquiry__contact i {
    color: var(--cosmo-gold);
    font-size: 1.2rem;
}

.cosmo-enquiry__contact a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
}

.cosmo-enquiry__contact a:hover {
    color: #fff;
}

.cosmo-enquiry__form {
    padding: 44px 40px;
}

.cosmo-enquiry__form .cosmo-field input,
.cosmo-enquiry__form .cosmo-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--cosmo-line);
    border-radius: 10px;
    font: inherit;
    color: var(--cosmo-ink);
    background: #fff;
    margin-bottom: 14px;
}

.cosmo-enquiry__form .cosmo-field input:focus,
.cosmo-enquiry__form .cosmo-field textarea:focus {
    outline: none;
    border-color: var(--cosmo-gold);
    box-shadow: 0 0 0 3px rgba(0, 162, 166, .15);
}

.cosmo-enquiry__form textarea {
    min-height: 120px;
    resize: vertical;
}

.cosmo-enquiry__form .cosmo-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cosmo-enquiry__form .error {
    color: #dc2626;
    font-size: .85rem;
    margin: -8px 0 12px;
}

@media (max-width: 991px) {
    .cosmo-block-title { font-size: 1.6rem; }
    .cosmo-enquiry__panel { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .cosmo-enquiry__form .cosmo-field-row { grid-template-columns: 1fr; }
    .cosmo-enquiry__intro,
    .cosmo-enquiry__form { padding: 32px 24px; }
}
