/*
Theme Name: SimplifySEO
Theme URI: https://simplifyseo.co.uk
Author: Olumide Ola
Author URI: https://simplifyseo.co.uk
Description: A premium, AI-native SEO agency theme with a focus on high-fidelity design and performance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simplifyseo
*/

:root {
    /* Core (Always constant) */
    --blue: #1a56db;
    --blue-bright: #3b82f6;
    --blue-glow: #60a5fa;
    --gold: #f0b429;
    --r: 14px;
    --r-lg: 24px;
}

/* Dark Theme (Default) */
[data-theme="dark"],
:root:not([data-theme="light"]) {
    --bg: #080f1e;
    --bg-mid: #0d1a35;
    --bg-light: #132040;
    --text: #ffffff;
    --text-off: #e8eef8;
    --text-muted: #8497b8;
    --border: rgba(59, 130, 246, 0.15);
    --glass: rgba(13, 26, 53, 0.7);
    --nav-bg: rgba(8, 15, 30, 0.85);
}

/* Light Theme */
[data-theme="light"] {
    --bg: #f8fafc;
    --bg-mid: #f1f5f9;
    --bg-light: #ffffff;
    --text: #0f172a;
    --text-off: #334155;
    --text-muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
    --nav-bg: rgba(248, 250, 252, 0.85);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-off);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* ── CURSOR ── */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--blue-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

/* ── BACKGROUND ── */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(26, 86, 219, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(26, 86, 219, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
        var(--bg);
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── NOISE ── */
.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

/* ── WRAPPER ── */
.wrap {
    position: relative;
    z-index: 2;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: var(--text) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 0 20px rgba(26, 86, 219, 0.4);
    transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    box-shadow: 0 0 32px rgba(59, 130, 246, 0.6) !important;
    transform: translateY(-1px);
}

.theme-toggle {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s;
    padding: 0;
}

.theme-toggle:hover {
    background: var(--bg-light);
    border-color: var(--blue-bright);
    transform: scale(1.1);
}

.theme-toggle svg { width: 20px; height: 20px; }

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 6%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    width: 100%;
    padding: 140px 0 80px;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img-inner {
    width: 100%;
    max-width: 520px;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(26, 86, 219, 0.18));
    mix-blend-mode: multiply;
    border-radius: 16px;
}

[data-theme="dark"] .hero-image img {
    mix-blend-mode: screen;
    filter: drop-shadow(0 24px 48px rgba(59, 130, 246, 0.3)) brightness(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 130px 0 60px; }
    .hero-text { text-align: center; }
    .hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
    .hero-sub { margin: 20px auto 0; }
    .hero-actions { justify-content: center; }
    .hero-img-inner { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .hero-container { gap: 32px; padding: 110px 0 48px; }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
    transition: background 0.4s, opacity 0.4s;
}

[data-theme="light"] .video-overlay {
    opacity: 0.8;
}

[data-theme="light"] .hero-video {
    opacity: 0.2;
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    animation: breathe 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--blue-glow);
    background: rgba(59, 130, 246, 0.08);
    margin-bottom: 32px;
    width: fit-content;
    opacity: 0;
    animation: slideUp 0.7s 0.2s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(96, 165, 250, 0); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 600px;
    color: var(--text);
    opacity: 0;
    animation: slideUp 0.8s 0.35s forwards;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
    border-radius: 2px;
    animation: lineGrow 1s 1.2s both;
    transform-origin: left;
}

@keyframes lineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 500px;
    margin: 20px 0 0;
    line-height: 1.75;
    opacity: 0;
    animation: slideUp 0.8s 0.5s forwards;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
    opacity: 0;
    animation: slideUp 0.8s 0.65s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: var(--text);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: none;
    box-shadow: 0 8px 32px rgba(26, 86, 219, 0.4);
    transition: box-shadow 0.3s, transform 0.2s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5); transform: translateY(-2px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-off);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: none;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin: 52px 0 0;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--glass);
    backdrop-filter: blur(16px);
    width: fit-content;
    opacity: 0;
    animation: slideUp 0.8s 0.8s forwards;
}

.stat { padding: 28px 48px; border-right: 1px solid var(--border); position: relative; }
.stat:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text), var(--blue-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ── SECTION COMMONS ── */
section { padding: 110px 6%; position: relative; }

section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-glow);
    margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--blue-glow); border-radius: 2px; }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 640px;
    margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); max-width: 520px; font-size: 1.05rem; font-weight: 400; line-height: 1.8; margin-bottom: 64px; }

/* ── SERVICES ── */
.services { background: var(--bg-mid); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    background: transparent;
}
.svc-card { 
    background: var(--bg-mid); 
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 44px 36px; 
    position: relative; 
    overflow: hidden; 
    transition: all 0.3s; 
    display: flex;
    flex-direction: column;
    height: 100%;
}
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), transparent); opacity: 0; transition: opacity 0.3s; }
.svc-card:hover { background: var(--bg-light); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-icon { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); box-shadow: 0 8px 24px rgba(26, 86, 219, 0.4); transform: scale(1.05); }
.svc-icon {
    width: 52px; height: 52px; border-radius: 14px; background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 24px; transition: all 0.3s;
}
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.svc-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ── HOW ── */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.how-steps::before {
    content: ''; position: absolute; top: 32px; left: calc(16.66%); right: calc(16.66%); height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); z-index: 0;
}
.step-card { padding: 0 10px; text-align: center; position: relative; z-index: 1; }


.step-num {
    width: 64px; height: 64px; border-radius: 50%; background: var(--bg-mid); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--blue-glow); position: relative; transition: all 0.3s;
}
.step-card:hover .step-num { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-color: transparent; color: var(--text); box-shadow: 0 0 32px rgba(59, 130, 246, 0.4); }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* ── PACKAGES ── */
.packages { background: var(--bg-mid); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pkg-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 44px 36px;
    position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex; flex-direction: column; height: 100%;
}
.pkg-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--border), transparent); transition: background 0.3s; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
.pkg-card.featured { background: linear-gradient(160deg, var(--bg-light) 0%, rgba(26, 86, 219, 0.12) 100%); border-color: rgba(59, 130, 246, 0.4); transform: scale(1.03); box-shadow: 0 0 60px rgba(26, 86, 219, 0.15); }
.pkg-card.featured::before { background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue-glow)); }
.pkg-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.featured-badge { position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: var(--text); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
.pkg-name { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1; }
.pkg-price sup { font-size: 1.4rem; vertical-align: super; font-weight: 600; margin-right: 2px; }
.pkg-price sub { font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text-muted); font-weight: 400; vertical-align: baseline; margin-left: 4px; }
.pkg-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); line-height: 1.7; }
.pkg-features { list-style: none; margin-bottom: 36px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 0.88rem; color: var(--text-off); border-bottom: 1px solid rgba(59, 130, 246, 0.06); }
.pkg-features li:last-child { border-bottom: none; }
.check { width: 18px; height: 18px; border-radius: 50%; background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--blue-glow); flex-shrink: 0; margin-top: 1px; }
.pkg-btn { display: block; text-align: center; padding: 14px; border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem; cursor: none; transition: all 0.3s; text-decoration: none; }
.pkg-btn-outline { border: 1px solid var(--border); color: var(--text-off); background: transparent; }
.pkg-btn-outline:hover { border-color: rgba(59, 130, 246, 0.5); background: rgba(59, 130, 246, 0.08); color: var(--text); }
.pkg-btn-filled { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: var(--text); border: 1px solid transparent; box-shadow: 0 8px 24px rgba(26, 86, 219, 0.35); }
.pkg-btn-filled:hover { box-shadow: 0 12px 36px rgba(59, 130, 246, 0.5); transform: translateY(-1px); }

/* ── WHY ── */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.why-pt {
    display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; background: var(--glass); border: 1px solid var(--border);
    border-radius: var(--r); backdrop-filter: blur(12px); transition: border-color 0.3s, transform 0.3s; cursor: default;
}
.why-pt:hover { border-color: rgba(59, 130, 246, 0.35); transform: translateX(4px); }
.why-pt-icon {
    width: 40px; height: 40px; border-radius: 100px; background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: all 0.3s;
}
.why-pt:hover .why-pt-icon { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-color: transparent; }
.why-pt h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.why-pt p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ── VISUAL PANEL ── */
.vis-panel { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; backdrop-filter: blur(16px); position: relative; overflow: hidden; }
.vis-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue-glow)); }
.vis-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.vis-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text); }
.vis-live { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--blue-glow); font-weight: 500; }
.vis-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
.metric-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric-top { display: flex; justify-content: space-between; align-items: center; }
.metric-label { font-size: 0.8rem; color: var(--text-muted); }
.metric-val { font-size: 0.8rem; font-weight: 600; color: var(--blue-glow); }
.metric-track { height: 6px; background: rgba(59, 130, 246, 0.1); border-radius: 100px; overflow: hidden; }
.metric-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--blue-glow)); transform: scaleX(0); transform-origin: left; animation: fillBar 1.5s ease forwards; }
@keyframes fillBar { to { transform: scaleX(1); } }
.vis-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kpi { background: rgba(59, 130, 246, 0.06); border: 1px solid rgba(59, 130, 246, 0.12); border-radius: 10px; padding: 16px; }
.kpi-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, var(--text), var(--blue-glow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 2px; }
.kpi-label { font-size: 0.75rem; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg-mid); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 32px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.testi-card::before { content: '”'; position: absolute; top: -10px; right: 24px; font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 700; color: rgba(59, 130, 246, 0.06); line-height: 1; pointer-events: none; }
.testi-card:hover { border-color: rgba(59, 130, 246, 0.3); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { width: 16px; height: 16px; background: var(--gold); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.testi-text { font-size: 0.9rem; line-height: 1.8; color: var(--text-off); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; color: var(--text); flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: none; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text); gap: 16px; user-select: none; transition: color 0.2s; }
.faq-q:hover { color: var(--blue-glow); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-muted); transition: all 0.3s; }
.faq-item.open .faq-icon { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-color: transparent; color: var(--text); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; padding: 0; }
.faq-item.open .faq-a { max-height: 180px; padding: 0 0 24px; }

/* ── CTA ── */
.cta-sec { text-align: center; position: relative; overflow: hidden; padding: 120px 6%; }
.cta-sec::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(26, 86, 219, 0.12) 0%, transparent 65%); pointer-events: none; }
.cta-sec h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; max-width: 720px; margin: 0 auto 20px; line-height: 1.15; letter-spacing: -0.02em; }
.cta-sec p { color: var(--text-muted); max-width: 480px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer { background: var(--bg-mid); border-top: 1px solid var(--border); padding: 44px 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 0.83rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ── FLOATING ORBS ── */
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); animation: float 8s ease-in-out infinite; }
.orb-1 { width: 300px; height: 300px; background: rgba(26, 86, 219, 0.08); top: 10%; right: 5%; animation-delay: 0s; }
.orb-2 { width: 200px; height: 200px; background: rgba(59, 130, 246, 0.06); bottom: 20%; left: 3%; animation-delay: 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

/* ── ANIMATIONS ── */
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid { grid-template-columns: 1fr; }
    .why-layout { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .how-steps::before { display: none; }
}
@media(max-width:768px) {
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; width: 100%; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
}

/* ── WORDPRESS OVERRIDES ── */
.aligncenter { text-align: center; display: block; margin: 20px auto; }
.wp-block-image img { border-radius: var(--r); }
.wp-caption { background: var(--bg-mid); padding: 10px; border-radius: var(--r); margin-bottom: 20px; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 5px; }

/* Blog Specific Styles */
.blog-hero { padding: 180px 6% 80px; text-align: center; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; background: linear-gradient(135deg, var(--text), var(--blue-glow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.blog-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.blog-container { padding: 0 6% 120px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.post-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; }
.post-card:hover { transform: translateY(-8px); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.post-img { aspect-ratio: 16/10; background: var(--bg-light); position: relative; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-img img { transform: scale(1.05); }
.post-content { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.post-meta { display: flex; gap: 16px; font-size: 0.75rem; color: var(--blue-glow); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.post-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: var(--text); transition: color 0.2s; }
.post-card:hover h3 { color: var(--blue-bright); }
.post-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.post-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.post-author { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-off); }

/* Single Post Styles */
.post-header { padding: 180px 6% 60px; max-width: 900px; margin: 0 auto; text-align: center; }
.post-label { display: inline-block; color: var(--blue-glow); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.post-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 32px; color: var(--text); }
.post-meta-strip { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: 0.9rem; color: var(--text-muted); }
.post-meta-strip span { border-left: 1px solid var(--border); padding-left: 24px; }
.post-meta-strip span:first-child { border-left: none; padding-left: 0; }
.featured-img { width: 100%; max-width: 1100px; margin: 0 auto 80px; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5); border: 1px solid var(--border); }
.featured-img img { width: 100%; height: auto; display: block; }
.post-body { max-width: 800px; margin: 0 auto 120px; padding: 0 6%; }
.post-body p { margin-bottom: 28px; color: var(--text-off); }
.post-body h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text); margin: 60px 0 24px; line-height: 1.2; }
.post-body blockquote { border-left: 4px solid var(--blue-bright); padding: 20px 40px; background: var(--bg-mid); font-style: italic; font-size: 1.2rem; color: var(--blue-glow); border-radius: 0 var(--r) var(--r) 0; margin: 40px 0; }

/* ==========================================================================
   WIDGETS & SIDEBAR
   ========================================================================== */
.widget-area .widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
[data-theme="light"] .widget-area .widget {
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme="light"] .widget-title {
    border-bottom: 1px solid var(--border-color);
    color: var(--heading-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget ul li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
[data-theme="light"] .widget ul li {
    border-bottom: 1px dashed var(--border-color);
}
.widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.widget a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.widget a:hover {
    color: var(--blue-glow);
}

/* ==========================================================================
   WORDPRESS COMMENTS
   ========================================================================== */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.comments-title, .comment-reply-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 24px;
}

.comment-reply-title a { color: var(--blue-glow); font-size: 0.9rem; margin-left: 10px; }

.comment-list {
    list-style: none !important;
    padding: 0;
    margin: 0 0 3rem 0;
}
.comment-list .comment {
    margin-bottom: 2rem;
    padding: 0;
    list-style: none !important;
}
.comment-list .children {
    list-style: none !important;
    margin: 1.5rem 0 0 3rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border);
}

.comment-body {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.comment-meta img.avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    border: 2px solid var(--border);
}
.comment-author b {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text);
}
.comment-metadata a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
}
.comment-metadata a:hover { color: var(--text); }

.comment-content p {
    color: var(--text-off);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.reply a {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-glow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    background: rgba(59, 130, 246, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    transition: background 0.3s, color 0.3s;
}
.reply a:hover {
    color: #fff;
    background: var(--blue-bright);
}

#respond {
    background: var(--bg-mid);
    border-radius: var(--r-lg);
    padding: 32px;
    border: 1px solid var(--border);
    margin-top: 40px;
}

.comment-form p {
    margin-bottom: 20px;
}
.comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}
.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.comment-form input[type="submit"] {
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: none;
    box-shadow: 0 4px 20px rgba(26,86,219,0.3);
    transition: box-shadow 0.3s, transform 0.2s;
    width: auto;
}
.comment-form input[type="submit"]:hover {
    box-shadow: 0 8px 32px rgba(26,86,219,0.4);
    transform: translateY(-2px);
}

.logged-in-as, .comment-notes {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.logged-in-as a { color: var(--blue-glow); text-decoration: none; }
.logged-in-as a:hover { color: var(--text); }

/* ==========================================================================
   WP MENU FIXES & DROPDOWNS
   ========================================================================== */
.nav-menu-list, .footer-menu-list {
    display: flex;
    gap: 32px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    align-items: center;
}
.footer-menu-list {
    gap: 28px;
    flex-wrap: wrap;
}
.nav-menu-list li, .footer-menu-list li {
    list-style: none !important;
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
}
.nav-menu-list li a, .footer-menu-list li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
}
.footer-menu-list li a {
    font-size: 0.83rem;
}
.nav-menu-list li a:hover, .footer-menu-list li a:hover {
    color: var(--text);
}

/* Sub-Menu (Dropdown) Styling */
ul.nav-menu-list, ul.footer-menu-list,
.nav-menu-list li, .footer-menu-list li,
.nav-menu-list ul, .nav-menu-list li::before {
    list-style-type: none !important;
    list-style: none !important;
}

.nav-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none !important;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.nav-menu-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu-list .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
[data-theme="light"] .nav-menu-list .sub-menu li {
    border-bottom: 1px solid var(--border);
}
.nav-menu-list .sub-menu li:last-child {
    border-bottom: none;
}
.nav-menu-list .sub-menu a {
    padding: 10px 20px;
    white-space: nowrap;
}
.nav-menu-list .sub-menu a:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* ==========================================================================
   INTERIOR PAGES CSS
   ========================================================================== */
/* ── ABOUT PAGE ── */
.about-hero { min-height: 60vh; display: flex; align-items: center; padding-top: 140px; text-align: center; }
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 24px; }
.about-hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.mission { background: radial-gradient(ellipse 70% 50% at 0% 50%, rgba(26,86,219,0.06) 0%, transparent 60%), var(--bg-mid); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text h2 { margin-bottom: 20px; }
.mission-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stat-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.stat-box-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--blue); margin-bottom: 4px; }
.stat-box-label { font-size: 0.85rem; color: var(--text-muted); }
.mission-visual { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.mission-visual-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.mission-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--blue); background: rgba(26,86,219,0.08); border: 1px solid rgba(26,86,219,0.2); border-radius: 100px; padding: 5px 14px; }
.mission-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }
.mission-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.mission-row:last-child { border-bottom: none; }
.mission-row-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(26,86,219,0.08); border: 1px solid rgba(26,86,219,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); stroke: var(--blue); }
.mission-row-text p { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.mission-row-text span { font-size: 0.78rem; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--r); padding: 36px 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: box-shadow 0.3s, transform 0.3s; }
.value-card:hover { box-shadow: 0 8px 32px rgba(26,86,219,0.1); transform: translateY(-4px); }
.value-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(26,86,219,0.08); border: 1px solid rgba(26,86,219,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--blue); stroke: var(--blue); }
.team { background: radial-gradient(ellipse 60% 55% at 100% 0%, rgba(26,86,219,0.06) 0%, transparent 60%), var(--bg-mid); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: box-shadow 0.3s, transform 0.3s; }
.team-card:hover { box-shadow: 0 8px 32px rgba(26,86,219,0.1); transform: translateY(-4px); }
.team-av { width: 100%; height: 220px; background: linear-gradient(135deg, rgba(26,86,219,0.1), rgba(59,130,246,0.05)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--blue); }
.team-info { padding: 24px; }
.team-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.about-cta { text-align: center; background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(26,86,219,0.08) 0%, transparent 60%), var(--bg); }
.about-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text); margin-bottom: 16px; }
.about-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 40px; }

/* ── CONTACT PAGE ── */
.contact-wrap { min-height: 100vh; display: flex; align-items: center; padding-top: 140px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 24px; }
.contact-info h1 em { font-style: normal; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-info p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; max-width: 480px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.method-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(26,86,219,0.08); border: 1px solid rgba(26,86,219,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.method-title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text); font-size: 1.1rem; margin-bottom: 4px; }
.method-desc { color: var(--text-muted); font-size: 0.95rem; }
.method-desc a { color: var(--blue); text-decoration: none; font-weight: 500; }
.contact-form-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 48px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-control { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 1rem; transition: all 0.3s; }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; padding: 16px 32px; border-radius: 100px; font-weight: 600; font-size: 1rem; text-decoration: none; border: none; cursor: none; box-shadow: 0 4px 20px rgba(26,86,219,0.3); transition: box-shadow 0.3s, transform 0.2s; }
.btn-submit:hover { box-shadow: 0 8px 32px rgba(26,86,219,0.4); transform: translateY(-2px); }

@media (max-width: 1024px) {
    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-box { padding: 32px; }
}
@media (max-width: 640px) {
    .team-grid, .values-grid { grid-template-columns: 1fr; }
    .mission-stats { grid-template-columns: 1fr 1fr; }
}

