/*
Theme Name: Alpha Petroleum
Theme URI: https://build.alphapetrol.org
Author: Israel Adejumo
Author URI: https://build.alphapetrol.org
Description: Official WordPress theme for Alpha Petroleum — a global energy solutions company. Features pages for Home, About, Services, Team, and Contact.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alpha-petroleum
Tags: business, petroleum, energy, corporate
*/

/* ===========================
   BRAND COLORS & ROOT VARS
   =========================== */
:root {
    --navy:        #001F3F;
    --brand-yellow:#FFEB3B;
    --brand-orange:#FF9800;
    --slate-50:    #f8fafc;
    --slate-100:   #f1f5f9;
    --slate-200:   #e2e8f0;
    --slate-300:   #cbd5e1;
    --slate-400:   #94a3b8;
    --slate-500:   #64748b;
    --slate-600:   #475569;
    --slate-700:   #334155;
    --slate-800:   #1e293b;
    --slate-900:   #0f172a;
    --white:       #ffffff;
    --radius:      0.75rem;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    background: var(--slate-50);
    color: var(--slate-700);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-orange); }

/* ===========================
   LAYOUT
   =========================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main { flex: 1; }

/* ===========================
   HEADER & NAV
   =========================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background: transparent;
}

#site-header.scrolled,
body:not(.home) #site-header {
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 235, 59, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 101;
}

.site-logo img {
    height: 48px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.site-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.site-logo .logo-text span { color: var(--brand-yellow); }

/* Desktop Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.primary-nav a {
    color: var(--slate-200);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.primary-nav a:hover,
.primary-nav a.active { color: var(--brand-yellow); }

.primary-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: var(--navy);
    border: 1px solid rgba(255,235,59,0.2);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 200;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--slate-200);
    transition: background 0.2s, color 0.2s;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu a:hover {
    background: var(--brand-yellow);
    color: var(--navy);
}

/* CTA Button */
.btn-cta {
    background: var(--brand-yellow);
    color: var(--navy) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 15px rgba(255,235,59,0.3);
    margin-left: 1rem;
}

.btn-cta:hover {
    background: var(--brand-orange) !important;
    transform: scale(1.05);
    color: var(--white) !important;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,235,59,0.2);
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    padding: 0.9rem 1rem;
    color: var(--slate-200);
    border-radius: var(--radius);
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--brand-yellow);
    color: var(--navy);
}

.mobile-nav .btn-cta {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    border-radius: var(--radius);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-yellow);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,235,59,0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brand-orange);
    color: var(--white);
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.2); }

.btn-dark {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-dark:hover { background: rgba(0,31,63,0.85); transform: scale(1.05); }

/* ===========================
   SECTION UTILITIES
   =========================== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.section-label.yellow { color: var(--brand-yellow); }
.section-label.orange { color: var(--brand-orange); }

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title.white { color: var(--white); }
.section-title.navy  { color: var(--navy); }

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.section-subtitle.light { color: var(--slate-400); }
.section-subtitle.mid   { color: var(--slate-600); }

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

/* ===========================
   HERO (HOME)
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,31,63,0.95) 40%, rgba(0,31,63,0.6) 70%, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 4rem;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(255,235,59,0.15);
    border: 1px solid rgba(255,235,59,0.3);
    color: var(--brand-yellow);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--brand-yellow), var(--brand-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--slate-300);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===========================
   SERVICES GRID (HOME)
   =========================== */
.services-section {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 50%; height: 50%;
    border-radius: 50%;
    background: rgba(255,152,0,0.05);
    filter: blur(120px);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%; left: -10%;
    width: 40%; height: 40%;
    border-radius: 50%;
    background: rgba(255,235,59,0.05);
    filter: blur(100px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(30,41,59,0.4);
    border: 1px solid rgba(100,116,139,0.3);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--brand-yellow), var(--brand-orange));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: rgba(30,41,59,0.8);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255,235,59,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 64px; height: 64px;
    border-radius: 0.75rem;
    background: rgba(0,31,63,0.8);
    border: 1px solid rgba(100,116,139,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-yellow);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover h4 { color: var(--brand-yellow); }

.service-card p { color: var(--slate-400); line-height: 1.7; }

/* ===========================
   CTA BAND
   =========================== */
.cta-section {
    padding: 5rem 0;
    background: var(--brand-orange);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(0,31,63,0.8);
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 6rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,31,63,0.95), rgba(0,31,63,0.8), rgba(0,31,63,0.6));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 3rem 0;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: var(--slate-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-header-section {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,235,59,0.2), rgba(255,152,0,0.2));
    opacity: 0.2;
    mix-blend-mode: multiply;
}

.about-header-section h1 {
    font-size: clamp(2rem,5vw,3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 700px;
}

.about-header-section p {
    font-size: 1.15rem;
    color: var(--slate-300);
    max-width: 640px;
    line-height: 1.75;
}

/* Mission / Vision */
.mission-section { padding: 5rem 0; }

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-image {
    position: relative;
    height: 480px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,235,59,0.2);
}

.mission-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.mission-image-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,31,63,0.9), transparent);
    padding: 2rem;
    color: var(--white);
}

.mission-image-caption strong {
    display: block;
    font-size: 1.2rem;
    color: var(--brand-yellow);
    margin-bottom: 0.25rem;
}

.mission-text { display: flex; flex-direction: column; gap: 2.5rem; }

.mission-block h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-block h2 .icon {
    font-size: 1.5rem;
}

.mission-block p { color: var(--slate-600); font-size: 1.05rem; line-height: 1.75; }

/* Stats bar */
.stats-bar {
    padding: 4rem 0;
    background: var(--brand-yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,31,63,0.75);
}

/* Core Values */
.values-section {
    padding: 5rem 0;
    background: var(--slate-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: rgba(255,235,59,0.5);
}

.value-icon {
    width: 64px; height: 64px;
    border-radius: 0.75rem;
    background: rgba(0,31,63,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.value-card p { color: var(--slate-600); line-height: 1.7; }

/* ===========================
   SERVICES PAGE
   =========================== */
.services-overview {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.services-overview .shield-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.services-overview h2 {
    font-size: clamp(1.8rem,4vw,3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.services-overview p {
    font-size: 1.1rem;
    color: var(--slate-600);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Detailed service alternating layout */
.services-detail-section { padding: 4rem 0; background: var(--slate-50); }

.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail-block:last-child { margin-bottom: 0; }
.service-detail-block.reverse { direction: rtl; }
.service-detail-block.reverse > * { direction: ltr; }

.service-detail-image {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-detail-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-detail-image:hover img { transform: scale(1.05); }

.service-detail-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,31,63,0.2);
    transition: background 0.5s;
}

.service-detail-image:hover .service-detail-image-overlay { background: transparent; }

.service-detail-image-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,31,63,0.9), transparent);
    padding: 2rem;
    z-index: 1;
}

.service-detail-image-caption .icon { color: var(--brand-yellow); font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.service-detail-image-caption h3 { color: var(--white); font-size: 1.4rem; font-weight: 700; }

.service-detail-text { display: flex; flex-direction: column; gap: 1.5rem; }

.service-detail-text h3 {
    font-size: clamp(1.5rem,3vw,2.2rem);
    font-weight: 800;
    color: var(--navy);
}

.service-detail-text p { font-size: 1.05rem; color: var(--slate-600); line-height: 1.8; }

.benefits-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--brand-orange);
}

.benefits-box h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 1rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--slate-700);
}

.benefit-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-yellow);
    flex-shrink: 0;
}

.expertise-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.expertise-badge strong { color: var(--brand-yellow); margin-right: 0.5rem; }

/* Services directory (dark) */
.services-dir-section {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* ===========================
   TEAM PAGE
   =========================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,235,59,0.4);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,31,63,0.5), transparent 60%);
}

.team-card-info { padding: 1.5rem; }

.team-card-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.team-card-info p {
    font-size: 0.85rem;
    color: var(--brand-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-section-wrap { padding: 6rem 0; background: var(--slate-50); position: relative; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { padding: 5rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-card {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-top: 4px solid var(--brand-yellow);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-yellow);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-item .ci-icon {
    font-size: 1.2rem;
    color: var(--brand-orange);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-info-item .ci-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-yellow);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info-item p, .contact-info-item a {
    font-size: 0.9rem;
    color: var(--slate-300);
    line-height: 1.6;
}

.contact-info-item a:hover { color: var(--brand-yellow); }

/* Contact Form */
.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--slate-100);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.6rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--slate-900);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 3px rgba(255,235,59,0.2);
}

.form-group textarea { resize: none; height: 140px; }

.form-submit {
    width: 100%;
    background: var(--brand-yellow);
    color: var(--navy);
    border: none;
    padding: 1rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255,235,59,0.3);
    margin-top: 1.5rem;
    font-family: inherit;
}

.form-submit:hover { background: var(--brand-orange); color: var(--white); }

/* ===========================
   FOOTER
   =========================== */
#site-footer {
    background: var(--navy);
    color: var(--slate-300);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--brand-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .site-logo { margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
    color: var(--slate-400);
    font-size: 1rem;
    transition: color 0.2s;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover { color: var(--brand-yellow); border-color: var(--brand-yellow); }

.footer-col h3 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-yellow);
    margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col ul a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--brand-orange); }

.footer-office-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-office-item .icon { color: var(--brand-orange); flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }
.footer-office-item strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 0.3rem; }
.footer-office-item span { font-size: 0.8rem; color: var(--slate-400); line-height: 1.6; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item .icon { color: var(--brand-orange); font-size: 1rem; flex-shrink: 0; }
.footer-contact-item a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--brand-yellow); }

.footer-bottom {
    border-top: 1px solid rgba(100,116,139,0.3);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--slate-500); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--slate-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-yellow); }

/* ===========================
   NOTICES / ALERTS
   =========================== */
.notice {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.notice-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.notice-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .primary-nav { display: none; }
    .menu-toggle  { display: block; }

    .mission-grid    { grid-template-columns: 1fr; }
    .mission-image   { height: 320px; }
    .stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .service-detail-block { grid-template-columns: 1fr; }
    .service-detail-block.reverse { direction: ltr; }
    .contact-grid    { grid-template-columns: 1fr; }
    .form-row        { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .hero-actions    { flex-direction: column; }
    .benefits-list   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid  { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .team-grid   { grid-template-columns: 1fr; }
}
