/* ============================================================
   RADHIKA PRODUCTIONS — FRONTEND STYLESHEET
   Luxury / Editorial / Cinematic | Gold + Black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:        #C9A84C;
    --gold-lt:     #E8C96A;
    --gold-dk:     #9A7A2E;
    --gold-pale:   rgba(201,168,76,0.08);
    --gold-border: rgba(201,168,76,0.22);
    --black:       #0A0A0A;
    --dark:        #111111;
    --dark2:       #181818;
    --dark3:       #222222;
    --text:        #EDE8DC;
    --text-muted:  #8A8070;
    --text-light:  #BDB5A0;
    --white:       #FFFFFF;
    --border:      rgba(255,255,255,0.07);
    --radius:      4px;
    --radius-lg:   10px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Cormorant Garamond', Georgia, serif;
    --font-ui:      'Inter', Arial, sans-serif;

    --nav-h:       80px;
    --section-pad: clamp(64px, 8vw, 120px);

    --transition:  0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    line-height: 1.7;
    font-size: 1.125rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--white);
    font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2em; color: var(--text-light); }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }

img { max-width: 100%; display: block; }

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ============================================================
   SECTION LABEL (overline above headings)
   ============================================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold-dk);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

section { padding: var(--section-pad) 0; position: relative; }

/* ============================================================
   THIN GOLD DIVIDER
   ============================================================ */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.divider-left {
    margin-left: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-lt);
    color: var(--black);
    border-color: var(--gold-lt);
    box-shadow: 0 8px 32px rgba(201,168,76,0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold-border);
}

.btn-outline:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--gold-lt);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border);
    padding: 12px 24px;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.site-nav.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    height: 64px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    gap: 24px;
}

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

.nav-logo img {
    height: 44px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.nav-logo-text small {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active {
    background: var(--gold-pale);
}

.nav-cta {
    flex-shrink: 0;
}

.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    z-index: 490;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 32px;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    font-style: italic;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
    position: absolute;
    top: 24px; right: 28px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.9) 0%,
        rgba(10,10,10,0.5) 60%,
        rgba(10,10,10,0.8) 100%
    );
}

/* Grain texture overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-h);
}

.hero-content .section-label { margin-bottom: 24px; }

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.stats-bar-inner {
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gold-pale); }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-head {
    margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head.center { text-align: center; }
.section-head.center .divider { margin: 16px auto 0; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-label::before,
.section-head.center .section-label::after { display: block; }

.section-head h2 { margin-bottom: 12px; }
.section-head p { max-width: 540px; font-size: 1.05rem; }
.section-head.center p { margin: 0 auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.rp-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.rp-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.rp-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark3);
}

.rp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rp-card:hover .rp-card-img img { transform: scale(1.05); }

.rp-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
}

.rp-card-img-placeholder i {
    font-size: 2.5rem;
    color: var(--text-muted);
    opacity: 0.4;
}

.rp-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.rp-card:hover .rp-card-overlay { opacity: 1; }

.rp-card-play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transform: scale(0.8);
    transition: transform var(--transition);
}

.rp-card:hover .rp-card-play { transform: scale(1); }

.rp-card-body { padding: 22px; }

.rp-card-meta {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 400;
}

.rp-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.rp-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tag / Badge */
.rp-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 3px 9px;
    border-radius: 20px;
    margin-right: 4px;
    margin-bottom: 4px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-year-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-family: var(--font-display);
}

.about-year-badge .year-num { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.about-year-badge .year-lbl { font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-ui); }

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), transform var(--transition);
}

.team-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    border: 2px solid var(--gold-border);
    background: var(--dark3);
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.team-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

/* ============================================================
   NETWORK / PARTNERS LOGOS
   ============================================================ */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.logo-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
    min-width: 130px;
    text-align: center;
}

.logo-item:hover {
    border-color: var(--gold-border);
    background: var(--gold-pale);
}

.logo-item img {
    max-height: 40px;
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity var(--transition), filter var(--transition);
}

.logo-item:hover img { opacity: 1; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg); }

.logo-item-name {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text);
    transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question.open { color: var(--gold); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.faq-question.open .faq-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; padding-bottom: 20px; }

.faq-answer p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon-label {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-icon-value {
    font-size: 1rem;
    color: var(--text);
    font-family: var(--font-body);
}

.contact-form .form-group { margin-bottom: 18px; }

.contact-form label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

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

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-border);
}

.news-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark3);
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.news-date {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.35;
    flex: 1;
}

.news-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold-border);
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.testimonial-designation {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 60px);
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.footer-developed {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    color: var(--text-muted);
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: calc(var(--nav-h) + 60px) 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--black) 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.pagination ul {
    display: flex;
    gap: 6px;
    list-style: none;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}

.pagination a:hover,
.pagination a.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

/* ============================================================
   ANIMATIONS (Scroll reveal)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .card-grid-3, .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 480px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .stats-bar-inner { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
    .card-grid-4,
    .card-grid-3,
    .card-grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .stat-item { flex: 1 1 100%; }
    .hero-title { font-size: 2.4rem; }
}

/* ============================================================
   FLASH / ALERT
   ============================================================ */
.site-alert {
    padding: 14px 20px;
    margin: 16px auto;
    max-width: 700px;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-alert-success { background: rgba(61,170,110,0.1); border: 1px solid rgba(61,170,110,0.25); color: #5DC88A; }
.site-alert-danger  { background: rgba(224,82,82,0.1);  border: 1px solid rgba(224,82,82,0.25);  color: #F08080; }

/* ============================================================
   NAV FIX
   ============================================================ */
.nav-inner {
    align-items: center !important;
}

.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    padding: 6px 12px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap;
}

.nav-cta {
    flex-shrink: 0;
    margin-left: auto;
}

.nav-logo {
    flex-shrink: 0;
    align-items: center;
}

.site-nav {
    background: rgba(10,10,10,0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 1200px) {
    .nav-links a { padding: 6px 8px !important; font-size: 0.62rem !important; }
}

@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none !important; }
    .nav-hamburger { display: flex !important; }
}
