/*
Theme Name: Financial Consulting Service Provider
Theme URI: https://sudhanshu-financial.com
Author: Sudhanshu Kumar
Author URI: https://sudhanshu-financial.com
Description: A modern, clean, and responsive WordPress theme designed for financial consulting firms and advisors to showcase services and build client trust.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: financial-services, consulting, business, corporate, finance, advisory, professional, responsive-layout, custom-logo, seo-friendly
Text Domain: financial-consulting
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary: #0EACAD;
    --primary-dark: #0b9192;
    --primary-light: #e0f7f7;
    --navy: #1A2C5B;
    --navy-dark: #0f1a38;
    --navy-light: #253570;
    --secondary: #F0F2F5;
    --bg: #FFFFFF;
    --bg-light: #F7F8FA;
    --text-dark: #1A1A2E;
    --text-mid: #333333;
    --text-light: #666666;
    --blue-accent: #1E4FA3;
    --red-accent: #D32F2F;
    --gold: #F0A500;
    --white: #FFFFFF;
    --border: #DEE2E8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.11);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Segoe UI', Arial, Helvetica, sans-serif;
    --transition: all 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-mid);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}
p { margin-bottom: 1rem; color: var(--text-mid); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-navy { background: var(--navy); }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--bg-light); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    position: relative;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--navy));
    border-radius: 2px;
    margin: 12px auto 0;
}
.section-title.left::after { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,172,173,0.35);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,44,91,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 38px; font-size: 1.05rem; }

/* ============================================================
   FLASH NOTIFICATION BAR
   ============================================================ */
#flash-notification-bar {
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
}
.flash-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.flash-label {
    background: var(--primary);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
}
.flash-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.flash-ticker-inner {
    display: flex;
    gap: 50px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}
.flash-ticker-inner span {
    font-size: 0.85rem;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,0.3);
}
.flash-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 8px;
    transition: var(--transition);
}
.flash-close:hover { color: var(--white); }
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
#top-info-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}
.top-bar-item i { color: var(--primary); }
.top-bar-item a { color: rgba(255,255,255,0.8); }
.top-bar-item a:hover { color: var(--primary); }
#live-datetime {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
#live-datetime i { color: var(--primary); }
#live-date-display { font-weight: 600; }
#live-time-display {
    background: var(--primary);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.78rem;
}
.top-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.top-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}
#site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo img { height: 52px; width: auto; }
.logo-text { line-height: 1.2; }
.logo-text .logo-main {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    letter-spacing: -0.3px;
}
.logo-text .logo-sub {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--primary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-navigation { display: flex; align-items: center; gap: 4px; }
#main-navigation ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
#main-navigation ul li { position: relative; }
#main-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
#main-navigation ul li a:hover,
#main-navigation ul li.current-menu-item > a,
#main-navigation ul li.current-menu-parent > a {
    color: var(--primary);
    background: var(--primary-light);
}
#main-navigation ul li.menu-item-has-children > a::after {
    content: '▾';
    font-size: 0.7rem;
    margin-left: 2px;
}
/* Dropdown */
#main-navigation ul li .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
    padding: 8px;
    border-top: 3px solid var(--primary);
}
#main-navigation ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#main-navigation ul li .sub-menu li a {
    padding: 9px 14px;
    font-size: 0.85rem;
    color: var(--text-mid);
    border-radius: var(--radius);
    text-transform: none;
    letter-spacing: 0;
}
#main-navigation ul li .sub-menu li a:hover { color: var(--primary); background: var(--primary-light); }
/* 3rd level */
#main-navigation ul li .sub-menu li .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 8px;
}
.header-cta { display: flex; align-items: center; gap: 10px; }
/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 8px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.1rem;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
}
.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1051;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
}
.mobile-menu-panel.open { transform: translateX(0); }
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 2px solid var(--primary);
    background: var(--navy);
}
.mobile-nav-header .logo-main { color: var(--white); font-size: 1rem; font-weight: 700; }
.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}
.mobile-nav-list { padding: 12px; }
.mobile-nav-list ul { padding: 0; margin: 0; }
.mobile-nav-list ul li { border-bottom: 1px solid var(--border); }
.mobile-nav-list ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}
.mobile-nav-list ul li a:hover { color: var(--primary); }
.mobile-nav-list ul li .sub-menu { display: none; padding-left: 16px; }
.mobile-nav-list ul li.open > .sub-menu { display: block; }

/* ============================================================
   HERO / BANNER
   ============================================================ */
#hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 70%, #1e5a8a 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
#hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230EACAD' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,172,173,0.2);
    border: 1px solid rgba(14,172,173,0.4);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge span { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--primary);
    position: relative;
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
}
.hero-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
}
.service-mini-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.service-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.07);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
}
.service-mini-item i { color: var(--primary); font-size: 1rem; }
.hero-floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    line-height: 1.2;
    animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
#trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
}
.trust-item i { color: var(--primary); font-size: 1.2rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services-section { background: var(--bg-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--navy));
    transition: width 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.service-card:hover::before { width: 100%; opacity: 0.03; }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light), rgba(14,172,173,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--navy));
    color: var(--white);
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin: 0; }
.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}
.service-card .service-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { background: var(--white); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
.why-us-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.why-us-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.why-us-item:hover { background: var(--primary-light); transform: translateX(4px); }
.why-us-item-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.why-us-item-text h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.why-us-item-text p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.why-us-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stat-card:nth-child(odd) { margin-top: 24px; }
.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
}
#cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(14,172,173,0.2), transparent 60%);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-text h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.8); margin: 0; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-info .author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-info .author-role { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process-section { background: var(--white); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--navy));
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.process-step:hover .step-num {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.process-step h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--text-light); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq-section { background: var(--bg-light); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--primary); }
.faq-question {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}
.faq-question span { font-size: 0.92rem; font-weight: 600; color: var(--navy); flex: 1; }
.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
#blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img .blog-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card-body { padding: 22px; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-top: 14px; }
.blog-read-more:hover { gap: 10px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.main-content-area { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.main-content-area.no-sidebar { grid-template-columns: 1fr; }
aside.sidebar { position: sticky; top: 100px; }
.widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}
.widget ul { padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.widget ul li a:hover { color: var(--primary); }
.widget ul li a::before { content: '›'; color: var(--primary); font-size: 1.1rem; }
.search-form { display: flex; gap: 8px; }
.search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}
.search-form input:focus { border-color: var(--primary); }
.search-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.search-form button:hover { background: var(--primary-dark); }
.widget-recent-post { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.widget-recent-post:last-child { border-bottom: none; }
.widget-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    flex-shrink: 0;
    overflow: hidden;
}
.widget-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-post-info .post-title-link { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.4; display: block; }
.widget-post-info .post-title-link:hover { color: var(--primary); }
.widget-post-info .post-date { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    color: var(--text-mid);
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 4px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tag-cloud a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-single-header { padding: 60px 0 40px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.post-single-header .post-cat-tag { display: inline-block; background: var(--primary); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.post-single-header h1 { font-size: 2rem; color: var(--white); margin-bottom: 16px; }
.post-meta-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-meta-bar span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.post-meta-bar i { color: var(--primary); }
.post-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; max-height: 500px; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content { line-height: 1.85; font-size: 0.97rem; }
.post-content h2,h3 { margin: 1.5rem 0 0.75rem; color: var(--navy); }
.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-mid);
}
.post-tags { margin-top: 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-tags .tag-label { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.share-section { margin: 32px 0; padding: 24px; background: var(--bg-light); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.share-section h4 { font-size: 1rem; color: var(--navy); margin-bottom: 14px; }
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.share-btn:hover { opacity: 0.9; transform: translateY(-2px); color: var(--white); }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-li { background: #0A66C2; }
.share-wa { background: #25D366; }
.post-author-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin: 32px 0;
    align-items: flex-start;
}
.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}
.author-box-info h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.author-box-info p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.related-posts { margin: 40px 0; }
.related-posts h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin: 32px 0; }
.post-nav-btn {
    flex: 1;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    max-width: 48%;
}
.post-nav-btn:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.post-nav-btn .nav-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.post-nav-btn .nav-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }

/* ============================================================
   COMMENTS
   ============================================================ */
#comments-section { margin: 40px 0; }
#comments-section h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.comment-list { list-style: none; padding: 0; }
.comment-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-author-wrap { display: flex; gap: 14px; align-items: flex-start; }
.comment-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.comment-author-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.comment-date { font-size: 0.78rem; color: var(--text-light); }
.comment-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.comment-reply-link { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-top: 8px; display: inline-block; }
.children { padding-left: 60px; list-style: none; }
.comment-respond { margin-top: 32px; }
.comment-respond h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 20px; }
.comment-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,172,173,0.12); }
.form-group input.error,
.form-group textarea.error { border-color: var(--red-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error-msg { font-size: 0.78rem; color: var(--red-accent); margin-top: 4px; display: none; }
.form-error-msg.show { display: block; }
.form-success-msg { background: #e8f5e9; color: #2e7d32; padding: 14px 18px; border-radius: var(--radius); border: 1px solid #a5d6a7; margin-top: 16px; font-size: 0.9rem; display: none; }
.form-success-msg.show { display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 0.9rem; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-icon {
    width: 46px; height: 46px; background: rgba(14,172,173,0.2); border: 1px solid var(--primary);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p, .contact-info-item a { font-size: 0.92rem; color: var(--white); margin: 0; }
.contact-info-item a:hover { color: var(--primary); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; border: 3px solid rgba(255,255,255,0.1); }
.map-embed iframe { display: block; width: 100%; height: 220px; border: none; }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-form-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 24px; font-size: 0.9rem; }
.captcha-row { display: flex; align-items: center; gap: 12px; background: var(--bg-light); padding: 14px 16px; border-radius: var(--radius); border: 2px solid var(--border); margin-bottom: 16px; }
.captcha-check { width: 20px; height: 20px; cursor: pointer; accent-color: var(--primary); }
.captcha-label { font-size: 0.88rem; color: var(--text-mid); }
.captcha-badge { margin-left: auto; font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.captcha-badge i { color: #34a853; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 80px 0; }
.about-hero h1 { font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 560px; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-mission-text h2 { font-size: 1.8rem; margin-bottom: 14px; }
.mission-cards { display: grid; gap: 16px; margin-top: 24px; }
.mission-card {
    display: flex; gap: 16px; padding: 18px; background: var(--bg-light);
    border-radius: var(--radius); border-left: 4px solid var(--primary);
}
.mission-card-icon { width: 40px; height: 40px; background: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.mission-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.mission-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.about-stats-bar {
    background: linear-gradient(135deg, var(--navy), var(--primary));
    padding: 50px 0;
}
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.about-stat-num { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.about-stat-plus { color: var(--gold); }
.about-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { text-align: center; }
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 4px solid var(--primary);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card:hover .team-avatar { border-color: var(--navy); transform: scale(1.05); }
.team-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.team-social a { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.82rem; transition: var(--transition); border: 1px solid var(--border); }
.team-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero { background: linear-gradient(135deg, var(--navy), var(--primary)); padding: 70px 0; }
.services-hero h1 { font-size: 2.2rem; color: var(--white); margin-bottom: 12px; }
.services-hero p { color: rgba(255,255,255,0.8); max-width: 520px; }
.services-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.service-cat-btn {
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border);
    color: var(--text-mid);
    background: var(--white);
    transition: var(--transition);
}
.service-cat-btn.active, .service-cat-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.services-detailed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--navy));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-card:hover::after { transform: scaleX(1); }
.service-detail-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.service-detail-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.service-detail-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.sub-services { padding: 0; }
.sub-services li { font-size: 0.84rem; color: var(--text-mid); padding: 5px 0; border-bottom: 1px dotted var(--border); display: flex; align-items: center; gap: 8px; }
.sub-services li:last-child { border-bottom: none; }
.sub-services li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* ============================================================
   ARCHIVE / CATEGORY
   ============================================================ */
.archive-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 60px 0; }
.archive-header h1 { font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.archive-header p { color: rgba(255,255,255,0.75); }
.archive-grid { display: grid; gap: 28px; }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-header { background: var(--bg-light); padding: 50px 0; border-bottom: 1px solid var(--border); }
.search-header h1 { font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.search-header p { color: var(--text-light); font-size: 0.95rem; }
.search-result-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.search-result-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.search-result-item h2 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.search-result-item h2 a { color: inherit; }
.search-result-item h2 a:hover { color: var(--primary); }
.search-result-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.no-results-wrap { text-align: center; padding: 80px 20px; }
.no-results-icon { font-size: 4rem; color: var(--border); margin-bottom: 20px; }
.no-results-wrap h2 { color: var(--navy); margin-bottom: 10px; }
.no-results-wrap p { color: var(--text-light); }

/* ============================================================
   404 PAGE
   ============================================================ */
#error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    text-align: center;
    padding: 60px 20px;
}
.error-404-inner { max-width: 580px; }
.error-num { font-size: clamp(6rem, 15vw, 10rem); font-weight: 900; color: transparent; -webkit-text-stroke: 3px var(--primary); line-height: 1; display: block; }
.error-404-inner h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 14px; }
.error-404-inner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 40px 0; flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; border: 2px solid var(--border);
    color: var(--text-mid); background: var(--white); transition: var(--transition);
}
.pagination a:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.pagination .current, .pagination span.current { background: var(--primary); border-color: var(--primary); color: var(--white); }
.pagination .prev, .pagination .next { width: auto; padding: 0 18px; gap: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-about .site-logo { margin-bottom: 18px; }
.footer-about p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-widget h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.87rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item i { color: var(--primary); margin-top: 2px; }
.footer-contact-item span { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.copyright a { color: var(--primary); }
.follow-us { display: flex; align-items: center; gap: 10px; }
.follow-us span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.follow-us a { color: rgba(255,255,255,0.6); font-size: 0.9rem; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); transition: var(--transition); }
.follow-us a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
#whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 9999;
    cursor: pointer;
}
.whatsapp-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: wa-pulse 2.5s infinite;
    position: relative;
}
.whatsapp-btn:hover { transform: scale(1.1); }
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--navy); }
.whatsapp-btn:hover .wa-tooltip { opacity: 1; visibility: visible; }

/* ============================================================
   GO TO TOP
   ============================================================ */
#go-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
#go-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#go-top-btn:hover { background: var(--navy); transform: translateY(-3px) scale(1.05); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs { padding: 10px 0 16px; }
.breadcrumbs-list { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.breadcrumbs-list a { color: rgba(255,255,255,0.75); }
.breadcrumbs-list a:hover { color: var(--primary); }
.breadcrumbs-list .sep { color: rgba(255,255,255,0.3); }
.breadcrumbs-list .current { color: var(--primary); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 60px 0; }
.page-header h1 { font-size: 2rem; color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; }
.page-content-area { padding: 60px 0; }
.page-content { line-height: 1.85; font-size: 0.97rem; }
.page-content h2,h3,h4 { color: var(--navy); margin: 1.5rem 0 0.75rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.d-none { display: none !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero-title { font-size: 2.2rem; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .main-content-area { grid-template-columns: 1fr; }
    aside.sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .about-mission-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .related-posts-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .post-nav { flex-direction: column; }
    .post-nav-btn { max-width: 100%; }
    #main-navigation { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu-panel { display: block; }
    .mobile-menu-overlay { display: block; }
    .header-cta .btn-navy { display: none; }
}
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .section-pad { padding: 50px 0; }
    .hero-stats { grid-template-columns: 1fr; gap: 12px; }
    .trust-strip-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .blog-grid { grid-template-columns: 1fr; }
    .related-posts-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .comment-form .form-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .top-bar-left { display: none; }
    .process-steps { grid-template-columns: 1fr; }
    .flash-label { display: none; }
    .share-buttons { justify-content: center; }
    .post-author-box { flex-direction: column; align-items: center; text-align: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us-visual { grid-template-columns: 1fr; }
    .stat-card:nth-child(odd) { margin-top: 0; }
    .services-categories { justify-content: center; }
    .hero-title { font-size: 1.8rem; }
    #go-top-btn { right: 16px; bottom: 16px; }
    #whatsapp-float { right: 16px; bottom: 76px; }
}

/* =============================================================
   GLOBAL SEARCH BAR
   ============================================================= */
/* =============================================================
   GLOBAL SEARCH BAR  (sits in DOM flow AFTER #site-header)
   ============================================================= */
#global-search-bar {
    background: linear-gradient(135deg, #1A2C5B 0%, #0d3b6e 100%);
    border-bottom: 3px solid #0EACAD;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease, padding .35s ease;
    padding: 0;
    position: relative;
    z-index: 998; /* just below sticky header (999) so it slides under */
}
#global-search-bar.gsb-open {
    max-height: 200px;
    opacity: 1;
    padding: 18px 0 16px;
}
.gsb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.gsb-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}
.gsb-prompt i { color: #0EACAD; }
.gsb-form { width: 100%; max-width: 700px; }
.gsb-field-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(14,172,173,.5);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.gsb-field-wrap:focus-within {
    border-color: #0EACAD;
    background: rgba(255,255,255,.13);
    box-shadow: 0 0 0 4px rgba(14,172,173,.18);
}
.gsb-field-icon {
    color: rgba(255,255,255,.4);
    padding: 0 4px 0 18px;
    font-size: .9rem;
    flex-shrink: 0;
}
.gsb-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 10px;
    font-size: .98rem;
    color: #fff;
    font-family: inherit;
    min-width: 0;
}
.gsb-input::placeholder { color: rgba(255,255,255,.38); }
.gsb-btn {
    background: #0EACAD;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    white-space: nowrap;
    height: 100%;
    border-radius: 0 50px 50px 0;
    flex-shrink: 0;
}
.gsb-btn:hover { background: #0c9a9b; }
.gsb-suggestions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.gsb-suggestions span { color: rgba(255,255,255,.45); font-size: .76rem; }
.gsb-suggestions a {
    color: rgba(255,255,255,.75);
    font-size: .76rem;
    text-decoration: none;
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    transition: all .2s;
}
.gsb-suggestions a:hover { background: #0EACAD; border-color: #0EACAD; color: #fff; }

/* Header search toggle button */
.header-search-toggle {
    background: transparent;
    border: 1.5px solid rgba(26,44,91,.15);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1A2C5B;
    font-size: .95rem;
    transition: all .2s;
    flex-shrink: 0;
}
.header-search-toggle:hover,
.header-search-toggle.active {
    background: #0EACAD;
    border-color: #0EACAD;
    color: #fff;
}

/* Mobile search */
.mobile-search-wrap { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }

/* =============================================================
   PAGE HEADER (inner pages)
   ============================================================= */
.page-header {
    background: linear-gradient(135deg, #1A2C5B 0%, #0d3b6e 60%, #0EACAD 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,172,173,.15) 0%, transparent 70%);
    pointer-events: none;
}
.page-header .breadcrumb { margin-bottom: 12px; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: #fff; margin-bottom: 10px; font-weight: 800; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; }

/* =============================================================
   SHARED UTILITY
   ============================================================= */
.about-label {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0EACAD;
    font-weight: 700;
    margin-bottom: .5rem;
    padding: 4px 12px;
    background: rgba(14,172,173,.08);
    border-radius: 20px;
    border: 1px solid rgba(14,172,173,.2);
}
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { font-size: 1.85rem; color: #1A2C5B; margin-bottom: .6rem; font-weight: 800; }
.section-header p { color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.section-header.text-center { text-align: center; }

/* =============================================================
   SHARED FORM ELEMENTS
   ============================================================= */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-weight: 600; font-size: .88rem; color: #444; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: .65rem 1rem;
    border: 1.5px solid #e0e4ea;
    border-radius: 8px;
    font-size: .95rem;
    color: #333;
    background: #fafbfc;
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0EACAD;
    box-shadow: 0 0 0 3px rgba(14,172,173,.1);
    background: #fff;
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.req { color: #D32F2F; }
.field-error { font-size: .8rem; color: #D32F2F; display: none; margin-top: .15rem; }
.btn-full { width: 100%; justify-content: center; display: flex; gap: .5rem; align-items: center; }
.btn-text  { display: inline-flex; align-items: center; gap: .5rem; }
.btn-loading { display: inline-flex; align-items: center; gap: .5rem; }
.captcha-row { padding: .75rem 1rem; background: #f7f8fa; border-radius: 8px; border: 1.5px solid #e0e4ea; }
.captcha-label { display: flex; align-items: center; gap: .75rem; cursor: pointer; font-weight: 600; color: #333; font-size: .9rem; user-select: none; }
.captcha-label input[type="checkbox"] { display: none; }
.captcha-check-box { width: 22px; height: 22px; border: 2px solid #ccc; border-radius: 4px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.captcha-label input:checked ~ .captcha-check-box { background: #0EACAD; border-color: #0EACAD; }
.captcha-label input:checked ~ .captcha-check-box::after { content: '✓'; color: #fff; font-size: .85rem; font-weight: 900; }
.form-status { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 10px; margin-bottom: 1.25rem; }
.form-status i { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.form-status strong { display: block; font-size: 1rem; margin-bottom: .3rem; }
.form-status p { margin: 0; font-size: .9rem; }
.form-status-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.form-status-error   { background: #ffebee; border: 1px solid #ef9a9a; color: #c62828; }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-section { background: #f0f4f8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem; align-items: flex-start; }
.contact-info-col { display: flex; flex-direction: column; gap: 0; }
.contact-form-col { display: flex; flex-direction: column; }
.contact-info-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e4e9f0;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(26,44,91,.06);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid #f0f4f8; }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.cii-icon { width: 46px; height: 46px; background: #e8f9f9; color: #0EACAD; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cii-wa { background: #25d366 !important; color: #fff !important; }
.contact-info-item h4 { font-size: .78rem; color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: .25rem; }
.contact-info-item p { color: #333; font-size: .93rem; margin: 0; line-height: 1.5; }
.contact-info-item a { color: #0EACAD; text-decoration: none; font-weight: 600; }
.contact-info-item a:hover { color: #1A2C5B; }
.contact-info-note { font-size: .8rem !important; color: #aaa !important; }
.contact-map-wrap { border-radius: 14px; overflow: visible; border: 1px solid #e4e9f0; box-shadow: 0 4px 16px rgba(26,44,91,.08); }
.osm-directions-bar { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; background: #1A2C5B; flex-wrap: wrap; }
.osm-directions-bar i { color: #0EACAD; }
.osm-directions-bar span { color: rgba(255,255,255,.8); font-size: .82rem; flex: 1; }
.osm-link { color: #0EACAD; text-decoration: none; font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.osm-link:hover { color: #fff; }
.contact-form-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e4e9f0;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 20px rgba(26,44,91,.06);
}
.contact-form-header { margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 2px solid #f0f4f8; }
.contact-form-card h2 { font-size: 1.5rem; color: #1A2C5B; margin-bottom: .35rem; font-weight: 800; }
.form-subtitle { color: #888; font-size: .9rem; margin: 0; }
.contact-trust-strip { background: #1A2C5B; padding: 1rem 0; }
.trust-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; }
.trust-item { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.trust-item i { color: #0EACAD; }

/* =============================================================
   ABOUT PAGE
   ============================================================= */
.about-intro-section { background: #fff; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; align-items: center; }
.about-intro-image { position: relative; }
.about-intro-image img { width: 100%; border-radius: 20px; box-shadow: 0 24px 64px rgba(26,44,91,.18); display: block; }
.about-experience-badge {
    position: absolute;
    bottom: -1.25rem;
    right: -1.25rem;
    background: linear-gradient(135deg,#0EACAD,#1A2C5B);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(14,172,173,.45);
}
.exp-number { display: block; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.exp-label { display: block; font-size: .75rem; opacity: .85; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.about-intro-content h2 { font-size: 1.9rem; color: #1A2C5B; line-height: 1.3; margin: .6rem 0 1rem; font-weight: 800; }
.about-intro-content p { color: #555; line-height: 1.75; margin-bottom: .85rem; }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.about-value-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: #f7f9fc;
    border-radius: 12px;
    border-left: 3px solid #0EACAD;
    transition: box-shadow .2s;
}
.about-value-item:hover { box-shadow: 0 4px 16px rgba(14,172,173,.12); }
.about-value-item i { color: #0EACAD; font-size: 1.15rem; margin-top: .1rem; flex-shrink: 0; }
.about-value-item strong { display: block; color: #1A2C5B; font-size: .92rem; font-weight: 700; }
.about-value-item p { font-size: .82rem; color: #888; margin: .15rem 0 0; }

/* Mission/Vision */
.mission-vision-section {}
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    border: 1px solid #e4e9f0;
    box-shadow: 0 2px 12px rgba(26,44,91,.05);
    transition: box-shadow .25s, transform .25s;
}
.mv-card:hover { box-shadow: 0 16px 48px rgba(26,44,91,.12); transform: translateY(-5px); }
.mv-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg,#0EACAD,#1A2C5B);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(14,172,173,.3);
}
.mv-card h3 { font-size: 1.2rem; color: #1A2C5B; margin-bottom: .75rem; font-weight: 700; }
.mv-card p { color: #666; font-size: .9rem; line-height: 1.7; margin: 0; }

/* Stats */
.about-stats-section { background: linear-gradient(135deg,#1A2C5B,#0EACAD); padding: 2.5rem 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.about-stat-item { text-align: center; padding: 1.75rem 1rem; border-right: 1px solid rgba(255,255,255,.15); color: #fff; }
.about-stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: #fff; display: inline; }
.stat-suffix { font-size: 2rem; font-weight: 900; color: #fff; }
.stat-label { display: block; font-size: .82rem; opacity: .8; margin-top: .35rem; text-transform: uppercase; letter-spacing: .5px; }

/* Services on About */
.about-services-section {}
.about-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.about-svc-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #e4e9f0;
    text-align: center;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 2px 10px rgba(26,44,91,.04);
}
.about-svc-card:hover { box-shadow: 0 10px 32px rgba(26,44,91,.1); transform: translateY(-3px); }
.about-svc-icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1rem; }
.about-svc-card h4 { font-size: 1rem; color: #1A2C5B; margin-bottom: .4rem; font-weight: 700; }
.about-svc-card p { font-size: .85rem; color: #777; margin: 0; line-height: 1.5; }

/* Founder */
.founder-section {}
.founder-grid { display: grid; grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: center; }
.founder-image-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.founder-img-circle {
    width: 240px; height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #0EACAD;
    box-shadow: 0 16px 48px rgba(14,172,173,.35);
}
.founder-img-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-badge-wrap { text-align: center; }
.founder-badge { background: linear-gradient(135deg,#1A2C5B,#0EACAD); color: #fff; padding: .5rem 1.5rem; border-radius: 50px; font-size: .85rem; font-weight: 700; display: inline-block; }
.founder-content h2 { font-size: 2rem; color: #1A2C5B; margin: .5rem 0 .4rem; font-weight: 800; }
.founder-credential { color: #0EACAD; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; display: block; }
.founder-content p { color: #555; line-height: 1.75; margin-bottom: .85rem; }
.founder-social { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.founder-social-link { display: flex; align-items: center; gap: .4rem; color: #1A2C5B; font-weight: 600; text-decoration: none; padding: .5rem 1.2rem; border: 2px solid #1A2C5B; border-radius: 50px; font-size: .88rem; transition: all .2s; }
.founder-social-link:hover { background: #1A2C5B; color: #fff; }

/* Team */
.team-section {}
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; margin-top: 2rem; }
.team-card { text-align: center; }
.team-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #e8f9f9;
    box-shadow: 0 4px 16px rgba(14,172,173,.18);
    transition: border-color .25s, transform .25s, box-shadow .25s;
    background: #e8f9f9;
    display: block;
}
.team-card:hover .team-avatar { border-color: #0EACAD; transform: scale(1.05); box-shadow: 0 8px 28px rgba(14,172,173,.3); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-size: 1rem; color: #1A2C5B; font-weight: 700; margin-bottom: .2rem; }
.team-designation { font-size: .82rem; color: #0EACAD; font-weight: 600; }

/* Stats 2 */
.about-stats2-section {}
.stats2-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat2-item { padding: 2.5rem 1rem; border-right: 1px solid rgba(255,255,255,.12); color: #fff; text-align: center; }
.stat2-item:last-child { border-right: none; }
.stat2-item i { font-size: 2rem; margin-bottom: .75rem; display: block; color: rgba(255,255,255,.65); }
.stat2-num { font-size: 2.8rem; font-weight: 900; display: inline; }
.stat2-suffix { font-size: 2rem; font-weight: 900; }
.stat2-label { display: block; font-size: .8rem; opacity: .7; margin-top: .5rem; text-transform: uppercase; letter-spacing: .5px; }

/* About Contact */
.about-contact-section { background: #f0f4f8; }
.about-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: flex-start; }
.about-contact-features { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.25rem; }
.acf-item { display: flex; align-items: center; gap: .65rem; color: #444; font-size: .93rem; }
.acf-item i { color: #0EACAD; font-size: 1rem; }
.about-contact-form-wrap { background: #fff; border-radius: 18px; border: 1px solid #e4e9f0; padding: 2rem; box-shadow: 0 4px 20px rgba(26,44,91,.06); }

/* =============================================================
   404 PAGE
   ============================================================= */
.page-404-wrap { min-height: 70vh; display: flex; align-items: center; padding: 80px 0; background: linear-gradient(135deg,#1A2C5B 0%,#0EACAD 100%); }
.error-404-inner { text-align: center; color: #fff; max-width: 720px; margin: 0 auto; }
.error-number { font-size: clamp(6rem,18vw,12rem); font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 3px rgba(255,255,255,.35); letter-spacing: -4px; margin-bottom: .25rem; }
.error-title { font-size: 2rem; color: #fff; margin-bottom: .75rem; }
.error-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.error-search { max-width: 500px; margin: 0 auto 2.5rem; }
.error-search p { color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.error-search .search-form-inner { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; }
.error-search .search-field { background: transparent; color: #fff; border: none; }
.error-search .search-field::placeholder { color: rgba(255,255,255,.55); }
.error-search .search-submit { color: #fff; background: transparent; }
.error-nav-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; max-width: 480px; margin: 0 auto 2rem; }
.error-nav-card { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1rem .75rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: #fff; font-size: .85rem; text-decoration: none; transition: all .25s; }
.error-nav-card:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.error-nav-icon { font-size: 1.4rem; }
.error-nav-options h3 { color: rgba(255,255,255,.6); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }

/* =============================================================
   COMMENTS
   ============================================================= */
.comments-area { margin-top: 3rem; padding-top: 2.5rem; border-top: 2px solid #eee; }
.comments-title { font-size: 1.4rem; color: #1A2C5B; margin-bottom: 1.75rem; padding-bottom: .75rem; border-bottom: 2px solid #0EACAD; display: inline-block; }
.comment-list { list-style: none; padding: 0; margin: 0 0 2.5rem; }
.comment-list .children { list-style: none; padding-left: 2.5rem; border-left: 3px solid #e8f9f9; margin-top: 1rem; }
.comment-body { display: flex; gap: 1rem; padding: 1.25rem; background: #f9fafb; border-radius: 12px; margin-bottom: 1rem; border: 1px solid #eee; }
.comment-author-avatar img { width: 56px; height: 56px; border-radius: 50%; border: 2px solid #0EACAD; flex-shrink: 0; }
.comment-content-wrap { flex: 1; }
.comment-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: .5rem; }
.comment-author-name a { font-weight: 700; color: #1A2C5B; text-decoration: none; }
.comment-date { font-size: .8rem; color: #888; }
.comment-date a { color: #888; text-decoration: none; }
.comment-awaiting-moderation { font-size: .8rem; color: #f57c00; font-style: italic; }
.comment-text p { margin-bottom: .5rem; font-size: .95rem; }
.comment-actions { margin-top: .5rem; display: flex; gap: 1rem; }
.reply-link a, .edit-link a { font-size: .82rem; color: #0EACAD; text-decoration: none; font-weight: 600; }
.comment-reply-title { font-size: 1.4rem; color: #1A2C5B; margin-bottom: 1.25rem; }
.comment-reply-title small a { font-size: .75rem; color: #0EACAD; margin-left: .75rem; }
.comment-form-wrap .comment-notes { font-size: .85rem; color: #888; margin-bottom: 1.25rem; }
.comment-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.comment-field-half, .comment-field-full { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.comment-field-half label, .comment-field-full label { font-weight: 600; font-size: .9rem; color: #333; }
.comment-field-half input, .comment-field-full input, .comment-field-full textarea { padding: .65rem 1rem; border: 1.5px solid #ddd; border-radius: 8px; font-size: .95rem; transition: border-color .2s; }
.comment-field-half input:focus, .comment-field-full input:focus, .comment-field-full textarea:focus { border-color: #0EACAD; outline: none; }
.comment-submit-row { margin-top: .5rem; }
.no-comments { color: #888; font-style: italic; padding: 1rem 0; }

/* =============================================================
   SEARCH FORM (global)
   ============================================================= */
.search-form-inner { display: flex; align-items: center; background: #fff; border: 1.5px solid #ddd; border-radius: 50px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.search-form-inner:focus-within { border-color: #0EACAD; box-shadow: 0 0 0 3px rgba(14,172,173,.1); }
.search-field { flex: 1; border: none; background: transparent; padding: .7rem 1.25rem; font-size: .95rem; color: #333; outline: none; }
.search-field::placeholder { color: #aaa; }
.search-submit { background: #0EACAD; color: #fff; border: none; padding: .7rem 1.25rem; cursor: pointer; font-size: 1rem; transition: background .2s; }
.search-submit:hover { background: #1A2C5B; }

/* =============================================================
   SERVICES PAGE
   ============================================================= */
.services-filter-bar { background: #fff; border-bottom: 2px solid #e4e9f0; padding: 1rem 0; position: sticky; top: 70px; z-index: 50; box-shadow: 0 4px 16px rgba(26,44,91,.06); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.services-full-section { background: #f0f4f8; }
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 1.75rem; }
.service-detail-card { background: #fff; border-radius: 16px; border: 1px solid #e4e9f0; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; box-shadow: 0 2px 10px rgba(26,44,91,.04); }
.service-detail-card:hover { box-shadow: 0 16px 48px rgba(26,44,91,.14); transform: translateY(-5px); }
.sfc-header { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid #f0f4f8; }
.sfc-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.sfc-title { font-size: 1.15rem; color: #1A2C5B; font-weight: 700; margin-bottom: .2rem; }
.sfc-tagline { font-size: .85rem; color: #888; }
.sfc-body { padding: 1.25rem 1.5rem; flex: 1; }
.sfc-body p { color: #555; font-size: .93rem; margin-bottom: .75rem; }
.sfc-sub-list { display: flex; flex-direction: column; gap: .9rem; }
.sfc-sub-item { display: flex; align-items: flex-start; gap: .75rem; }
.sfc-num { min-width: 32px; height: 32px; background: linear-gradient(135deg,#0EACAD,#1A2C5B); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; flex-shrink: 0; }
.sfc-sub-item strong { display: block; color: #1A2C5B; font-size: .95rem; margin-bottom: .2rem; }
.sfc-sub-item p { color: #666; font-size: .85rem; margin: 0; }
.sfc-bullet-list { list-style: none; padding: 0; margin: .75rem 0; }
.sfc-bullet-list li { padding: .4rem 0 .4rem 1.5rem; position: relative; color: #555; font-size: .9rem; border-bottom: 1px solid #f5f5f5; }
.sfc-bullet-list li::before { content: '✓'; position: absolute; left: 0; color: #0EACAD; font-weight: 700; }
.sfc-tags-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.sfc-tag { padding: .35rem .8rem; background: #e8f9f9; color: #0EACAD; border-radius: 50px; font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: .35rem; }
.sfc-footer { padding: 1rem 1.5rem; border-top: 1px solid #f0f4f8; }
.btn-sm { padding: .45rem 1.2rem !important; font-size: .85rem !important; }

/* =============================================================
   EXTRA BUTTONS
   ============================================================= */
.btn-white { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; background: #fff; color: #1A2C5B; border: 2px solid #fff; border-radius: 8px; font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer; transition: background .2s, color .2s; }
.btn-white:hover { background: transparent; color: #fff; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media(max-width:1100px) {
    .team-grid { grid-template-columns: repeat(3,1fr); }
    .about-services-grid { grid-template-columns: repeat(2,1fr); }
    .about-intro-grid { gap: 2.5rem; }
    .founder-grid { grid-template-columns: 220px 1fr; gap: 2.5rem; }
}
@media(max-width:900px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .founder-social { justify-content: center; }
    .mv-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2,1fr); }
    .about-stat-item:nth-child(2) { border-right: none; }
    .stats2-grid { grid-template-columns: repeat(2,1fr); }
    .stat2-item:nth-child(2) { border-right: none; }
    .about-contact-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .contact-form-card { padding: 1.5rem; }
    .gsb-field-wrap { border-radius: 12px; }
    .gsb-submit { border-radius: 0 12px 12px 0; }
    .gsb-quick-links { display: none; }
}
@media(max-width:600px) {
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .about-services-grid { grid-template-columns: 1fr; }
    .services-full-grid { grid-template-columns: 1fr; }
    .error-nav-grid { grid-template-columns: repeat(2,1fr); }
    .comment-form-row { grid-template-columns: 1fr; }
    .comment-list .children { padding-left: 1rem; }
    .about-stats-grid { grid-template-columns: repeat(2,1fr); }
    .stats2-grid { grid-template-columns: repeat(2,1fr); }
    .header-search-toggle { display: none; }
}
