/* ==========================================================================
   Wesley O. Law Advocates — Master Design System
   Inspired by PMK Attorneys & WKA Advocates
   Rooted in Wesley O. Law Advocates Official Brand Profile
   ========================================================================== */

/* Variables */
:root {
    /* Brand Colors (from Brochure: Deep Navy, Cyan Teal & Architectural Accents) */
    --primary-color: #0a1e28;        /* Deep Midnight Navy */
    --primary-dark: #06141c;         /* Darkest Slate */
    --primary-light: #13374a;        /* Deep Steel Blue */
    --accent-cyan: #4a95a8;          /* Brochure Cyan Teal */
    --accent-cyan-light: #6fb3c3;    /* Light Cyan Accent */
    --accent-cyan-bg: rgba(74, 149, 168, 0.08);
    --accent-gold: #c5a059;          /* Prestigious Legal Warm Gold */
    --accent-gold-light: #dfbe7d;
    --accent-gold-bg: rgba(197, 160, 89, 0.12);
    
    /* Neutral & Text */
    --text-dark: #121e28;
    --text-color: #445668;
    --text-muted: #718496;
    --bg-light: #f5f8fa;
    --bg-light-alt: #edf3f7;
    --white: #ffffff;
    --border-color: #e2e9ef;
    --border-dark: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout & Elevation */
    --max-width: 1240px;
    --shadow-sm: 0 4px 12px rgba(10, 30, 40, 0.05);
    --shadow-md: 0 10px 30px rgba(10, 30, 40, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 30, 40, 0.14);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-cyan);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

/* Section Header Styles */
.sec-title {
    margin-bottom: 50px;
}

.sec-title .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 5px 14px;
    background: var(--accent-cyan-bg);
    border-radius: 30px;
    border: 1px solid rgba(74, 149, 168, 0.2);
}

.sec-title h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.sec-title p.sec-desc {
    max-width: 680px;
    margin: 15px auto 0;
    color: var(--text-muted);
    font-size: 17px;
}

.sec-title.sec-title-light .sub-title {
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.3);
}

.sec-title.sec-title-light h2 {
    color: var(--white);
}

.sec-title.sec-title-light p.sec-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-cyan);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(74, 149, 168, 0.35);
}

.btn-primary:hover {
    background-color: #3b7b8c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 149, 168, 0.45);
}

.btn-gold {
    background: linear-gradient(135deg, #c5a059 0%, #a8823b 100%);
    color: #0d1e28;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d8b269 0%, #ba934a 100%);
    color: #06141c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: var(--accent-cyan);
    color: var(--white);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-item i {
    color: var(--accent-cyan-light);
    font-size: 13px;
}

.top-bar-right a:hover {
    color: var(--accent-gold-light);
}

.navbar {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    background-color: rgba(10, 30, 40, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.8px;
    line-height: 1.15;
}

.logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-cyan-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta-btn {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #3a8294 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links .nav-cta-btn::after {
    display: none;
}

.nav-links .nav-cta-btn:hover {
    background: linear-gradient(135deg, #58a9bd 0%, var(--accent-cyan) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 149, 168, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section & Trust Metrics Bar
   ========================================================================== */
.banner-style {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--primary-color);
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 30, 40, 0.94) 0%,
        rgba(10, 30, 40, 0.88) 50%,
        rgba(6, 20, 28, 0.96) 100%
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(74, 149, 168, 0.15);
    border: 1px solid rgba(74, 149, 168, 0.35);
    border-radius: 40px;
    color: var(--accent-cyan-light);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
    letter-spacing: -1px;
}

.banner-content h1 span.gold-highlight {
    background: linear-gradient(90deg, #c5a059 0%, #e6c888 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p.hero-subtitle {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 35px;
    max-width: 740px;
    font-weight: 400;
}

.banner-btn-box {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Trust Metrics Bar */
.trust-metrics-bar {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* ==========================================================================
   About Section & "Our Approach" Banner
   ========================================================================== */
.about-grid {
    max-width: 980px;
    margin: 0 auto;
}

.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-badge-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 24px 30px;
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(10, 30, 40, 0.35);
    max-width: 260px;
}

.about-badge-card i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.about-badge-card h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-badge-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.about-content-column .sec-title {
    margin-bottom: 25px;
}

.about-lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.vm-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.vm-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    border-left: 4px solid var(--accent-cyan);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-gold);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vm-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--accent-cyan-bg);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.vm-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.vm-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

/* "Our Approach" Highlight Banner from Brochure */
.approach-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    padding: 22px 28px;
    border-left: 4px solid var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.approach-icon {
    font-size: 28px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.approach-text h5 {
    color: var(--accent-gold-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.approach-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   Practice Areas Matrix (4 Core Brochure Domains)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(74, 149, 168, 0.3);
}

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

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--accent-cyan-bg);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--accent-cyan);
    color: var(--white);
    transform: scale(1.05);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: rgba(10, 30, 40, 0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.service-card p.service-summary {
    color: var(--text-color);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-facets {
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-grow: 1;
}

.service-facets h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.service-facets ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-facets li {
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-facets li i {
    color: var(--accent-gold);
    font-size: 12px;
}

.service-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--accent-cyan);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Claim / Call-To-Action Banner
   ========================================================================== */
.claim-section {
    position: relative;
    padding: 90px 0;
    background-color: var(--primary-color);
    background-image: url('assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.claim-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 40, 0.92) 0%, rgba(6, 20, 28, 0.96) 100%);
    z-index: 1;
}

.claim-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.claim-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 30px;
    color: var(--accent-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.claim-content h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
}

.claim-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

/* ==========================================================================
   Why Choose Us — 5 Core Values from Brochure
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.value-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-cyan);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 149, 168, 0.4);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-cyan-bg);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon-box {
    background: var(--accent-cyan);
    color: var(--white);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Testimonials Section (Exact Brochure Quotes)
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1040px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 149, 168, 0.3);
}

.quote-icon {
    font-size: 32px;
    color: var(--accent-cyan);
    opacity: 0.25;
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 18px;
}

.testimonial-card p.quote-text {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-cyan) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
}

.client-meta h4 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.client-meta span.client-role {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   Consultation Booking & Contact Section
   ========================================================================== */
.consultation-section {
    background-color: var(--white);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    padding: 45px 38px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 14px;
}

.contact-info-panel p.info-panel-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-text h5 {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-detail-text p, .contact-detail-text a {
    color: var(--white);
    font-size: 15.5px;
    font-weight: 500;
    margin: 0;
}

.contact-detail-text a:hover {
    color: var(--accent-gold);
}

.confidentiality-notice {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.confidentiality-notice i {
    color: var(--accent-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.confidentiality-notice p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

/* Consultation Form Card */
.consultation-form-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 45px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 15px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 149, 168, 0.15);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5d6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 15px;
    font-weight: 500;
    font-size: 14.5px;
    min-height: 22px;
    transition: var(--transition);
}

/* ==========================================================================
   Kenyan Legal FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 14px;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 28px;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* ==========================================================================
   Legal Insights & Thought Leadership (SEO Authority Engine)
   ========================================================================== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 149, 168, 0.35);
}

.insight-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.insight-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    background: var(--accent-cyan-bg);
    padding: 4px 12px;
    border-radius: 20px;
}

.insight-read-time {
    font-size: 13px;
    color: var(--text-muted);
}

.insight-card h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 24px;
    flex-grow: 1;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--accent-cyan);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.insight-link i {
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 85px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr;
    gap: 50px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget .logo-footer {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.8px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.footer-widget .logo-footer span {
    font-size: 12px;
    color: var(--accent-cyan-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-widget p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.widget-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-cyan);
}

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.links-list a i {
    font-size: 11px;
    color: var(--accent-cyan);
}

.links-list a:hover {
    color: var(--accent-gold-light);
    transform: translateX(5px);
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14.5px;
}

.info-list li i {
    color: var(--accent-cyan);
    margin-top: 4px;
    font-size: 15px;
}

.info-list a {
    color: rgba(255, 255, 255, 0.75);
}

.info-list a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 26px 0;
    font-size: 13.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links a:hover {
    color: var(--accent-cyan-light);
}

/* ==========================================================================
   Floating WhatsApp Button & Conversion Tools
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25d366;
    animation: whatsappPulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .banner-content h1 {
        font-size: 46px;
    }
    
    .trust-metrics-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-badge-card {
        right: 20px;
        bottom: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        width: 100%;
    }
    
    .banner-style {
        padding: 120px 0 70px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content p.hero-subtitle {
        font-size: 16.5px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-facets ul {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form-card {
        padding: 28px 20px;
    }
    
    .contact-info-panel {
        padding: 32px 22px;
    }
    
    .vm-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}
