/*
Theme Name: Agent Digital
Theme URI: http://digital.glolink.co.ke
Author: Hassan Kimathi
Author URI: http://digital.glolink.co.ke
Description: A premium, modern, and human-centric WordPress theme for technology companies, startup consultancies, and digital agencies based in Kenya. Clean bright design.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agent-digital
Tags: custom-menu, featured-images, responsive-layout, theme-options, translation-ready, light, grid-layout, one-column, two-columns
*/

/* ==========================================================================
   Design System & Tokens (Bright & Human Theme)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #f8fafc; /* Primary background - light slate */
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f1f5f9;
    --color-primary: #2563eb; /* Trust blue */
    --color-secondary: #0d9488; /* Fresh teal */
    --color-accent: #6366f1; /* Modern indigo */
    --color-text-main: #1e293b; /* Dark slate text */
    --color-text-muted: #64748b; /* Slate text secondary */
    --color-border: #e2e8f0;
    --color-border-hover: #cbd5e1;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(37, 99, 235, 0.1);

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Grid & Container */
    --container-width: 1200px;
    --container-padding: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #0f172a; /* Dark text for headings */
}

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

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

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

button, .button, input[type="submit"] {
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ==========================================================================
   WordPress Core Classes
   ========================================================================== */
.alignleft { float: left; margin: 0.5em 1.5em 1.5em 0; }
.alignright { float: right; margin: 0.5em 0 1.5em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; clear: both; }
.wp-caption { background: var(--color-bg-card); border: 1px solid var(--color-border); max-width: 100%; padding: 5px; text-align: center; border-radius: 8px; box-shadow: var(--shadow-sm); }
.wp-caption img { margin: 0; max-width: 100%; }
.wp-caption-text { font-size: 0.85em; padding: 10px 0 5px; color: var(--color-text-muted); }
.sticky { background-color: var(--color-bg-card); border: 1px solid var(--color-primary); }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }

/* ==========================================================================
   Layout & Structure
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f172a;
}

.site-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Primary Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-navigation a {
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    gap: 0.5rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ==========================================================================
   Front Page / Homepage Sections
   ========================================================================== */

/* Hero Section */
.hero-section {
    padding: 12rem 0 8rem;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Sections Styling */
.section-padding {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem;
}

.section-subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    color: #0f172a;
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.feature-card:hover .card-icon {
    background: var(--color-primary);
    color: #ffffff;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Split Layout (About / Director) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.split-image-container img {
    width: 100%;
    object-fit: cover;
    height: 480px;
    transition: var(--transition-smooth);
}

.split-image-container:hover img {
    transform: scale(1.03);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.director-badge {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.director-title {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #334155;
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
}

/* Quick Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Contact Section & Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
}

.contact-info-panel {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-info-list {
    list-style: none;
    margin-top: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: #0f172a;
}

.contact-info-details p, .contact-info-details a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-form-panel {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.1);
}

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

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   Inner Pages (Blog, Archive, Single Post, Default Page)
   ========================================================================== */
.page-header {
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 4rem;
}

.page-header-title {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-muted);
    font-weight: 600;
}

.breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.post-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-hover);
}

.post-thumbnail {
    height: 350px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    background: #f1f5f9;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.02);
}

.post-content {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    list-style: none;
}

.post-meta li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-meta i {
    color: var(--color-primary);
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.post-title a {
    color: #0f172a;
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Sidebar Styling */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.widget {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.25rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--color-text-muted);
    font-weight: 500;
}

.widget a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination .page-numbers {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-text-main);
    transition: var(--transition-fast);
    background: #ffffff;
    font-weight: 600;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

/* Single Post Specifics */
.single-post-wrapper {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: #334155;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    background: #eff6ff;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #1e3a8a;
    border-radius: 0 8px 8px 0;
}

/* Comments section */
.comments-area {
    margin-top: 5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 3rem;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.comment-list {
    list-style: none;
    margin-bottom: 3rem;
}

.comment-body {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.comment-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}

.comment-content {
    color: var(--color-text-muted);
}

.comment-reply-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.comment-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background: #0f172a; /* Slate 900 for high-contrast professional footer */
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 5rem 0 2rem;
    color: #e2e8f0;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer .site-logo {
    color: #ffffff;
}

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

.footer-widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: #ffffff;
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-contact-list a {
    color: #94a3b8;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-contact-list i {
    color: var(--color-primary);
    margin-top: 3px;
}

.footer-newsletter p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0 1.25rem;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsiveness
   ========================================================================== */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-image-container img {
        height: 350px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }
    
    .site-header {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid var(--color-border);
    }
    
    .menu-toggle {
        display: block;
        z-index: 1100;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-card);
        border-left: 1px solid var(--color-border);
        padding: 6rem 2rem 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1050;
        box-shadow: var(--shadow-lg);
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    
    .main-navigation a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}
