/* ============================================================
   ELSHAM PROPERTIES — Complete Stylesheet
   Institutional Commercial Property Development
   ============================================================ */

:root {
    --navy:       #001e40;
    --navy-mid:   #003366;
    --blue:       #335cac;
    --blue-light: #4a90d9;
    --white:      #ffffff;
    --off-white:  #f8f9fa;
    --grey-light: #f0f2f5;
    --grey:       #e0e4ea;
    --text:       #1b1c1c;
    --text-mid:   #3d4451;
    --text-muted: #5a6475;
    --border:     rgba(0,0,0,0.08);
    --shadow-sm:  0 1px 4px rgba(0,30,64,0.08);
    --shadow:     0 4px 16px rgba(0,30,64,0.12);
    --shadow-lg:  0 8px 40px rgba(0,30,64,0.18);
    --radius:     4px;
    --radius-lg:  8px;
    --nav-h:      72px;
    --max-w:      1200px;
    --ease:       all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text); background: var(--off-white);
    line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-muted); line-height: 1.75; }
.eyebrow {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.lead { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-grey      { background: var(--grey-light); }
.bg-navy      { background: var(--navy); }
.bg-navy-mid  { background: var(--navy-mid); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 9999; height: var(--nav-h);
    background: rgba(248,249,250,0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); transition: var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-h); max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
    font-size: 1.05rem; font-weight: 700; color: var(--navy);
    flex-shrink: 0; text-decoration: none; z-index: 1001;
    display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: none; align-items: center; gap: 0.125rem; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
    padding: 0.45rem 0.9rem; border-radius: var(--radius);
    transition: var(--ease); white-space: nowrap; position: relative;
}
.nav-links a:hover { color: var(--navy); background: rgba(0,30,64,0.05); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0.9rem; right: 0.9rem;
    height: 2px; background: var(--blue); border-radius: 2px;
}
.nav-cta {
    display: none; background: var(--navy-mid); color: white;
    padding: 0.6rem 1.4rem; border-radius: var(--radius);
    font-size: 0.875rem; font-weight: 600; transition: var(--ease); flex-shrink: 0;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,30,64,0.28); }
.nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: none; padding: 10px;
    z-index: 1001; flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--navy);
    border-radius: 2px; transition: var(--ease); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); z-index: 9998; padding: 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { margin-bottom: 1.25rem; }
.nav-mobile ul li a {
    display: block; padding: 0.8rem 1rem; font-size: 1rem; font-weight: 500;
    color: var(--text); border-radius: var(--radius); transition: var(--ease);
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { background: rgba(0,30,64,0.05); color: var(--navy); font-weight: 600; }
.nav-mobile-cta {
    display: block; width: 100%; text-align: center; background: var(--navy-mid);
    color: white; padding: 0.95rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem; transition: var(--ease);
}
.nav-mobile-cta:hover { background: var(--navy); }
@media (min-width: 960px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; align-items: center; }
    .nav-toggle { display: none; }
    .nav-mobile { display: none !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: var(--radius);
    font-size: 0.9rem; font-weight: 600; transition: var(--ease);
    border: 2px solid transparent; text-decoration: none; white-space: nowrap; cursor: pointer;
}
.btn-primary   { background: var(--navy-mid); color: white; border-color: var(--navy-mid); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-white     { background: white; color: var(--navy); border-color: white; }
.btn-white:hover { background: transparent; color: white; }
.btn-outline   { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: white; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; padding-top: var(--nav-h);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3f6e 100%);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,20,50,0.72); }
.hero-grid {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cdefs%3E%3Cpattern id='g' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M20 0L0 0 0 20' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23g)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; padding: 5rem 0; max-width: 800px; }
.hero-badge {
    display: inline-block; background: rgba(255,255,255,0.13); color: rgba(255,255,255,0.88);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.45rem 1.1rem; border-radius: 2px; margin-bottom: 1.75rem;
    border: 1px solid rgba(255,255,255,0.15);
}
.hero h1  { color: white; margin-bottom: 1.5rem; }
.hero .lead { color: rgba(255,255,255,0.78); max-width: 540px; margin-bottom: 2.75rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Page hero */
.page-hero {
    position: relative; overflow: hidden;
    padding: calc(var(--nav-h) + 5rem) 0 5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,20,50,0.75); }
.page-hero-grid {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cdefs%3E%3Cpattern id='g' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M20 0L0 0 0 20' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23g)'/%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-badge {
    display: inline-block; background: rgba(255,255,255,0.13); color: rgba(255,255,255,0.88);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.15);
}
.page-hero h1 { color: white; }
.page-hero .lead { color: rgba(255,255,255,0.75); margin-top: 1rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-bar { background: var(--navy); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-value { font-size: clamp(2rem,4vw,3.25rem); font-weight: 800; color: white; line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin: 0.5rem 0 1rem; }
.section-lead { max-width: 600px; font-size: 1.05rem; }
.section-header.center .section-lead { margin: 0 auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.75rem; }
.card-icon {
    width: 52px; height: 52px; border-radius: var(--radius-lg);
    background: rgba(51,92,172,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem;
}
.card-body h3 { margin-bottom: 0.75rem; }
.card-body p { font-size: 0.9rem; }

.grid-2 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); }
@media (min-width: 960px) {
    .grid-2 { grid-template-columns: repeat(2,1fr); }
    .grid-3 { grid-template-columns: repeat(3,1fr); }
    .grid-4 { grid-template-columns: repeat(4,1fr); }
}

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-card .card-img {
    height: 230px; overflow: hidden; position: relative; background: #c8d4e3;
}
.portfolio-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.portfolio-card:hover .card-img img { transform: scale(1.05); }
.card-tag {
    position: absolute; top: 1rem; left: 1rem; background: var(--navy); color: white;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 2px;
}
.card-status {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 20px;
}
.status-completed { background: rgba(26,122,74,0.15); color: #1a7a4a; }
.status-active     { background: rgba(51,92,172,0.15); color: var(--blue); }
.portfolio-meta {
    display: flex; flex-wrap: wrap; gap: 0.25rem 1.5rem;
    padding: 1rem 1.75rem; border-top: 1px solid var(--border);
}
.meta-item .meta-label { display: block; color: var(--text-muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.meta-item .meta-value { font-weight: 700; color: var(--navy); font-size: 0.875rem; }

/* ============================================================
   TWO COLUMN
   ============================================================ */
.two-col { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col.reverse .two-col-img { order: -1; }
@media (min-width: 960px) { .two-col.reverse .two-col-img { order: 1; } }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; background: #c8d4e3; aspect-ratio: 4/3; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text h2 { margin: 0.5rem 0 1rem; }
.two-col-text p { margin-bottom: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0 2rem; }
.feature-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text-muted); font-size: 0.9rem; }
.feature-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3,1fr); } }
.pillar {
    padding: 2.25rem; border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); transition: var(--ease);
}
.pillar:hover { background: rgba(255,255,255,0.07); }
.pillar-num { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.12); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.05em; }
.pillar h3 { color: white; margin-bottom: 0.75rem; font-size: 1.15rem; }
.pillar p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); padding: 6rem 0; text-align: center; }
.cta-band h2 { color: white; margin-bottom: 1.25rem; }
.cta-band p  { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 2.75rem; font-size: 1.05rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { height: 220px; background: #c8d4e3; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.25rem 1rem 1.5rem; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.team-role { font-size: 0.75rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.team-bio  { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }
.team-linkedin { display: inline-block; margin-top: 0.75rem; font-size: 0.8rem; font-weight: 600; color: var(--blue); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card .card-img { height: 210px; overflow: hidden; background: #c8d4e3; }
.blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover .card-img img { transform: scale(1.05); }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.blog-cat  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.blog-date { font-size: 0.75rem; color: var(--text-muted); }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--blue); }
.read-more { display: inline-block; margin-top: 1rem; font-size: 0.875rem; font-weight: 600; color: var(--blue); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-sm); }
.form-card h3 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--grey);
    border-radius: var(--radius); font-size: 0.9rem; color: var(--text);
    background: white; transition: var(--ease); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(51,92,172,0.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
    width: 100%; padding: 0.95rem; background: var(--navy-mid); color: white;
    border: none; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600;
    cursor: pointer; transition: var(--ease);
}
.form-submit:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ============================================================
   CAPITAL CARDS (Investors)
   ============================================================ */
.capital-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--ease); position: relative; }
.capital-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.capital-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.capital-featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: white; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 20px;
}
.capital-return { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.capital-return-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.capital-return-value { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }

/* ============================================================
   CONTACT LAYOUT
   ============================================================ */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(51,92,172,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0; cursor: pointer; font-weight: 600; color: var(--navy);
    font-size: 0.95rem; gap: 1rem;
}
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; background: rgba(51,92,172,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--ease); color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 1.25rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   POST CONTENT
   ============================================================ */
.post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); max-width: 760px; }
.post-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.post-content p  { margin-bottom: 1.5rem; color: var(--text-mid); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; color: var(--text-mid); }
.post-content blockquote { border-left: 3px solid var(--blue); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--grey-light); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.post-content img { border-radius: var(--radius-lg); margin: 2rem 0; }
.post-content a { color: var(--blue); text-decoration: underline; }

/* ============================================================
   SERVICE ICON CARD
   ============================================================ */
.service-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.25rem; margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; }
.service-metric { display: inline-block; margin-top: 1.25rem; font-size: 0.78rem; font-weight: 700; color: var(--blue); background: rgba(51,92,172,0.08); padding: 0.35rem 0.75rem; border-radius: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: white; padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 0.75rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: var(--ease); }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.75rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.8rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; padding: 1rem 1.5rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; z-index: 99999; transform: translateY(80px); opacity: 0; transition: all 0.3s ease; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #1a7a4a; color: white; }
.toast.error   { background: #ba1a1a; color: white; }

/* ============================================================
   ADMIN NOTICE
   ============================================================ */
.admin-bar { background: var(--navy-mid); color: white; padding: 0.5rem 1.5rem; font-size: 0.8rem; display: flex; justify-content: space-between; align-items: center; }
.admin-bar a { color: rgba(255,255,255,0.8); margin-left: 1rem; }
.admin-bar a:hover { color: white; }

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; padding: 0.5rem 1rem; border: 1.5px solid var(--grey); border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; transition: var(--ease); }
.pagination a:hover { background: var(--navy); color: white; border-color: var(--navy); }
.pagination .current { background: var(--navy-mid); color: white; border-color: var(--navy-mid); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 599px) {
    .section { padding: 4rem 0; }
    .hero-btns { flex-direction: column; }
    .btn { justify-content: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .two-col { gap: 2.5rem; }
}

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   DROPDOWN NAV
   ============================================================ */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav-arrow { font-size: 0.65rem; opacity: 0.6; transition: transform 0.2s; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); min-width: 180px; z-index: 9999; padding: 0.4rem 0;
    white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block; padding: 0.6rem 1.1rem; font-size: 0.845rem; font-weight: 500;
    color: var(--text-mid); text-decoration: none; transition: var(--ease);
}
.nav-dropdown-menu a:hover { background: var(--grey-light); color: var(--navy); }

/* ============================================================
   INLINE IMAGE UPLOAD BUTTON (page editor)
   ============================================================ */
.img-field-wrap { display: flex; gap: 0.5rem; align-items: center; }
.img-field-wrap input { flex: 1; }
.upload-btn {
    padding: 0.5rem 0.85rem; background: #f0f2f5; border: 1.5px solid #e0e4ea;
    border-radius: 4px; cursor: pointer; font-size: 0.78rem; font-weight: 600;
    color: #001e40; white-space: nowrap; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.upload-btn:hover { background: #e0e4ea; }

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
    transition: var(--ease);
}
.footer-social a:hover { background: var(--blue); color: white; }
.footer-social a svg { display: block; }

/* Footer always shows — ensure grid never collapses */
.footer-grid { display: grid; gap: 3rem; margin-bottom: 4rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
