/*
Theme Name: Sharp Eye Bookkeeping
Theme URI: https://sharpeyebookkeeping.com
Author: Sharp Eye Bookkeeping
Author URI: https://sharpeyebookkeeping.com
Description: Custom theme for Sharp Eye Bookkeeping — a professional, calming, and inviting design for DFW's trusted bookkeeping partner.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: sharpeye
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --slate-900: #1a2332;
    --slate-800: #243044;
    --slate-700: #2e3f56;
    --slate-600: #3d5068;
    --slate-500: #5a7190;
    --slate-400: #8a9db8;
    --slate-300: #b4c3d5;
    --slate-200: #d5dee8;
    --slate-100: #eaeff4;
    --slate-50: #f4f7fa;

    --gold-600: #a67c3d;
    --gold-500: #c4954a;
    --gold-400: #d4aa64;
    --gold-300: #e3c48e;
    --gold-200: #f0ddb8;
    --gold-100: #faf3e6;

    --warm-white: #fdfcfa;
    --warm-gray-50: #f8f7f5;
    --warm-gray-100: #f0eeeb;
    --warm-gray-200: #e2dfd9;
    --warm-gray-300: #c8c3ba;
    --warm-gray-500: #8a847a;
    --charcoal: #3a3632;

    --text-primary: #2a2724;
    --text-secondary: #5c5650;
    --text-muted: #8a847a;
    --bg-primary: var(--warm-white);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Jost', 'Gill Sans', sans-serif;

    --section-padding: clamp(4rem, 8vw, 7rem);
    --container-width: 1200px;
    --container-padding: clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.section-label::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--gold-400);
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.section-subtext {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 560px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -20px) rotate(2deg); }
    66% { transform: translate(-10px, 10px) rotate(-1deg); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 15px) rotate(-2deg); }
    66% { transform: translate(12px, -8px) rotate(1deg); }
}
@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -15px); }
}

.fade-up { opacity: 0; animation: fadeUp 0.7s ease-out forwards; }
.fade-up-d1 { animation-delay: 0.15s; }
.fade-up-d2 { animation-delay: 0.3s; }
.fade-up-d3 { animation-delay: 0.45s; }
.fade-up-d4 { animation-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--slate-900);
    color: var(--slate-300);
    font-size: 0.8rem;
    padding: 0.6rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--slate-300); transition: color 0.3s; }
.top-bar a:hover { color: var(--gold-300); }
.top-bar-contact { display: flex; gap: 1.75rem; align-items: center; }
.top-bar-contact span { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-social { display: flex; gap: 1rem; align-items: center; }
.top-bar-social a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: background 0.3s, color 0.3s;
}
.top-bar-social a:hover { background: var(--gold-500); color: white; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--warm-white);
    border-bottom: 1px solid var(--warm-gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(26,35,50,0.08); }
.navbar .container {
    display: flex; justify-content: space-between; align-items: center; height: 76px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img,
.logo-link .custom-logo-link img,
.custom-logo-link img,
.custom-logo {
    max-height: 48px;
    width: auto;
    height: auto;
}
.footer-brand a img {
    max-height: 44px;
    width: auto;
    height: auto;
}

/* WordPress menu styling */
.nav-links,
.navbar .menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links a,
.navbar .menu a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
}
.nav-links a:hover, .nav-links a.active,
.navbar .menu a:hover,
.navbar .menu .current-menu-item > a {
    color: var(--slate-800);
    background: var(--slate-50);
}

/* Menu items - remove WP default list styles */
.navbar .menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar .menu li.menu-item-cta a {
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    color: white !important;
    background: var(--slate-800) !important;
    padding: 0.6rem 1.35rem !important;
    border-radius: 8px !important;
    transition: background 0.3s, transform 0.2s !important;
}
.navbar .menu li.menu-item-cta a:hover {
    background: var(--slate-700) !important;
    transform: translateY(-1px);
}
.nav-cta {
    font-weight: 500 !important; font-size: 0.85rem !important;
    color: white !important; background: var(--slate-800) !important;
    padding: 0.6rem 1.35rem !important; border-radius: 8px !important;
    transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--slate-700) !important; transform: translateY(-1px); }

.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--slate-800); margin: 5px 0; border-radius: 2px; transition: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    color: var(--slate-900);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    padding: 0.9rem 2rem; border-radius: 10px; border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,149,74,0.35); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    color: var(--slate-200); padding: 0.9rem 1.5rem; border-radius: 10px;
    border: 1.5px solid var(--slate-600); background: transparent; cursor: pointer;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-secondary:hover { border-color: var(--slate-400); background: rgba(255,255,255,0.04); color: white; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    color: white; background: var(--slate-800);
    padding: 0.9rem 2rem; border-radius: 10px; border: none; cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--slate-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,35,50,0.15); }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
    color: var(--slate-200); padding: 0.9rem 1.75rem; border-radius: 10px;
    border: 1.5px solid var(--slate-600); background: transparent; cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}
.btn-outline-light:hover { border-color: var(--slate-400); color: white; }

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(5rem, 10vw, 8rem);
}
.hero-geo { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-geo-shape { position: absolute; border-radius: 20px; }
.hero-geo-shape.s1 { width: 320px; height: 320px; top: -60px; right: -40px; border: 1.5px solid rgba(196,149,74,0.12); transform: rotate(15deg); animation: float1 20s ease-in-out infinite; }
.hero-geo-shape.s2 { width: 200px; height: 200px; top: 40%; left: -60px; background: rgba(196,149,74,0.04); border: 1px solid rgba(196,149,74,0.08); transform: rotate(-10deg); animation: float2 18s ease-in-out infinite; }
.hero-geo-shape.s3 { width: 140px; height: 140px; bottom: 10%; right: 15%; border: 1px solid rgba(180,195,213,0.1); border-radius: 50%; animation: float3 14s ease-in-out infinite; }
.hero-geo-shape.s4 { width: 80px; height: 80px; top: 20%; left: 30%; background: rgba(90,113,144,0.06); border-radius: 50%; animation: float1 22s ease-in-out infinite reverse; }
.hero-geo-shape.s5 { width: 260px; height: 260px; bottom: -80px; left: 20%; border: 1px solid rgba(180,195,213,0.06); transform: rotate(25deg); animation: float2 24s ease-in-out infinite; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(180,195,213,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(180,195,213,0.03) 1px, transparent 1px); background-size: 60px 60px; z-index: 0; }
.hero::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(196,149,74,0.06) 0%, transparent 60%); z-index: 0; }
.hero .container { position: relative; z-index: 1; text-align: center; max-width: 820px; }

.hero-label {
    font-family: var(--font-body); font-weight: 500; font-size: 0.78rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400);
    margin-bottom: 1.75rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-label::before, .hero-label::after { content: ''; width: 32px; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold-500)); }
.hero-label::after { background: linear-gradient(90deg, var(--gold-500), transparent); }

.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem, 6vw, 4.2rem); line-height: 1.12; color: white; margin-bottom: 1.75rem; }
.hero h1 em { font-style: italic; color: var(--gold-300); display: block; margin-top: 0.15em; }
.hero-text { font-size: 1.12rem; line-height: 1.85; color: var(--slate-300); margin: 0 auto 2.75rem; max-width: 600px; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats { display: flex; justify-content: center; gap: 1px; background: rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; max-width: 660px; margin: 0 auto; }
.hero-stat { flex: 1; padding: 1.75rem 1.5rem; text-align: center; background: rgba(26,35,50,0.5); backdrop-filter: blur(8px); transition: background 0.3s; }
.hero-stat:hover { background: rgba(26,35,50,0.7); }
.hero-stat-number { font-family: var(--font-display); font-size: 2rem; color: var(--gold-400); line-height: 1.1; margin-bottom: 0.3rem; }
.hero-stat-label { font-size: 0.78rem; color: var(--slate-400); letter-spacing: 0.05em; text-transform: uppercase; }
.hero-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { padding: 2.5rem 0; background: var(--warm-white); border-bottom: 1px solid var(--warm-gray-100); }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-bar-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.trust-bar-items { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 0.6rem; color: var(--slate-500); font-size: 0.88rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-section { padding: var(--section-padding) 0; background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: 16px; box-shadow: 0 16px 50px rgba(26,35,50,0.1); width: 100%; object-fit: cover; }
.about-accent { position: absolute; bottom: -16px; left: -16px; width: 120px; height: 120px; border-radius: 16px; background: linear-gradient(135deg, var(--gold-200), var(--gold-100)); z-index: -1; }
.about-credential-badge { position: absolute; bottom: -14px; right: 20px; z-index: 2; background: white; border-radius: 12px; padding: 0.85rem 1.15rem; box-shadow: 0 8px 28px rgba(26,35,50,0.1); display: flex; align-items: center; gap: 0.65rem; }
.about-credential-badge-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--gold-100); display: flex; align-items: center; justify-content: center; }
.about-credential-badge-text { font-size: 0.76rem; color: var(--text-muted); line-height: 1.3; }
.about-credential-badge-text strong { display: block; font-size: 0.85rem; color: var(--slate-800); font-weight: 500; }
.about-content p { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 1.25rem; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.about-value { text-align: center; padding: 1.25rem 0.75rem; border-radius: 12px; background: var(--slate-50); transition: transform 0.3s, box-shadow 0.3s; }
.about-value:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,35,50,0.06); }
.about-value-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-100); margin: 0 auto 0.75rem; display: flex; align-items: center; justify-content: center; }
.about-value h4 { font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; color: var(--slate-800); margin-bottom: 0.25rem; }
.about-value p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services-section { padding: var(--section-padding) 0; background: var(--slate-50); position: relative; }
.services-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--warm-gray-200), transparent); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-subtext { margin: 0 auto; max-width: 600px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--warm-gray-100); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-400), var(--gold-300)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,35,50,0.08); border-color: var(--gold-200); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--slate-50), var(--gold-100)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--slate-800); margin-bottom: 0.75rem; line-height: 1.3; }
.service-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-secondary); }

/* ============================================
   WHY US
   ============================================ */
.why-section { padding: var(--section-padding) 0; background: var(--warm-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--gold-100); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-list li h4 { font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--slate-800); margin-bottom: 0.15rem; }
.why-list li p { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); }
.why-card-stack { position: relative; height: 420px; }
.why-floating-card { position: absolute; background: white; border-radius: 16px; padding: 1.75rem; box-shadow: 0 10px 40px rgba(26,35,50,0.08); border: 1px solid var(--warm-gray-100); }
.why-floating-card.card-1 { top: 0; left: 10%; width: 280px; }
.why-floating-card.card-2 { top: 40%; right: 5%; width: 260px; }
.why-floating-card.card-3 { bottom: 0; left: 5%; width: 240px; }
.floating-stat { font-family: var(--font-display); font-size: 2.5rem; color: var(--slate-800); line-height: 1; margin-bottom: 0.35rem; }
.floating-stat-label { font-size: 0.82rem; color: var(--text-muted); }
.floating-bar { width: 100%; height: 6px; border-radius: 3px; background: var(--warm-gray-100); margin-top: 0.75rem; overflow: hidden; }
.floating-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); }

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: var(--section-padding) 0; background: var(--slate-900); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(196,149,74,0.08) 0%, transparent 60%); }
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 650px; margin: 0 auto; }
.cta-section .section-label { justify-content: center; color: var(--gold-400); }
.cta-section .section-label::before { background: var(--gold-500); }
.cta-section .section-heading { color: white; }
.cta-section .section-subtext { color: var(--slate-300); margin: 0 auto 2.5rem; max-width: 520px; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: var(--section-padding) 0; background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(3rem, 5vw, 4rem); }
.contact-info h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--slate-800); margin-bottom: 1.5rem; margin-top: 2rem; }
.contact-info h3:first-of-type { margin-top: 0; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--slate-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text { font-size: 0.92rem; color: var(--text-secondary); }
.contact-item-text strong { display: block; font-weight: 500; color: var(--slate-800); font-size: 0.85rem; margin-bottom: 0.1rem; }

/* WPForms styling overrides */
.contact-form-wrap { background: var(--slate-50); border-radius: 20px; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--warm-gray-100); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--slate-800); margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-form-wrap .wpforms-container input[type="text"],
.contact-form-wrap .wpforms-container input[type="email"],
.contact-form-wrap .wpforms-container input[type="tel"],
.contact-form-wrap .wpforms-container select,
.contact-form-wrap .wpforms-container textarea {
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    padding: 0.75rem 1rem !important;
    border: 1.5px solid var(--warm-gray-200) !important;
    border-radius: 10px !important;
    background: white !important;
    color: var(--text-primary) !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}
.contact-form-wrap .wpforms-container input:focus,
.contact-form-wrap .wpforms-container select:focus,
.contact-form-wrap .wpforms-container textarea:focus {
    border-color: var(--slate-400) !important;
    box-shadow: 0 0 0 3px rgba(90,113,144,0.1) !important;
}
.contact-form-wrap .wpforms-container .wpforms-submit {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    color: white !important;
    background: var(--slate-800) !important;
    padding: 0.9rem 2rem !important;
    border-radius: 10px !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s !important;
}
.contact-form-wrap .wpforms-container .wpforms-submit:hover {
    background: var(--slate-700) !important;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--slate-900); color: var(--slate-300); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: var(--slate-400); margin-top: 1rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--slate-400); transition: background 0.3s, color 0.3s; }
.footer-social a:hover { background: var(--gold-500); color: white; }
.footer-col h4 { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-200); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; list-style: none; }
.footer-col a { font-size: 0.88rem; color: var(--slate-400); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--slate-500); }
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--gold-300); }

/* WordPress footer menu */
.footer .menu { list-style: none; padding: 0; margin: 0; }
.footer .menu li { margin-bottom: 0.6rem; list-style: none; }
.footer .menu a { font-size: 0.88rem; color: var(--slate-400); transition: color 0.3s; }
.footer .menu a:hover { color: var(--gold-300); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-card-stack { height: 340px; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links, .navbar .menu { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.active, .navbar .menu.active {
        display: flex; flex-direction: column;
        position: absolute; top: 76px; left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--warm-gray-200);
        box-shadow: 0 10px 30px rgba(26,35,50,0.1);
        padding: 1rem; gap: 0;
    }
    .nav-links.active a, .navbar .menu.active a { padding: 0.75rem 1rem; display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-stats { flex-direction: column; border-radius: 12px; }
    .hero-stat { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .hero-stat:last-child { border-bottom: none; }
    .why-card-stack { height: auto; display: flex; flex-direction: column; gap: 1rem; }
    .why-floating-card { position: relative !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 100% !important; }
    .trust-bar .container { flex-direction: column; gap: 1rem; }
    .trust-bar-items { justify-content: center; }
    .about-credential-badge { display: none; }
}

/* ============================================
   WORDPRESS CORE OVERRIDES
   ============================================ */
.wp-block-image img { border-radius: 12px; }
.entry-content p { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 1.25rem; }
.entry-content h2 { font-family: var(--font-display); color: var(--slate-900); margin-bottom: 1rem; }
.entry-content h3 { font-family: var(--font-display); color: var(--slate-800); margin-bottom: 0.75rem; }

/* ============================================
   BLOG / INDUSTRY NEWS
   ============================================ */
.blog-hero {
    background: var(--slate-900); position: relative; overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0; text-align: center;
}
.blog-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(180,195,213,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(180,195,213,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.blog-hero::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,149,74,0.06) 0%, transparent 60%);
}
.blog-hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blog-hero-geo div { position: absolute; border-radius: 20px; }
.blog-hero-geo .g1 { width: 240px; height: 240px; top: -40px; right: -30px; border: 1.5px solid rgba(196,149,74,0.1); transform: rotate(15deg); animation: float1 20s ease-in-out infinite; }
.blog-hero-geo .g2 { width: 160px; height: 160px; bottom: -30px; left: -20px; border: 1px solid rgba(180,195,213,0.08); border-radius: 50%; animation: float2 18s ease-in-out infinite; }
.blog-hero .container { position: relative; z-index: 1; }
.blog-breadcrumb {
    font-size: 0.78rem; color: var(--slate-400); margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.blog-breadcrumb a { color: var(--gold-400); transition: color 0.3s; }
.blog-breadcrumb a:hover { color: var(--gold-300); }
.blog-hero h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.15; color: white;
}
.blog-hero h1 em { font-style: italic; color: var(--gold-300); }
.blog-hero-sub {
    font-size: 1.05rem; color: var(--slate-300); max-width: 560px;
    margin: 1rem auto 0; line-height: 1.8;
}
.blog-hero-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }

/* Blog Body */
.blog-body { padding: var(--section-padding) 0; background: var(--warm-white); }

/* Category Labels */
.blog-cat-label {
    font-family: var(--font-body); font-weight: 500; font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-500);
    margin-bottom: 2rem; margin-top: 3.5rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-200);
    display: flex; align-items: center; gap: 0.6rem;
}
.blog-cat-label:first-of-type,
.blog-cat-label:first-child { margin-top: 0; }

/* Article Cards */
.blog-article {
    background: white; border-radius: 16px; padding: 2rem;
    border: 1px solid var(--warm-gray-100); margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
}
.blog-article:hover {
    transform: translateY(-3px); box-shadow: 0 10px 32px rgba(26,35,50,0.06);
    border-color: var(--gold-200);
}
.blog-article::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--gold-400), var(--gold-300));
    opacity: 0; transition: opacity 0.3s;
}
.blog-article:hover::before { opacity: 1; }

.blog-article-meta {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; flex-wrap: wrap;
}
.blog-article-source {
    font-size: 0.78rem; font-weight: 500; color: var(--slate-500); letter-spacing: 0.03em;
}
.blog-article-date { font-size: 0.75rem; color: var(--text-muted); }

.blog-article h3 {
    font-family: var(--font-display); font-weight: 400;
    font-size: 1.3rem; color: var(--slate-800); margin-bottom: 0.85rem; line-height: 1.35;
}
.blog-article h3 a { transition: color 0.3s; }
.blog-article h3 a:hover { color: var(--gold-600); }

.blog-article-summary {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.25rem;
}
.blog-article-summary p {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 0.75rem;
}
.blog-article-summary p:last-child { margin-bottom: 0; }

/* Commentary Box */
.blog-article-commentary {
    background: var(--slate-50); border-radius: 12px; padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--gold-400); margin-top: 1.25rem;
}
.blog-article-commentary-label {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold-500); margin-bottom: 0.5rem;
}
.blog-article-commentary p {
    font-size: 0.92rem; line-height: 1.75; color: var(--text-secondary); margin: 0;
}

/* Read Link */
.blog-read-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 500; color: var(--gold-500);
    margin-top: 1rem; transition: color 0.3s, gap 0.3s;
}
.blog-read-link:hover { color: var(--gold-600); gap: 0.6rem; }

/* Pagination */
.blog-pagination {
    display: flex; justify-content: center; align-items: center; gap: 0.5rem;
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--warm-gray-200);
}
.blog-pagination a,
.blog-pagination span {
    font-family: var(--font-body); font-size: 0.88rem; padding: 0.5rem 1rem;
    border-radius: 8px; transition: background 0.3s, color 0.3s;
}
.blog-pagination a {
    color: var(--text-secondary); background: var(--slate-50);
}
.blog-pagination a:hover {
    background: var(--slate-100); color: var(--slate-800);
}
.blog-pagination .current {
    background: var(--slate-800); color: white;
}

/* Blog CTA */
.blog-cta {
    padding: var(--section-padding) 0; background: var(--slate-900);
    position: relative; overflow: hidden;
}
.blog-cta::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(196,149,74,0.08) 0%, transparent 60%);
}
.blog-cta-inner { text-align: center; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.blog-cta h2 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: white; line-height: 1.25; margin-bottom: 1rem;
}
.blog-cta p {
    font-size: 1.05rem; color: var(--slate-300); line-height: 1.8; margin-bottom: 2rem;
}

/* Blog responsive */
@media (max-width: 768px) {
    .blog-article { padding: 1.5rem; }
    .blog-article-commentary { padding: 1rem 1.15rem; }
}
