/* ============================================================
   NIRMALA SITHARAMAN — OFFICIAL WEBSITE
   Design System: Policy Intelligence Layout
   ============================================================ */

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

/* — CSS Custom Properties — */
:root {
  /* Primary Palette */
  --navy:        #1a2744;
  --navy-dark:   #0f1a2e;
  --navy-light:  #2a3d5c;
  --saffron:     #c4722a;
  --saffron-light: #d4893f;
  --saffron-muted: rgba(196, 114, 42, 0.12);

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --light-grey:  #eef0f4;
  --mid-grey:    #c5c9d2;
  --grey:        #6b7280;
  --dark-grey:   #374151;
  --black:       #111827;

  /* Functional */
  --success:     #059669;
  --error:       #dc2626;
  --border:      #dfe3ea;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing Scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width:   1200px;
  --nav-height:  70px;
  --border-radius: 6px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(26,39,68,0.06);
  --shadow-md:  0 4px 12px rgba(26,39,68,0.08);
  --shadow-lg:  0 8px 30px rgba(26,39,68,0.12);
  --shadow-xl:  0 20px 50px rgba(26,39,68,0.15);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --duration:   0.3s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-grey);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

/* — Typography — */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem;    letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--grey);
  line-height: 1.8;
  max-width: 72ch;
}

.text-saffron { color: var(--saffron); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }

/* — Layout Utilities — */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.05rem;
}

/* — Grid System — */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* ============================================================
   TOP NAVIGATION
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--duration) var(--ease);
}

.top-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.01em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--duration) var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all var(--duration) var(--ease);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg);
    gap: var(--space-md);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--duration) var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* Body offset for fixed nav */
.page-body {
  padding-top: var(--nav-height);
}

/* ============================================================
   POLICY CARDS & INSIGHT PANELS
   ============================================================ */
.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.policy-card:hover {
  border-color: rgba(26, 39, 68, 0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.policy-card:hover::before {
  transform: scaleX(1);
}

.policy-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: var(--saffron-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
}

.policy-card h3 {
  margin-bottom: var(--space-sm);
}

.policy-card p {
  font-size: 0.95rem;
}

/* Stat Panels */
.stat-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--saffron);
}

.stat-panel .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-panel .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Insight Block */
.insight-block {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  transition: box-shadow var(--duration) var(--ease);
}

.insight-block:hover {
  box-shadow: var(--shadow-md);
}

.insight-block img {
  width: 280px;
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.insight-block .content h3 {
  margin-bottom: var(--space-sm);
}

.insight-block .content p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .insight-block {
    flex-direction: column;
  }
  .insight-block img {
    width: 100%;
    min-width: auto;
    height: 180px;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 50%, rgba(196,114,42,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: var(--space-md);
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero-content .designation {
  display: inline-block;
  background: rgba(196, 114, 42, 0.2);
  border: 1px solid rgba(196, 114, 42, 0.3);
  color: var(--saffron-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 100px;
  text-transform: uppercase;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-height: 480px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 320px; }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-2xl);
  padding-left: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 6px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid var(--off-white);
}

.timeline-item .year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.timeline-item p {
  font-size: 0.95rem;
}

/* ============================================================
   ROLE CARDS
   ============================================================ */
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  border-left: 4px solid var(--saffron);
  transition: all var(--duration) var(--ease);
}

.role-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.role-card .role-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.role-card h3 {
  margin-bottom: var(--space-md);
}

.role-card ul {
  padding-left: var(--space-lg);
}

.role-card ul li {
  position: relative;
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.role-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(15,26,46,0.85), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
}

.gallery-item:hover .caption {
  transform: translateY(0);
}

/* ============================================================
   MEDIA / BRIEFING CARDS
   ============================================================ */
.briefing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.briefing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.briefing-card .card-image {
  height: 200px;
  overflow: hidden;
}

.briefing-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.briefing-card .card-body {
  padding: var(--space-xl);
}

.briefing-card .card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  background: var(--saffron-muted);
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.briefing-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.briefing-card p {
  font-size: 0.9rem;
}

.briefing-card .card-date {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: var(--space-md);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-grey);
  background: var(--off-white);
  transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--saffron-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-2xl);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-saffron {
  background: var(--saffron);
  color: var(--white);
}

.btn-saffron:hover {
  background: var(--saffron-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.footer-brand h4 span {
  color: var(--saffron);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-sm);
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--saffron-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--saffron-light);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--saffron);
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.password-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.password-gate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #138808, #ffffff, #FF9933);
}

.password-gate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(196,114,42,0.06) 0%, transparent 60%);
}

.gate-box {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  width: 100%;
  max-width: 420px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.gate-box .emblem {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.gate-box h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.gate-box .gate-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-2xl);
}

.gate-box input[type="password"] {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.gate-box input[type="password"]::placeholder {
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.gate-box input[type="password"]:focus {
  outline: none;
  border-color: var(--saffron);
  background: rgba(255,255,255,0.1);
}

.gate-box .btn-gate {
  width: 100%;
  padding: var(--space-md);
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.gate-box .btn-gate:hover {
  background: var(--saffron-light);
  transform: translateY(-2px);
}

.gate-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: var(--space-md);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.gate-error.visible {
  opacity: 1;
}

/* ============================================================
   PAGE-SPECIFIC: ABOUT SPLIT LAYOUT
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-hero img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-card .info-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196, 114, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-card .info-item .text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.contact-info-card .info-item .text strong {
  color: var(--white);
  font-size: 0.95rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-white    { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-navy     { background: var(--navy); }

.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--saffron);
  border-radius: 3px;
}

/* Tag */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  background: var(--saffron-muted);
  color: var(--saffron);
}
