/* ============================
   SANTOSH KUMAR GANGWAR
   Ultra-Premium Design System
   ============================ */

:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --navy-mid: #1a2d4a;
    --steel: #7a8a9e;
    --steel-light: #b0bec5;
    --saffron: #e8861c;
    --saffron-glow: #f59e3f;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --glass: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.1);
    --glass-strong: rgba(255,255,255,0.12);
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--white);
    background: var(--navy);
    overflow-x: hidden;
    line-height: 1.7;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ==== PASSWORD GATE ==== */
.password-gate {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy);
}
.gate-bg {
    position: absolute; inset: 0; overflow: hidden;
}
.gate-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

.gate-gradient-orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3;
}
.gate-orb-1 { width: 500px; height: 500px; background: var(--saffron); top: -100px; right: -100px; animation: orbFloat1 12s ease-in-out infinite; }
.gate-orb-2 { width: 400px; height: 400px; background: #1e3a5f; bottom: -50px; left: -50px; animation: orbFloat2 10s ease-in-out infinite; }
.gate-orb-3 { width: 300px; height: 300px; background: var(--saffron-glow); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: orbFloat3 14s ease-in-out infinite; opacity: 0.15; }

@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.2)} }

.gate-content {
    position: relative; z-index: 2; text-align: center; padding: 20px;
    animation: gateReveal 1s ease-out;
}
@keyframes gateReveal { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.gate-emblem { position: relative; width: 120px; height: 120px; margin: 0 auto 32px; }
.emblem-ring {
    position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--glass-border);
}
.emblem-ring-outer { animation: emblemSpin 20s linear infinite; border-style: dashed; }
.emblem-ring-inner { inset: 12px; border-color: var(--saffron); opacity: 0.5; animation: emblemSpin 15s linear infinite reverse; }
@keyframes emblemSpin { to{transform:rotate(360deg)} }

.emblem-icon {
    position: absolute; inset: 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass-strong); border-radius: 50%;
    font-size: 32px; color: var(--saffron);
}

.gate-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.gate-subtitle {
    font-size: 16px; color: var(--steel-light);
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 40px;
}

.gate-lock-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 440px; margin: 0 auto;
    box-shadow: var(--shadow);
}
.lock-header {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 28px; color: var(--steel-light); font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px;
}
.lock-icon-wrap {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(232,134,28,0.15); display: flex;
    align-items: center; justify-content: center;
    color: var(--saffron); font-size: 14px;
}
.lock-input-group {
    display: flex; gap: 12px; margin-bottom: 16px;
}
.lock-input {
    flex: 1; padding: 16px 20px; border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border); background: rgba(255,255,255,0.04);
    color: var(--white); font-size: 16px; font-family: 'Inter', sans-serif;
    outline: none; transition: var(--transition);
}
.lock-input:focus { border-color: var(--saffron); box-shadow: 0 0 20px rgba(232,134,28,0.15); }
.lock-input::placeholder { color: var(--steel); }

.lock-submit {
    width: 54px; height: 54px; border-radius: var(--radius-sm);
    border: none; background: linear-gradient(135deg, var(--saffron), var(--saffron-glow));
    color: var(--white); font-size: 18px; cursor: pointer;
    transition: var(--transition);
}
.lock-submit:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(232,134,28,0.4); }

.lock-message { min-height: 24px; font-size: 14px; margin-bottom: 8px; }
.lock-message.error { color: #ef4444; }
.lock-message.success { color: #22c55e; }

.lock-footer {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: var(--steel); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
}
.lock-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* Gate transition */
.password-gate.unlocked {
    animation: gateUnlock 1s ease-in-out forwards;
}
@keyframes gateUnlock { to{opacity:0;transform:scale(1.1);pointer-events:none} }

/* ==== NAVIGATION ==== */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
}
.main-nav.scrolled {
    background: rgba(10,22,40,0.95); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
}
.brand-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-glow));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--white);
}
.brand-name { font-family: 'Playfair Display',serif; font-size: 18px; font-weight: 700; display: block; }
.brand-title { font-size: 11px; color: var(--steel-light); text-transform: uppercase; letter-spacing: 1px; }

.nav-links { display: flex; gap: 4px; }
.nav-link {
    padding: 8px 14px; border-radius: 8px; font-size: 13px;
    font-weight: 500; color: var(--steel-light);
    transition: var(--transition); letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--glass); }
.nav-link.active { color: var(--saffron); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--white);
    transition: var(--transition); border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ==== HERO SECTION ==== */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-mid) 100%);
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(232,134,28,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}
.hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(to top, var(--navy), transparent);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 50px;
    background: var(--glass); border: 1px solid var(--glass-border);
    font-size: 13px; color: var(--saffron); text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--saffron); animation: pulse 2s infinite;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
}
.title-line {
    display: block; font-weight: 800;
    animation: titleReveal 1s ease-out both;
}
.title-line-1 { font-size: clamp(40px,6vw,72px); color: var(--white); animation-delay: 0.2s; }
.title-line-2 { font-size: clamp(40px,6vw,72px); color: var(--saffron); animation-delay: 0.4s; }
.title-line-3 { font-size: clamp(40px,6vw,72px); color: var(--steel-light); animation-delay: 0.6s; }

@keyframes titleReveal { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }

.hero-desc {
    font-size: 17px; color: var(--steel-light); line-height: 1.8;
    margin-bottom: 36px; max-width: 560px;
}
.hero-stats {
    display: flex; gap: 36px; margin-bottom: 40px;
}
.stat-item { text-align: left; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 800; color: var(--saffron);
    display: inline;
}
.stat-suffix { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--saffron); }
.stat-label { display: block; font-size: 13px; color: var(--steel); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

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

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--saffron), var(--saffron-glow));
    color: var(--white); font-weight: 600; font-size: 15px;
    transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,134,28,0.4); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: var(--radius-sm);
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--white); font-weight: 600; font-size: 15px;
    transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { background: var(--glass-strong); border-color: var(--saffron); }

/* Hero Image */
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-img-frame {
    position: relative; width: 420px; height: 500px;
    border-radius: var(--radius); overflow: hidden;
}
.hero-img-glow {
    position: absolute; inset: -20px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(232,134,28,0.2), transparent);
    filter: blur(40px); z-index: 0;
}
.hero-img-frame img {
    width: 100%; height: 100%; object-fit: cover;
    position: relative; z-index: 1; border-radius: var(--radius);
}
.hero-img-border {
    position: absolute; inset: 0; border-radius: var(--radius);
    border: 1px solid var(--glass-border); z-index: 2;
}
.hero-float-card {
    position: absolute; display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: var(--radius-sm);
    background: rgba(10,22,40,0.85); border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px); font-size: 13px; font-weight: 500;
    z-index: 3; white-space: nowrap;
}
.hero-float-card i { color: var(--saffron); }
.float-card-1 { bottom: 60px; left: -40px; animation: floatCard 4s ease-in-out infinite; }
.float-card-2 { top: 40px; right: -30px; animation: floatCard 4s ease-in-out infinite 1s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); display: flex; flex-direction: column;
    align-items: center; gap: 8px;
}
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--saffron), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1;height:40px} 50%{opacity:0.5;height:20px} }
.hero-scroll-indicator span { font-size: 11px; color: var(--steel); text-transform: uppercase; letter-spacing: 2px; }

/* ==== SECTION STYLES ==== */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--saffron); text-transform: uppercase;
    letter-spacing: 3px; font-weight: 600; margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700; margin-bottom: 16px;
}
.section-divider {
    width: 60px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--saffron-glow));
    margin-bottom: 24px;
}
.section-header.center { text-align: center; }
.section-header.center .section-divider { margin: 0 auto 24px; }
.section-subtitle { font-size: 17px; color: var(--steel-light); max-width: 700px; margin: 0 auto; line-height: 1.8; }

/* ==== PHILOSOPHY SECTION ==== */
.section-philosophy { padding: 120px 0; background: var(--navy); }
.philosophy-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px;
}
.philosophy-card {
    padding: 40px; border-radius: var(--radius);
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.philosophy-card:hover {
    transform: translateY(-4px); border-color: rgba(232,134,28,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.phil-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(232,134,28,0.12); display: flex;
    align-items: center; justify-content: center;
    font-size: 22px; color: var(--saffron); margin-bottom: 20px;
}
.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.philosophy-card p { font-size: 15px; color: var(--steel-light); line-height: 1.8; }

/* ==== LEGACY SECTION ==== */
.section-legacy { padding: 120px 0; background: var(--navy-light); }
.legacy-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
}
.legacy-text { font-size: 16px; color: var(--steel-light); line-height: 1.8; margin-bottom: 20px; }
.legacy-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.highlight-item {
    padding: 20px; border-radius: var(--radius-sm);
    background: var(--glass); border: 1px solid var(--glass-border);
}
.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--saffron); display: block;
}
.highlight-label { font-size: 13px; color: var(--steel-light); margin-top: 4px; display: block; }

.legacy-img-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    height: 500px;
}
.legacy-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.legacy-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.5), transparent);
}

/* ==== CONSTITUTIONAL SECTION ==== */
.section-constitutional { padding: 120px 0; background: var(--navy); }
.constitutional-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.const-card {
    display: grid; grid-template-columns: 0.4fr 1fr; gap: 32px;
    padding: 32px; border-radius: var(--radius);
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: var(--transition); align-items: center;
}
.const-card:hover { border-color: rgba(232,134,28,0.3); transform: translateY(-2px); }
.const-img { border-radius: var(--radius-sm); overflow: hidden; height: 220px; }
.const-img img { width: 100%; height: 100%; object-fit: cover; }
.const-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; margin-bottom: 12px;
}
.const-content p { font-size: 15px; color: var(--steel-light); line-height: 1.8; }

/* ==== TIMELINE SECTION ==== */
.section-timeline { padding: 120px 0; background: var(--navy-light); }
.timeline { position: relative; max-width: 900px; margin: 48px auto 0; }
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--saffron), var(--glass-border));
    transform: translateX(-50%);
}
.timeline-item {
    position: relative; width: 50%; padding: 0 40px; margin-bottom: 40px;
}
.timeline-item.left { left: 0; text-align: right; padding-right: 60px; }
.timeline-item.right { left: 50%; text-align: left; padding-left: 60px; }
.timeline-dot {
    position: absolute; top: 20px; width: 16px; height: 16px;
    border-radius: 50%; background: var(--saffron); border: 3px solid var(--navy-light);
    z-index: 2;
}
.timeline-item.left .timeline-dot { right: -8px; }
.timeline-item.right .timeline-dot { left: -8px; }

.timeline-card {
    padding: 28px; border-radius: var(--radius-sm);
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.timeline-card:hover { border-color: rgba(232,134,28,0.3); }
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--saffron); font-weight: 700;
    display: block; margin-bottom: 8px;
}
.timeline-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.timeline-card p { font-size: 14px; color: var(--steel-light); line-height: 1.7; }

/* ==== HIGHLIGHTS SECTION ==== */
.section-highlights { padding: 120px 0; background: var(--navy); }
.highlights-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
.highlight-card {
    padding: 36px; border-radius: var(--radius);
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.highlight-card:hover { border-color: rgba(232,134,28,0.3); transform: translateY(-2px); }
.highlight-card.highlight-large {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 0.5fr 1fr; gap: 32px;
    align-items: center;
}
.highlight-card-img { border-radius: var(--radius-sm); overflow: hidden; height: 280px; }
.highlight-card-img img { width: 100%; height: 100%; object-fit: cover; }
.highlight-tag {
    display: inline-block; padding: 4px 14px; border-radius: 50px;
    background: rgba(232,134,28,0.12); color: var(--saffron);
    font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.highlight-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; margin-bottom: 12px;
}
.highlight-card-content p { font-size: 15px; color: var(--steel-light); line-height: 1.8; margin-bottom: 16px; }
.highlight-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--saffron); font-weight: 600; font-size: 14px;
}
.highlight-link:hover { gap: 12px; }

/* ==== CTA SECTION ==== */
.section-cta {
    position: relative; padding: 100px 0; overflow: hidden;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}
.cta-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(232,134,28,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}
.cta-content {
    position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 40px; margin-bottom: 20px; }
.cta-content p { font-size: 17px; color: var(--steel-light); line-height: 1.8; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==== FOOTER ==== */
.main-footer { background: var(--navy-light); border-top: 1px solid var(--glass-border); }
.footer-top { padding: 80px 0 40px; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer-brand {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 20px; }
.footer-brand p { font-size: 13px; color: var(--steel); }
.footer-desc { font-size: 14px; color: var(--steel-light); line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--steel-light); transition: var(--transition);
}
.social-link:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }

.footer-links-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; margin-bottom: 20px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a { font-size: 14px; color: var(--steel-light); }
.footer-links-col a:hover { color: var(--saffron); }

.footer-contact h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 20px; }
.footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--steel-light); margin-bottom: 12px;
}
.footer-contact-item i { color: var(--saffron); width: 16px; }
.footer-contact-item a { color: var(--steel-light); }
.footer-contact-item a:hover { color: var(--saffron); }

.footer-newsletter { margin-top: 20px; }
.footer-newsletter h4 { font-size: 16px; margin-bottom: 12px; }
.newsletter-form {
    display: flex; gap: 8px;
}
.newsletter-form input {
    flex: 1; padding: 12px 16px; border-radius: 8px;
    border: 1px solid var(--glass-border); background: var(--glass);
    color: var(--white); font-size: 13px; outline: none;
    font-family: 'Inter', sans-serif;
}
.newsletter-form input:focus { border-color: var(--saffron); }
.newsletter-form input::placeholder { color: var(--steel); }
.newsletter-form button {
    padding: 12px 16px; border-radius: 8px; border: none;
    background: var(--saffron); color: var(--white); cursor: pointer;
    transition: var(--transition); font-size: 14px;
}
.newsletter-form button:hover { background: var(--saffron-glow); }

.footer-bottom {
    padding: 20px 0; border-top: 1px solid var(--glass-border);
}
.footer-bottom-content {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: var(--steel);
}
.footer-credit a { color: var(--saffron); }
.footer-credit a:hover { text-decoration: underline; }
.back-to-top {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--white); cursor: pointer; transition: var(--transition);
    font-size: 14px;
}
.back-to-top:hover { background: var(--saffron); border-color: var(--saffron); }

/* ==== INNER PAGE HERO ==== */
.page-hero {
    position: relative; padding: 160px 0 80px; overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.page-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(232,134,28,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--steel); margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--saffron); }
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700; margin-bottom: 16px;
}
.page-hero-desc {
    font-size: 18px; color: var(--steel-light); line-height: 1.8;
    max-width: 700px;
}

/* ==== CONTENT SECTIONS ==== */
.content-section { padding: 100px 0; }
.content-section:nth-child(even) { background: var(--navy-light); }
.content-section:nth-child(odd) { background: var(--navy); }

.content-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.content-grid.reverse { direction: ltr; }
.content-grid.reverse > :first-child { order: 2; }
.content-grid.reverse > :last-child { order: 1; }

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; margin-bottom: 20px;
}
.content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; margin-bottom: 16px; color: var(--saffron);
}
.content-text p { font-size: 16px; color: var(--steel-light); line-height: 1.8; margin-bottom: 16px; }
.content-text ul { list-style: none; margin-bottom: 20px; }
.content-text ul li {
    padding: 8px 0 8px 24px; position: relative;
    font-size: 15px; color: var(--steel-light);
}
.content-text ul li::before {
    content: ''; position: absolute; left: 0; top: 16px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--saffron);
}

.content-image { border-radius: var(--radius); overflow: hidden; height: 400px; }
.content-image img { width: 100%; height: 100%; object-fit: cover; }

/* Info cards for inner pages */
.info-cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.info-card {
    padding: 32px; border-radius: var(--radius);
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.info-card:hover { border-color: rgba(232,134,28,0.3); transform: translateY(-3px); }
.info-card-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(232,134,28,0.12); display: flex;
    align-items: center; justify-content: center;
    font-size: 20px; color: var(--saffron); margin-bottom: 16px;
}
.info-card h3 { font-size: 20px; font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--steel-light); line-height: 1.7; }

/* Quote block */
.quote-block {
    padding: 40px; border-radius: var(--radius);
    background: var(--glass); border-left: 4px solid var(--saffron);
    margin: 40px 0;
}
.quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-style: italic; color: var(--white);
    line-height: 1.6; margin-bottom: 12px;
}
.quote-block cite { font-size: 14px; color: var(--saffron); font-style: normal; }

/* Contact Form */
.contact-form-section { padding: 100px 0; background: var(--navy); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-info-card {
    padding: 24px; border-radius: var(--radius-sm);
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
    transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(232,134,28,0.3); }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(232,134,28,0.12); display: flex;
    align-items: center; justify-content: center;
    color: var(--saffron); font-size: 18px; flex-shrink: 0;
}
.contact-info-text h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--steel-light); }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; color: var(--steel-light);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border); background: var(--glass);
    color: var(--white); font-size: 15px; font-family: 'Inter', sans-serif;
    outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--saffron); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--steel); }
.form-group textarea { min-height: 150px; resize: vertical; }

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .hero-img-frame { width: 320px; height: 380px; }
    .hero-float-card { display: none; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-stats { justify-content: center; }
    .hero-cta { justify-content: center; }
    .legacy-grid, .content-grid { grid-template-columns: 1fr; }
    .content-grid.reverse > :first-child { order: 0; }
    .content-grid.reverse > :last-child { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-card.highlight-large { grid-template-columns: 1fr; }
    .const-card { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .info-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(10,22,40,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 80px 24px 24px; gap: 4px;
        transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .nav-toggle { display: flex; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 12px; text-align: center; }
    .timeline-item { width: 100% !important; left: 0 !important; padding: 0 0 0 40px !important; text-align: left !important; }
    .timeline-line { left: 10px; }
    .timeline-dot { left: 2px !important; right: auto !important; }
    .legacy-img-wrap { height: 300px; }
    .info-cards-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .gate-lock-glass { padding: 24px; margin: 0 16px; }
}
