/* ============================================================ SITE CSS  —  Header + Footer ============================================================ */
/* ───────────────────────────────────────────── Design tokens ───────────────────────────────────────────── */


*,
*::before,
*::after {
    box-sizing: border-box;
}

::placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body {
    margin: 0;
    font-family: "Lucida Grande", sans-serif;
    color: var(--text-secondary);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

p {
    font-size: 15px;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ══════════════════════════════════════════════════════ BASE ══════════════════════════════════════════════════════ */
:root {
    --primary: #F5085B;    /* pink/magenta */
    --secondary: #EDA503;  /* amber/gold */
    --bg-light: #FFF0CF;   /* light cream */
}

.site-header a {
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════ 1. TOP PROMO BAR ══════════════════════════════════════════════════════ */
.hdr-topbar {
    background: var(--secondary);
    color: #fff;
    padding: 10px 0;
}

.hdr-topbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.hdr-topbar__left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.hdr-topbar__welcome {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.hdr-topbar__divider {
    width: 1px;
    height: 33px;
    background: rgb(255 255 255);
}

/* Socials */
.hdr-topbar__socials {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.hdr-topbar__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

.hdr-topbar__socials svg {
    width: 13px;
    height: 13px;
}

.hdr-topbar__socials a:hover {
    background: var(--primary);
    color: #fff;
}

/* Right info group: Address / Call Us / Timing */
.hdr-topbar__info {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.hdr-info-item {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    padding: 0 12px;
    border-left: 1px solid rgb(255 255 255 / 87%);
    white-space: nowrap;
}

.hdr-info-item:first-child {
    border-left: none;
}

.hdr-info-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.hdr-info-item span,
.hdr-info-item a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.hdr-info-item.hdr-info-call a:hover {
    color: var(--primary);
}

/* ══════════════════════════════════════════════════════ 2. NAV BAR (logo + menu + CTA) ══════════════════════════════════════════════════════ */
.hdr-nav {
    width: 100%;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.hdr-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: hdrSlideDown 0.35s ease;
}

@keyframes hdrSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.hdr-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hdr-nav__logo img {
    height: 80px;
    width: auto;
    display: block;
}

.hdr-nav__hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--hdr-navy);
    cursor: pointer;
    padding: 6px;
}

.hdr-nav__menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.hdr-nav__menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.hdr-nav__menu>li>a:hover,
.hdr-nav__menu>li.active>a {
    color: var(--primary);
}

.hdr-sub-toggle svg {
    width: 9px;
    height: 9px;
}

.hdr-nav__menu li.has-sub {
    position: relative;
}

.hdr-sub {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 50;
}

.hdr-nav__menu li.has-sub:hover .hdr-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hdr-sub li a {
    display: block;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.hdr-sub li a:hover {
    background-color: var(--primary);
    color: #fff;
}

/* CTA button */
.hdr-nav__cta {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    padding: 11px 26px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 2px solid var(--primary);
}

.hdr-nav__cta:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-1px);
    border: 2px solid var(--primary);
}

.hdr-cta-mobile {
    display: none;
}

/* ══════════════════════════════════════════════════════ MID-SIZE (tighten before anything wraps) ══════════════════════════════════════════════════════ */
@media (max-width: 1300px) and (min-width: 992px) {
    .hdr-topbar__welcome {
        font-size: 12px;
    }

    .hdr-info-item {
        padding: 0 8px;
    }

    .hdr-info-item strong,
    .hdr-info-item span,
    .hdr-info-item a {
        font-size: 11px;
    }

    .hdr-nav__menu {
        gap: 16px;
    }

    .hdr-nav__menu>li>a {
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════════════════ MOBILE ══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .hdr-nav__cta {
        display: none !important;
    }

    .hdr-topbar__info {
        display: none;
    }

    .hdr-topbar__inner {
        justify-content: center;
    }

    .hdr-nav__hamburger {
        display: block;
    }

    .hdr-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hdr-nav__menu.menu-open {
        display: flex;
        z-index: 1001;
    }

    .hdr-nav__menu>li {
        width: 100%;
    }

    .hdr-nav__menu>li>a {
        width: 100%;
        padding: 12px 24px;
        justify-content: space-between;
    }

    .hdr-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 12px;
    }

    li.has-sub.sub-open .hdr-sub {
        display: block;
    }

    .hdr-nav__inner {
        position: relative;
        flex-wrap: wrap;
    }

    .hdr-cta-desktop {
        display: none;
    }

    .hdr-cta-mobile {
        display: inline;
    }
}

@media (max-width: 550px) {
    .hdr-topbar {
        display: none;
    }
}

/* ============================================================ FOOTER STYLES (orange "Follow Us" bar + navy 4-column footer + legal bottom bar) ============================================================ */

/* ===== Footer: bg image + SECONDARY overlay ===== */
.site-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color aur blend-mode dono hata dein */
    color: #fff;
    padding-top: 60px;
}

/* Secondary overlay - ::before se */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--secondary);
    opacity: 0.9;              /* 0.85 = image zyada, 0.95 = image kam */
    pointer-events: none;
}

/* Content overlay k upar rahe */
.site-footer .container-1200,
.site-footer .footer-bottom {
    position: relative;
    z-index: 1;
}
/* ===== Grid: 4 columns ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
}

/* ===== Column 1: Logo + About + Contact ===== */
.footer-logo img {
    width: 100%;
    max-width: 234px;
    display: block;
    margin-bottom: 13px;
}

.footer-about-text {
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.9;
    color: #fff;
}

.footer-contact {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-contact-label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.footer-contact-value {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

/* Phone - primary pink */
.footer-contact-value--accent {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Headings ===== */
.footer-heading {
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

/* Facebook heading underline */
.footer-heading--underline {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--bg-light);
}

/* ===== Links ===== */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== Facebook widget ===== */
.fb-widget-container {
    background: #fff;
    border-radius: 4px;
    padding: 6px;
    max-width: 292px;
    overflow: hidden;
}

.fb-widget-container .fb-page,
.fb-widget-container .fb-page > span,
.fb-widget-container .fb-page iframe {
    max-width: 100% !important;
    width: 100% !important;
}

/* ===== Social icons - circular primary, right aligned ===== */
.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    background: var(--bg-light);
    color: var(--primary);
}

/* ===== Bottom bar ===== */
.footer-bottom {
    border-top: 1px solid rgba(245, 8, 91, 0.55);   /* primary line */
    padding: 18px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom__copy,
.footer-legal-links {
    font-size: 14px;
    color: #fff;
}

.footer-bottom a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom__link-accent,
.footer-legal-links__accent {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-legal-links a:not(.footer-legal-links__accent) {
    color: #fff;
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .footer-grid {
        gap: 30px;
    }
}

/* ===== Responsive: 992 - 2 columns ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

/* ===== Responsive: 768 - 1 column ===== */
@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-bottom__inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
