/* ============================================
   PAVAN KUMAR & ASSOCIATES — GLOBAL STYLES
   ============================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

/* COLOR TOKENS */
:root {
    --navy:    #0d1b2a;
    --navy-2:  #1a2e44;
    --gold:    #b08d57;
    --gold-lt: #d4a96a;
    --gold-bg: #fdf6ec;
    --cream:   #f9f4ef;
    --white:   #ffffff;
    --slate:   #4a5568;
    --slate-lt:#718096;
    --border:  #e8ddd2;
    --shadow:  0 8px 40px rgba(13,27,42,0.10);
    --shadow-hover: 0 16px 60px rgba(13,27,42,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--navy);
    padding-top: 100px;
    overflow-x: hidden;
}

/* ——— TOPBAR ——— */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 7px 0;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    letter-spacing: 0.02em;
}

.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; }
.topbar i { color: var(--gold); margin-right: 6px; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar a:hover { color: var(--gold); }

/* ——— NAVBAR ——— */
.navbar-main {
    background: var(--white);
    position: fixed;
    top: 34px; left: 0; width: 100%;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    padding: 0 0;
    box-shadow: 0 2px 20px rgba(13,27,42,0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* LOGO */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 46px; height: 46px;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    border-radius: 4px;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.logo-tagline {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

/* DESKTOP NAV */
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: 0.25s;
    display: block;
    letter-spacing: 0.01em;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--gold);
    background: var(--gold-bg);
}

/* DROPDOWN */
.dropdown-nav { position: relative; }
.dropdown-menu-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 180px;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s;
    list-style: none;
    padding: 8px;
    z-index: 9999;
}
.dropdown-nav:hover .dropdown-menu-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-nav li a {
    display: block;
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 6px;
    transition: 0.2s;
}
.dropdown-menu-nav li a:hover { background: var(--gold-bg); color: var(--gold); }

/* CTA button in nav */
.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    background: none; border: none;
    color: var(--navy); font-size: 22px; cursor: pointer;
    padding: 6px;
}

/* ——— MOBILE OVERLAY + SIDE MENU ——— */
.overlay {
    position: fixed; inset: 0;
    background: rgba(13,27,42,0.5);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: 0.3s;
    z-index: 1100;
}
.overlay.active { opacity: 1; visibility: visible; }

.side-menu {
    position: fixed;
    top: 0; right: -300px;
    width: 280px; height: 100%;
    background: var(--white);
    z-index: 1200;
    padding: 30px 24px;
    display: flex; flex-direction: column; gap: 4px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}
.side-menu.active { right: 0; }
.side-menu .close-btn { align-self: flex-end; font-size: 22px; cursor: pointer; color: var(--navy); margin-bottom: 20px; }
.side-menu a {
    color: var(--navy); text-decoration: none;
    font-size: 15px; font-weight: 500;
    padding: 12px 14px;
    border-radius: 6px;
    transition: 0.2s;
    display: flex; align-items: center; gap: 10px;
}
.side-menu a i { color: var(--gold); width: 20px; text-align: center; }
.side-menu a:hover { background: var(--gold-bg); color: var(--gold); }
.side-menu .side-cta {
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 12px;
}
.side-menu .side-cta:hover { background: var(--navy); }
.side-divider { height: 1px; background: var(--border); margin: 8px 0; }
.side-sub { padding-left: 44px !important; font-size: 14px !important; color: var(--slate) !important; }
.side-sub:hover { color: var(--gold) !important; }

/* ——— GOLD ACCENT BAR ——— */
.accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
    position: fixed;
    top: calc(34px + 74px); left: 0; width: 100%;
    z-index: 998;
}

/* ——— PAGE HERO (reusable) ——— */
.page-hero {
    background: var(--navy);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(176,141,87,0.15) 0%, transparent 70%);
}
.page-hero-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(176,141,87,0.04) 60px,
        rgba(176,141,87,0.04) 61px
    );
}
.page-hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 500;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}
.breadcrumb-nav {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    margin-top: 24px;
    font-size: 13px; color: rgba(255,255,255,0.5);
}
.breadcrumb-nav a { color: var(--gold); text-decoration: none; }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* ——— SECTION HEADERS ——— */
.section-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
}
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ——— DIVIDER ——— */
.gold-divider {
    width: 60px; height: 3px;
    background: var(--gold);
    margin: 18px 0;
    border-radius: 2px;
}
.gold-divider.center { margin: 18px auto; }

/* ——— BUTTONS ——— */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    border: 2px solid var(--gold);
    transition: 0.3s;
    cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    border: 2px solid var(--navy);
    transition: 0.3s;
    cursor: pointer;
}
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: 0.3s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ——— CARDS ——— */
.card-service {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.card-service::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}
.card-service:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-service:hover::before { transform: scaleX(1); }

.service-icon-wrap {
    width: 56px; height: 56px;
    background: var(--gold-bg);
    color: var(--gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* ——— FLOATING BUTTONS ——— */
.float-buttons {
    position: fixed;
    right: 20px; bottom: 80px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 9000;
}
.float-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: 0.3s;
}
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-btn.call { background: var(--gold); }
.float-btn.whatsapp { background: #25D366; }

/* STICKY CONSULT BTN */
.sticky-consult {
    position: fixed;
    right: 0; top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background: var(--gold);
    color: var(--white) !important;
    padding: 18px 10px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    z-index: 9000;
    transition: 0.3s;
}
.sticky-consult:hover { background: var(--navy); color: var(--white) !important; }

/* ——— FOOTER ——— */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 0;
}
.footer-logo-section h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}
.footer-logo-section p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer h5 {
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: 0.2s; }
.footer ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 14px; width: 16px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.45); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--white); }

/* ——— DISCLAIMER MODAL ——— */
.modal-content { border-radius: 12px; border: none; }
.modal-header { background: var(--navy); color: var(--white); border-radius: 12px 12px 0 0; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; }
.modal-body { font-size: 14px; color: var(--slate); line-height: 1.8; }

/* ——— FORMS ——— */
.form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--navy);
    transition: 0.2s;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: block; }
.form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--navy);
    width: 100%;
    background: var(--white);
    cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ——— ACCORDION / FAQ ——— */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 22px;
    background: var(--white);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}
.faq-question:hover { background: var(--gold-bg); }
.faq-question i { color: var(--gold); transition: 0.3s; font-size: 13px; }
.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    font-size: 14px; color: var(--slate); line-height: 1.7;
}
.faq-answer.open { max-height: 200px; padding: 0 22px 18px; }
.faq-item.active .faq-question { background: var(--gold-bg); color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ——— STATS COUNTER ——— */
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label { font-size: 14px; color: var(--slate); margin-top: 6px; font-weight: 500; }

/* ——— TESTIMONIAL CARD ——— */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
}
.testimonial-text { font-size: 15px; color: var(--slate); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; font-size: 14px; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--gold); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }

/* ——— TEAM CARD ——— */
.team-card {
    position: relative; overflow: hidden;
    border-radius: 12px;
    background: var(--navy);
    cursor: pointer;
}
.team-card img { width: 100%; display: block; transition: 0.4s; aspect-ratio: 3/4; object-fit: cover; opacity: 0.85; }
.team-card:hover img { transform: scale(1.05); opacity: 0.6; }
.team-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 24px;
    background: linear-gradient(transparent, rgba(13,27,42,0.92));
}
.team-card-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); font-weight: 700; }
.team-card-role { font-size: 13px; color: var(--gold); letter-spacing: 0.06em; }

/* ——— BADGE ——— */
.badge-gold {
    display: inline-block;
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid rgba(176,141,87,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .topbar div:first-child { display: none; }
    body { padding-top: 90px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 60px 0 50px; }
    .stat-number { font-size: 38px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ——— UTILITY ——— */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-cream { background: var(--cream); }
.bg-gold-bg { background: var(--gold-bg); }
.bg-navy { background: var(--navy); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.fw-600 { font-weight: 600; }
.serif { font-family: 'Cormorant Garamond', serif; }
.gap-2 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* PROCESS STEP */
.process-step {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 36px;
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 700;
    color: var(--gold); opacity: 0.35;
    line-height: 1; min-width: 48px;
}
.step-content h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* INFO BOX */
.info-box {
    background: var(--gold-bg);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    font-size: 14px; color: var(--slate);
}
.info-box strong { color: var(--navy); }

/* TAG */
.tag {
    display: inline-block;
    background: var(--cream);
    color: var(--slate);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin: 3px;
}

/* ARTICLE CARD */
.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.article-thumb {
    height: 200px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.7;
}
.article-body { padding: 24px; }
.article-meta { font-size: 12px; color: var(--slate-lt); margin-bottom: 10px; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.article-excerpt { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }