
/* ═══════════════════════════════════════════════════
   styles-tech.css — NovaRock Technology
   Domain: technology.novarock.co.in
   Version: 1.0 | April 2026
═══════════════════════════════════════════════════ */

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

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

:root {
  --navy:    #1E40AF;
  --burg:    #2563EB;
  --burg-dk: #1D4ED8;  
  --gold:    #C5A572;
  --soft:    #F8FAFC;
  --border:  #E2E8F0;
  --muted:   #64748B;
  --text:    #1E293B;
  --white:   #ffffff;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.6; }

/* ── READING PROGRESS ── */
#readingProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--burg), var(--gold));
  z-index: 1001; transition: width 0.1s linear;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  z-index: 1000; padding: 1rem 0;
  transition: all 0.3s ease;
}
#navbar.shrunk { padding: 0.65rem 0; }
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.7rem;
  font-weight: 700; color: white; text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
#navLinks { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
#navLinks a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-weight: 500; font-size: 0.9rem; transition: color 0.25s;
}
#navLinks a:hover, #navLinks a.active { color: var(--gold); font-weight: 600; }
.nav-cta {
  background: var(--burg) !important; color: white !important;
  padding: 0.55rem 1.35rem; border-radius: 25px;
  font-weight: 600 !important; white-space: nowrap;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--burg-dk) !important; }
#mobileToggle {
  display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001;
}
#mobileToggle span { width: 25px; height: 2px; background: white; display: block; transition: 0.3s; }
#mobileToggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#mobileToggle.open span:nth-child(2) { opacity: 0; }
#mobileToggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 55%, #122040 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 140px 2rem 80px; position: relative; overflow: hidden; text-align: center;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image:
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%);
  background-size: 80px 140px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,21,56,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; animation: fadeInUp 1s ease; }
.hero-eyebrow {
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: white;
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub-gold {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--gold); font-size: 1.15rem; margin-bottom: 1.25rem; font-weight: 400;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.8);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.85; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-hero-primary {
  background: var(--burg); color: white; padding: 1rem 2.25rem;
  border-radius: 25px; font-weight: 700; text-decoration: none;
  font-size: 0.95rem; transition: all 0.3s ease; border: 2px solid var(--burg);
}
.btn-hero-primary:hover { background: var(--burg-dk); border-color: var(--burg-dk); transform: translateY(-2px); }
.btn-hero-secondary {
  background: transparent; color: white; padding: 1rem 2.25rem;
  border-radius: 25px; font-weight: 600; text-decoration: none;
  font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.4); transition: all 0.3s ease;
}
.btn-hero-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO STATS ── */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.5rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.3rem;
}
.hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* ── SECTIONS ── */
.section { padding: 5.5rem 2rem; }
.section-light { background: var(--white); }
.section-soft  { background: var(--soft); }
.section-navy  { background: var(--navy); color: white; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner-narrow { max-width: 900px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  color: var(--burg); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.section-divider {
  max-width: 72px; height: 3px;
  background: linear-gradient(90deg, var(--burg), var(--gold));
  border-radius: 2px; margin: 0.6rem auto 1.25rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--navy);
  font-weight: 700; margin-bottom: 0.85rem; line-height: 1.2;
}
.section-navy .section-title { color: white; }
.section-desc { font-size: 1rem; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.85; }
.section-navy .section-desc { color: rgba(255,255,255,0.7); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.service-card {
  background: white; border-radius: 14px; padding: 2.25rem;
  border: 1px solid var(--border); border-top: 4px solid var(--burg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:0;
  background: linear-gradient(135deg, rgba(139,21,56,0.03), rgba(197,165,114,0.03));
  transition: height 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(139,21,56,0.1); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(139,21,56,0.1), rgba(139,21,56,0.06));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; border: 1px solid rgba(139,21,56,0.12);
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem; }
.service-list { list-style: none; padding: 0; }
.service-list li { color: var(--muted); font-size: 0.86rem; padding: 0.3rem 0 0.3rem 1.1rem; position: relative; line-height: 1.6; }
.service-list li::before { content: '›'; position: absolute; left: 0; color: var(--burg); font-weight: 700; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--burg); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; margin-top: 1rem; transition: gap 0.2s ease;
}
.service-link:hover { gap: 0.7rem; }

/* ── PROCESS STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.process-step {
  background: white; border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease; position: relative;
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800;
  color: rgba(139,21,56,0.08); position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
}
.process-step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; }
.process-step p { color: var(--muted); font-size: 0.87rem; line-height: 1.75; }

/* ── TECH STACK BADGES ── */
.tech-stack { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tech-stack-badge {
  background: var(--soft); border: 1px solid var(--border); color: var(--navy);
  padding: 0.45rem 1rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600;
  transition: all 0.25s ease;
}
.tech-stack-badge:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ── STAT CARDS ── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.stat-card {
  background: white; border-radius: 12px; padding: 2rem; text-align: center;
  border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--burg); display: block; margin-bottom: 0.5rem; }
.stat-label { color: var(--muted); font-size: 0.88rem; }

/* ── HIGHLIGHT / CALLOUT BOX ── */
.highlight-box {
  border-left: 4px solid var(--burg); background: #FEF9F6;
  padding: 1.5rem 1.75rem; border-radius: 0 10px 10px 0; margin: 2rem 0;
}
.highlight-box p { color: var(--navy); font-size: 1rem; line-height: 1.8; font-style: italic; }

/* ── PORTFOLIO CARDS ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.portfolio-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.1); }
.portfolio-card-header { background: linear-gradient(135deg, var(--navy), #122040); padding: 2.5rem 2rem; text-align: center; }
.portfolio-tag {
  display: inline-block; background: rgba(197,165,114,0.2); color: var(--gold);
  padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.portfolio-card-body { padding: 1.75rem; }
.portfolio-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.portfolio-card-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.1); }
.blog-card-header { background: linear-gradient(135deg, var(--navy) 0%, #1a2d50 100%); padding: 2rem; }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; flex: 1; }
.blog-card-footer { padding: 0 1.75rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.blog-date { color: var(--muted); font-size: 0.8rem; }
.blog-read-more { color: var(--burg); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.blog-read-more:hover { text-decoration: underline; }

/* ── TAG PILLS ── */
.tag { display: inline-block; background: rgba(139,21,56,0.08); color: var(--burg); padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; } 
.breadcrumb a:hover { color: var(--burg); }
.breadcrumb-sep { color: var(--border); }

/* ── CTA INLINE ── */
.cta-inline {
  background: linear-gradient(135deg, var(--burg), var(--burg-dk));
  border-radius: 14px; padding: 2.5rem; text-align: center; color: white;
}
.cta-inline h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.75rem; }
.cta-inline p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.btn-cta-white { background: white; color: var(--burg); padding: 0.85rem 2rem; border-radius: 25px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: all 0.3s; display: inline-block; }
.btn-cta-white:hover { background: var(--gold); color: var(--navy); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #122040 100%);
  padding: 6rem 2rem; text-align: center;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: white; font-weight: 700; margin-bottom: 1rem; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.85; }
.cta-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.btn-primary-cta {
  background: var(--burg); color: white; padding: 1rem 2.25rem;
  border-radius: 25px; font-weight: 700; text-decoration: none;
  font-size: 0.95rem; transition: all 0.3s ease; border: 2px solid var(--burg);
}
.btn-primary-cta:hover { background: var(--burg-dk); border-color: var(--burg-dk); }
.btn-secondary-cta {
  background: transparent; color: white; padding: 1rem 2.25rem;
  border-radius: 25px; font-weight: 600; text-decoration: none;
  font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.4); transition: all 0.3s ease;
}
.btn-secondary-cta:hover { border-color: var(--gold); color: var(--gold); }

/* ── ADVANTAGE CARDS ── */
.advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.advantage-card {
  background: white; border-radius: 12px; padding: 2rem;
  border-left: 4px solid var(--burg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04); transition: all 0.3s ease;
}
.advantage-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(139,21,56,0.1); }
.advantage-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; }
.advantage-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.75; }

/* ── TIPS BOX ── */
.tips-box { background: #F0FDF4; border: 1px solid #86EFAC; border-radius: 10px; padding: 1.5rem; }
.tips-box h4 { color: #166534; font-size: 0.95rem; margin-bottom: 0.75rem; }
.tips-box ul { list-style: none; }
.tips-box ul li { color: #15803D; font-size: 0.88rem; padding: 0.3rem 0 0.3rem 1.5rem; position: relative; }
.tips-box ul li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }

/* ── FORMULA BOX ── */
.formula-box { background: var(--navy); border-radius: 10px; padding: 1.75rem; color: white; }
.formula-box h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.75rem; font-family: 'Playfair Display', serif; }
.formula-box p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.8; }

/* ── COMPARE TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table thead th { background: var(--navy); color: white; padding: 1rem; text-align: left; font-weight: 600; }
.compare-table tbody tr:nth-child(even) { background: var(--soft); }
.compare-table tbody td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.85rem 1.1rem; border: 1px solid var(--border);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: var(--text); background: white; transition: border-color 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--burg); box-shadow: 0 0 0 3px rgba(139,21,56,0.08);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.btn-submit {
  background: var(--burg); color: white; border: none; padding: 1rem 2.5rem;
  border-radius: 25px; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: background 0.25s; font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--burg-dk); }
.contact-info-card {
  background: var(--navy); border-radius: 14px; padding: 2.5rem; color: white;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item-icon { width: 42px; height: 42px; background: rgba(197,165,114,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.3rem; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.8); font-size: 0.9rem; text-decoration: none; line-height: 1.7; }
.contact-item a:hover { color: var(--gold); }

/* ── CAREERS ── */
.job-card {
  background: white; border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border); border-left: 4px solid var(--burg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04); margin-bottom: 1.5rem;
  transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.job-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(139,21,56,0.1); }
.job-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; }
.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.job-badge { background: var(--soft); border: 1px solid var(--border); color: var(--muted); padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.btn-apply { background: var(--burg); color: white; padding: 0.65rem 1.5rem; border-radius: 20px; text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: background 0.25s; white-space: nowrap; }
.btn-apply:hover { background: var(--burg-dk); }

/* ── LEGAL PAGE ── */
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.05rem; color: var(--navy); font-weight: 600; margin: 1.75rem 0 0.75rem; }
.legal-content p { color: var(--muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { color: var(--muted); line-height: 1.85; margin: 0.75rem 0 1rem 1.5rem; font-size: 0.95rem; }
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--burg); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 60%, #122040 100%);
  padding: 140px 2rem 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%);
  background-size: 80px 140px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; animation: fadeInUp 0.9s ease; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: white; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.85; max-width: 620px; margin: 0 auto; }

/* ── SIDEBAR LAYOUT ── */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.sidebar-card { background: white; border-radius: 12px; padding: 1.75rem; border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.04); margin-bottom: 1.5rem; }
.sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.sidebar-cta { background: var(--navy); border-radius: 12px; padding: 1.75rem; color: white; margin-bottom: 1.5rem; }
.sidebar-cta h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.75rem; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.7; }
.btn-sidebar { display: block; background: var(--burg); color: white; text-align: center; padding: 0.75rem; border-radius: 20px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.25s; }
.btn-sidebar:hover { background: var(--burg-dk); }
.toc-card { background: var(--soft); border-radius: 12px; padding: 1.75rem; border: 1px solid var(--border); margin-bottom: 1.5rem; }
.toc-card h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--navy); margin-bottom: 1rem; }
.toc-card ol { padding-left: 1.25rem; }
.toc-card ol li { margin-bottom: 0.6rem; }
.toc-card ol li a { color: var(--muted); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.toc-card ol li a:hover { color: var(--burg); }

/* ── AUTHOR BOX ── */
.author-box {
  background: var(--soft); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border); display: flex; gap: 1.5rem; align-items: flex-start;
}
.author-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, var(--burg), var(--burg-dk)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: white; }
.author-box h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.author-box .author-title { color: var(--burg); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.5rem; }
.author-box p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

/* ── SHARE BAR ── */
.share-bar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 2.5rem 0; }
.share-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.share-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.25s; border: 1px solid var(--border); color: var(--muted); }
.share-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── NOTIFICATION TOAST ── */
#notification { position:fixed; bottom:5rem; left:50%; transform:translateX(-50%) translateY(20px); background:var(--navy); color:white; padding:1rem 2rem; border-radius:25px; font-size:0.9rem; z-index:10000; opacity:0; transition:all 0.3s ease; pointer-events:none; white-space:nowrap; border:1px solid rgba(197,165,114,0.3); }
#notification.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ── WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9998;
  text-decoration: none; transition: transform 0.3s ease;
}
.wa-btn:hover { transform: scale(1.1); }

/* ── COOKIE ── */
#cookieConsent {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #1A3A52, var(--navy));
  color: white; padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 9999; border-top: 3px solid var(--burg);
}
.cookie-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cookie-inner p { flex: 1; min-width: 260px; margin: 0; font-size: 0.93rem; line-height: 1.65; color: #E8EDF2; }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-ca { background: var(--burg); color: white; border: none; padding: 0.7rem 1.4rem; border-radius: 25px; font-weight: 600; cursor: pointer; font-size: 0.9rem; white-space: nowrap; transition: background 0.25s; }
.btn-ca:hover { background: var(--burg-dk); }
.btn-cr { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); padding: 0.7rem 1.4rem; border-radius: 25px; font-weight: 600; cursor: pointer; font-size: 0.9rem; white-space: nowrap; transition: all 0.25s; }
.btn-cr:hover { border-color: white; }
.btn-cx { background: transparent; color: rgba(255,255,255,0.6); border: none; padding: 0.4rem 0.75rem; cursor: pointer; font-size: 1.5rem; line-height: 1; transition: color 0.25s; }
.btn-cx:hover { color: white; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: white; padding: 4rem 2rem 2rem; }
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { color: var(--gold); font-size: 0.82rem; font-style: italic; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-brand a { color: var(--gold); text-decoration: none; font-size: 0.87rem; }
.footer-brand a:hover { text-decoration: underline; }
.footer h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 1.25rem; color: white; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.83rem; margin-bottom: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; margin: 0 0.75rem; transition: color 0.25s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-back { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(197,165,114,0.1); border: 1px solid rgba(197,165,114,0.25); color: var(--gold) !important; padding: 0.55rem 1.25rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.25s; margin-top: 1rem; }
.footer-back:hover { background: rgba(197,165,114,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  #navLinks { position:fixed; top:0; right:-100%; height:100vh; width:72%; background:var(--navy); flex-direction:column; padding:5rem 2rem; gap:1.5rem; transition:right 0.4s ease; z-index:999; }
  #navLinks.open { right:0; }
  #mobileToggle { display:flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction:column; align-items:center; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .author-box { flex-direction:column; }
  .job-card { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-stat-num { font-size: 1.6rem; }
}
