/*
Theme Name: Pooja International Academy
Theme URI: https://poojathegurukul.com
Author: Pooja International Academy
Author URI: https://poojathegurukul.com
Description: WordPress theme for Pooja International Academy "The Gurukul", Didwana — a CBSE affiliated senior secondary school. Converted from the original static HTML website. Includes news, gallery, downloads and faculty content types plus a wp_mail-powered enquiry form.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pia
Tags: education, one-column, custom-menu, custom-logo, featured-images, translation-ready
*/
/* ==========================================================================
   Pooja International Academy — "The Gurukul", Didwana
   Design system based on the new-site structure (coral + indigo, Work Sans/Inter)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --primary: #FC6441;
  --primary-dark: #e04f2c;
  --secondary: #7768E5;
  --dark: #0D0D25;
  --dark-2: #1B164D;
  --indigo: #353688;
  --text: #525271;
  --muted: #89899F;
  --gold: #F8CA4D;
  --bg-light: #F3F3F6;
  --bg-blue: #ECF3F8;
  --bg-purple: #E8E8F4;
  --white: #FFFFFF;
  --border: #E8E9ED;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(13, 13, 37, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 13, 37, 0.16);
  --font-head: 'Work Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Alfa Slab One', cursive;
  --container: 1200px;
  --header-pad: clamp(16px, 3vw, 60px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: 90px 0; }
.section-light { background: var(--bg-light); }
.section-blue { background: var(--bg-blue); }
.section-dark {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--indigo) 100%);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3 { color: var(--white); }

/* ---------- Section headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }

.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 16px; }
.section-sub { max-width: 640px; margin-bottom: 44px; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn i { font-size: 17px; transition: transform .3s ease; }
.btn:hover i { transform: translateX(4px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(252, 100, 65, 0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(252, 100, 65, 0.45); }

.btn-outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-2px); }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--indigo); transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #e6b334; transform: translateY(-2px); }

/* ---------- Top bar ---------- */
/* Full-width top bar & header so the navigation spans the whole page with elegant side margins */
.topbar .container,
.header .container {
  max-width: none;
  padding-left: var(--header-pad);
  padding-right: var(--header-pad);
}
.logo,
.header-cta { flex-shrink: 0; }

.topbar {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left i { color: var(--gold); font-size: 14px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right .social a { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); font-size: 13px; }
.topbar-right .social a:hover { background: var(--primary); color: #fff; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 82px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 54px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 28px 13px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.nav > li > a:hover, .nav > li.active > a { color: var(--primary); }
.nav > li > a i { font-size: 12px; transition: transform .25s ease; }
.nav > li:hover > a i { transform: rotate(180deg); }

/* dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s ease;
  z-index: 100;
}
.nav > li:hover .dropdown-menu, .nav > li:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}
.dropdown-menu a:hover { color: var(--primary); background: var(--bg-light); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.btn-header { padding: 11px 24px; font-size: 14px; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1101;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 3px; transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  color: #fff;
  z-index: 1100;
  padding: 110px 28px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: all .35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { color: #fff; font-family: var(--font-head); font-size: 19px; font-weight: 600; }
.mobile-menu .mmenu-link { display: block; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu .mmenu-link:hover { color: var(--gold); }
.mobile-menu .mmenu-sub { padding-left: 18px; }
.mobile-menu .mmenu-sub a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); display: block; padding: 9px 0; }
.mobile-menu .mmenu-sub a:hover { color: var(--gold); }
.mmenu-head { display: flex; justify-content: space-between; align-items: center; }
.mmenu-head i { transition: transform .3s ease; }
.mmenu-head.open i { transform: rotate(180deg); }
.mmenu-sub { display: none; }
.mmenu-head.open + .mmenu-sub { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 13, 37, 0.92) 0%, rgba(27, 22, 77, 0.78) 45%, rgba(53, 54, 136, 0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(252, 100, 65, 0.16);
  border: 1px solid rgba(252, 100, 65, 0.5);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 820px;
  font-weight: 400;
}
.hero p { font-size: clamp(16px, 2vw, 19px); color: rgba(255, 255, 255, 0.9); max-width: 600px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* hero stats strip */
.stats-strip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  margin-top: 56px;
  padding: 28px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 880px;
}
.stat { text-align: center; padding: 8px 10px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold);
  font-weight: 400;
}
.stat .label { font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* inner page hero */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--indigo) 70%, var(--secondary) 130%);
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,100,65,0.35) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); color: #fff; font-size: clamp(34px, 5vw, 54px); font-weight: 400; margin-bottom: 12px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 12px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 28px;
  border: 1px solid transparent;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(252, 100, 65, 0.25); }
.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--primary), #ff9367);
}
.card-icon.violet { background: linear-gradient(135deg, var(--secondary), #a497f2); }
.card-icon.gold { background: linear-gradient(135deg, #f0b429, var(--gold)); color: var(--dark); }
.card-icon.indigo { background: linear-gradient(135deg, var(--indigo), var(--secondary)); }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { font-size: 15px; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--primary); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; }
.card-link:hover { gap: 11px; }

/* ---------- Split sections (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split-img .img-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.split-img .img-badge strong { font-family: var(--font-display); font-size: 30px; display: block; font-weight: 400; }
.split-img .img-badge span { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; }
.split-text h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 18px; }
.split-text p { margin-bottom: 16px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.check-list i { color: var(--primary); margin-top: 5px; }

/* ---------- Feature list (academics) ---------- */
.feature-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  border-left: 4px solid var(--primary);
  transition: all .3s ease;
}
.feature-item:hover { transform: translateX(6px); }
.feature-item .f-icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; background: var(--bg-purple); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature-item h3 { font-size: 19px; margin-bottom: 8px; }
.feature-item p { font-size: 15px; }

/* ---------- Message / quote ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(252, 100, 65, 0.14);
  line-height: 1;
}
.quote-card blockquote { font-size: 18px; line-height: 1.9; color: var(--dark); margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; }
.quote-author { display: flex; align-items: center; gap: 16px; }
.quote-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.quote-author strong { display: block; font-family: var(--font-head); color: var(--dark); }
.quote-author span { font-size: 13.5px; color: var(--muted); }

/* ---------- News cards ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-card .thumb { height: 220px; overflow: hidden; position: relative; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .thumb img { transform: scale(1.08); }
.news-card .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.news-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card h3 { font-size: 18.5px; margin-bottom: 10px; line-height: 1.4; }
.news-card h3 a:hover { color: var(--primary); }
.news-card p { font-size: 14.5px; margin-bottom: 16px; flex: 1; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 4 240px; column-gap: 16px; }
.gallery-grid > a { display: block; break-inside: avoid; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow); }
.gallery-grid .g-item img { width: 100%; transition: transform .5s ease; }
.gallery-grid .g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 37, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 12a2 2 0 1 0 4 0a2 2 0 1 0-4 0'/%3E%3Cpath d='M21 12c-2.4 4-5.4 6-9 6c-3.6 0-6.6-2-9-6c2.4-4 5.4-6 9-6c3.6 0 6.6 2 9 6'/%3E%3C/svg%3E") center / 34px no-repeat;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item:hover::after { opacity: 1; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filters button {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all .3s ease;
}
.gallery-filters button:hover { border-color: var(--primary); color: var(--primary); }
.gallery-filters button.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 37, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox .lb-btn {
  position: absolute;
  color: #fff;
  font-size: 40px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background .3s ease;
}
.lightbox .lb-btn:hover { background: var(--primary); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Tables (downloads) ---------- */
.table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
thead th {
  background: var(--dark-2);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-align: left;
  padding: 16px 20px;
}
tbody td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--text); }
tbody tr:nth-child(even) { background: var(--bg-light); }
tbody tr:hover { background: var(--bg-purple); }
td .dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-purple);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all .3s ease;
}
td .dl-btn:hover { background: var(--primary); color: #fff; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: all .3s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(252, 100, 65, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1) !important;
}
.success-msg {
  display: none;
  background: #e9f9ef;
  border: 1px solid #58c47c;
  color: #1f7a43;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.success-msg.show { display: flex; }

/* ---------- Contact cards ---------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  transition: all .3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-card .cc-icon {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff9367);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.contact-card h3 { font-size: 17px; margin-bottom: 8px; }
.contact-card p { font-size: 14.5px; }
.contact-card a:hover { color: var(--primary); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--primary) 0%, #ff8f57 100%);
  border-radius: var(--radius);
  padding: 50px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; }
.cta-band .btn { background: var(--dark); color: #fff; }
.cta-band .btn:hover { background: var(--dark-2); transform: translateY(-2px); }

/* ---------- Info sidebar (about style) ---------- */
.info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.info-card h3 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--bg-light); }
.info-card ul li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; }
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li span { color: var(--muted); }
.info-card ul li strong { color: var(--dark); font-weight: 600; text-align: right; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 44px; }
.footer h4 { color: #fff; font-size: 17px; margin-bottom: 22px; }
.footer p { font-size: 14.5px; margin-bottom: 14px; }
.footer .f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .f-logo img { height: 48px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,0.75); display: inline-flex; align-items: center; gap: 8px; }
.footer ul a::before { content: '\203A'; font-size: 15px; font-weight: 700; color: var(--primary); line-height: 1; }
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer .f-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer .f-contact li i { color: var(--gold); margin-top: 4px; font-size: 16px; }
.footer .f-contact li::before { content: none; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: all .3s ease;
}
.footer-social a::before { content: none; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  font-size: 13.5px;
  text-align: center;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Slim the nav links between the 992px hamburger breakpoint and wide screens
   so all items stay on a single line */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav > li > a { padding: 28px 8px; font-size: 14px; }
  .header-cta .btn-header { padding: 11px 16px; font-size: 13.5px; }
}

@media (max-width: 991px) {
  .nav { display: none; }
  .header-cta .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 68px 0; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; }
}

@media (max-width: 767px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-left { justify-content: center; gap: 14px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-band { padding: 36px 26px; }
  .quote-card { padding: 32px 24px; }
  .split-img .img-badge { right: 8px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat { border-left: none !important; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 16px; }
  .stat:first-child { border-top: none; padding-top: 8px; }
  .btn { padding: 13px 22px; font-size: 14px; }
}

/* ==========================================================================
   WordPress integration extras
   ========================================================================== */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

.error-msg {
  display: none;
  background: #fdecec;
  border: 1px solid #e53e3e;
  color: #9b2c2c;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.error-msg.show { display: flex; }

.entry-content p { margin-bottom: 16px; }
.entry-content img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 18px; }

.single-news-wrap { max-width: 820px; margin: 0 auto; }
.single-news-wrap .news-hero-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); margin-bottom: 28px; }
.single-news-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; font-size: 13.5px; color: var(--muted); }
.single-news-meta .tag { position: static; display: inline-block; }

.wpcf { clear: both; }

.aligncenter { margin-left: auto; margin-right: auto; }
