/* The Marketing Mantra - Stylesheet */

/* Design System & Root Variables */
:root {
    /* Color Palette - Realistic Navy Blue and Orange */
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-card: #ffffff;
    --color-card-border: #e2e8f0;
    --color-text-main: #0f172a; /* Slate 900 */
    --color-text-muted: #475569; /* Slate 600 */
    --color-primary: #1e3a8a; /* Deep Navy Blue */
    --color-primary-dark: #0f172a;
    --color-secondary: #f97316; /* Energetic Orange */
    --color-secondary-dark: #ea580c;
    --color-accent: #ffedd5; /* Soft Orange tint */
    --color-success: #16a34a;
    --color-error: #dc2626;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    --grad-secondary: linear-gradient(135deg, var(--color-secondary) 0%, #f97316 100%);
    --grad-bg-glow: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, rgba(0, 0, 0, 0) 70%);

    /* Layout & Shadows */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-medium: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 25px rgba(30, 58, 138, 0.08);
    --glass-blur: blur(8px);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.accent-text {
    color: var(--color-secondary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.btn-orange {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-orange:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(249, 115, 22, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--color-card-border);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: var(--color-primary);
}

.logo-text .accent-text {
    color: var(--color-secondary);
}

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

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--color-text-muted);
}

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

.nav-cta-btn {
    padding: 10px 20px !important;
    background: var(--color-secondary);
    color: #fff !important;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.nav-cta-btn:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-1px);
}

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

/* Background Soft Accents (No AI neon blobs) */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: var(--color-primary);
    top: 10%;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    top: 25%;
    right: -100px;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.02) 0%, rgba(30, 58, 138, 0.01) 90%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--color-card-border);
    padding-top: 24px;
}

.hero-social-proof .avatars {
    display: flex;
}

.hero-social-proof .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-bg);
    margin-right: -12px;
}

.hero-social-proof .proof-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

.hero-social-proof .proof-text .highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* Realistic Campaign Status card */
.hero-graphics {
    position: relative;
    z-index: 10;
}

.glass-dashboard-card {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 30px;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-card-border);
    padding-bottom: 16px;
}

.card-header .dots {
    display: flex;
    gap: 6px;
}

.card-header .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.card-header .card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.metric {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 16px;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
}

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

.progress-container {
    margin-bottom: 30px;
}

.progress-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 10px;
}

/* Realistic Client Chat Preview */
.mini-chat-preview {
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-message .avatar {
    width: 28px;
    height: 28px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.chat-message .message-bubble {
    background: #fff;
    border: 1px solid var(--color-card-border);
    border-radius: 12px 12px 12px 0px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--color-text-main);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.chat-message.user .message-bubble {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px 12px 0px 12px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    position: relative;
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: #fff;
    border: 1px solid var(--color-card-border);
    color: var(--color-text-muted);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.service-card .card-glow {
    display: none; /* Removed AI sci-fi card glow */
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-secondary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-secondary);
    color: #fff;
}

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

.service-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 70px;
}

.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(4px);
}

/* Highlight Cards */
.highlight-card {
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, rgba(249, 115, 22, 0.02) 100%);
}

.highlight-card .service-icon {
    background: var(--color-secondary);
    color: #fff;
}

.highlight-card:hover .service-icon {
    background: var(--color-primary);
}

.highlight-card .learn-more {
    color: var(--color-secondary);
}

.badge-special {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-accent);
    color: var(--color-secondary);
    border: 1px solid rgba(249, 115, 22, 0.2);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

/* WhatsApp Automation Section */
.whatsapp-automation-section {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
}

.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* WhatsApp Phone Mockup - Classic Realistic WhatsApp Theme */
.automation-showcase-graphic {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.whatsapp-phone-mockup {
    width: 100%;
    max-width: 360px;
    height: 540px;
    background: #efeae2; /* Light mode WhatsApp background color */
    border: 10px solid #075e54;
    border-radius: 36px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.phone-header {
    background: #075e54;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
}

.phone-header .speaker {
    width: 50px;
    height: 4px;
    background: #054d44;
    border-radius: 10px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-status .profile-pic {
    width: 32px;
    height: 32px;
    background: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.phone-status .profile-info h4 {
    font-size: 12px;
    font-weight: 600;
}

.phone-status .status-indicator {
    display: block;
    font-size: 9px;
    color: #25d366;
}

.phone-actions {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: #fff;
}

.phone-chat-body {
    flex: 1;
    background: #efeae2 url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png') repeat;
    background-size: contain;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.chat-time {
    align-self: center;
    background: #e1f3fc;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    color: #128c7e;
    font-weight: 600;
}

.bubble {
    max-width: 85%;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.bubble-received {
    align-self: flex-start;
    background: #ffffff;
    color: #303030;
    border-radius: 0px 8px 8px 8px;
}

.bubble-sent {
    align-self: flex-end;
    background: #d9fdd3; /* Classic WhatsApp outgoing bubble color */
    color: #303030;
    border-radius: 8px 0px 8px 8px;
}

.bubble-info {
    font-size: 9px;
    color: #8696a0;
    text-align: right;
    margin-top: 4px;
}

.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #8696a0;
    animation: typing 1s infinite alternate;
}

.phone-input-bar {
    background: #f0f2f5;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-input-bar input {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    color: #333;
    font-size: 13px;
    outline: none;
}

.phone-input-bar i {
    color: #54656f;
    font-size: 16px;
    cursor: pointer;
}

.phone-input-bar .send-btn {
    width: 32px;
    height: 32px;
    background: #075e54;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}

/* Feature Bullets */
.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.bullet-item {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.bullet-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.bullet-item p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Stats Counter Section */
.stats-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: #ffffff;
    border-top: none;
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* About / AEO optimized Section */
.about-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.aeo-answer-block {
    background: #ffffff;
    border-left: 4px solid var(--color-secondary);
    border: 1px solid var(--color-card-border);
    border-left-width: 4px;
    border-left-color: var(--color-secondary);
    padding: 24px;
    margin-top: 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.aeo-answer-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.aeo-answer-block p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.aeo-answer-block strong {
    color: var(--color-primary);
}

.about-visuals {
    display: flex;
    justify-content: center;
}

.feature-card-large {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.value-item h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.value-item p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Lead Form Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.contact-info-panel h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.lead-text {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

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

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-detail-card .icon-holder {
    width: 54px;
    height: 54px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 20px;
}

.contact-detail-card .details .label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
}

.contact-detail-card .details .val {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
}

.contact-detail-card .details a:hover {
    color: var(--color-secondary);
}

/* Interactive Multi-step Form */
.form-wrapper {
    position: relative;
    z-index: 10;
}

.form-card {
    background: #ffffff;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--color-card-border);
    padding-bottom: 15px;
}

.progress-step {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s ease;
    color: var(--color-text-muted);
}

.progress-step.active {
    color: var(--color-primary);
}

.progress-step.active span {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-step-content p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.form-group .required {
    color: var(--color-error);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.05);
}

.form-group select option {
    background: #ffffff;
    color: var(--color-text-main);
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.form-navigation .btn-prev {
    background: transparent;
    border: 1px solid var(--color-card-border);
    color: var(--color-text-muted);
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-success-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.success-message {
    text-align: center;
    max-width: 400px;
}

.success-icon {
    font-size: 60px;
    color: var(--color-success);
    margin-bottom: 20px;
    animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.success-message p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-card-border);
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-primary);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-toggle i {
    font-size: 14px;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 14px;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-item.open .faq-content {
    max-height: 500px;
    padding-bottom: 24px;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.open .faq-toggle i {
    transform: rotate(45deg);
}

/* Footer Section */
.main-footer-section {
    background: var(--color-primary-dark);
    color: #ffffff;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand .brand-desc {
    color: #cbd5e1;
    font-size: 14px;
    margin: 20px 0;
    max-width: 300px;
}

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

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #cbd5e1;
}

.social-icons a:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.footer-links h4, .footer-contact-info h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: #ffffff;
}

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

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

.footer-links ul li a {
    font-size: 14px;
    color: #cbd5e1;
}

.footer-links ul li a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-contact-info p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact-info p i {
    color: var(--color-secondary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #94a3b8;
}

.legal-links {
    display: flex;
    gap: 24px;
}

/* Dashboard Modal styling */
.dashboard-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.dashboard-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.dashboard-modal-container {
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    background: #ffffff;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.dashboard-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-dashboard-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 24px;
    cursor: pointer;
}

.close-dashboard-btn:hover {
    color: var(--color-error);
}

.dashboard-actions {
    padding: 16px 24px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-card-border);
    display: flex;
    gap: 12px;
}

.dashboard-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
    color: var(--color-text-main);
}

.leads-table th {
    background: var(--color-bg-alt);
    padding: 12px 16px;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-card-border);
}

.leads-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-card-border);
}

.no-data-msg {
    text-align: center;
    padding: 40px 0 !important;
    color: var(--color-text-muted);
}

.admin-lock-screen {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    min-height: 380px;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* CMS Dashboard Tabs & Panes Styling */
.dashboard-tabs {
    display: flex;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-card-border);
    gap: 8px;
    padding: 10px 24px 0 24px;
}

.dashboard-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text-muted);
    border-bottom: 3px solid transparent;
    font-family: inherit;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dashboard-tab-btn:hover {
    color: var(--color-primary);
}

.dashboard-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-orange);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* CMS Form & Fields Styling */
.cms-editor-form {
    padding: 4px 0;
}

.cms-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 1px dashed var(--color-card-border);
    padding-bottom: 8px;
    margin: 28px 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cms-section-title:first-of-type {
    margin-top: 0;
}

.cms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-sm);
    font-size: 13.5px;
    color: var(--color-text-main);
    font-family: inherit;
    background: var(--color-bg);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-group textarea {
    resize: vertical;
}

/* Floating WhatsApp Widget styling - Realistic Light Support Theme */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-bubble-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-bubble-btn:hover {
    transform: scale(1.08);
}

.pulse-ring {
    border: 3px solid #25d366;
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    animation: ringPulse 1.8s infinite;
}

@keyframes ringPulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.unread-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--color-error);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Chatbot Box */
.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 480px;
    background: #efeae2;
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chat-box.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chat-box-header {
    background: #075e54;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.bot-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bot-pic {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075e54;
    font-weight: 700;
}

.bot-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.verified-badge {
    color: #3b82f6;
    font-size: 11px;
}

.bot-status {
    display: block;
    font-size: 10px;
    color: #a5d6a7;
}

.close-chat-btn {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 18px;
    cursor: pointer;
}

.chat-box-body {
    flex: 1;
    background: #efeae2 url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png') repeat;
    background-size: contain;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.msg {
    max-width: 85%;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.msg-received {
    align-self: flex-start;
    background: #ffffff;
    color: #303030;
    border-radius: 0px 8px 8px 8px;
}

.msg-sent {
    align-self: flex-end;
    background: #d9fdd3;
    color: #303030;
    border-radius: 8px 0px 8px 8px;
}

.chat-box-options {
    padding: 12px;
    background: #f0f2f5;
    border-top: 1px solid var(--color-card-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 120px;
    overflow-y: auto;
}

.bot-option {
    background: #ffffff;
    border: 1px solid var(--color-card-border);
    color: var(--color-primary);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.bot-option:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.chat-box-input {
    background: #f0f2f5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--color-card-border);
}

.chat-box-input input {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    color: #333;
    font-size: 13px;
    outline: none;
}

.chat-box-input button {
    background: none;
    border: none;
    color: #075e54;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-grid, .grid-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Side Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #ffffff;
    border-left: 1px solid var(--color-card-border);
    z-index: 150;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.show {
    right: 0;
}

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

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-muted);
}

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

/* Portfolio & Case Studies Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-card-border);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    display: block;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.92); /* Rich Navy Blue translucent background */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-overlay h4 {
    color: #ffffff;
    font-size: 18px;
    margin: 8px 0;
    font-family: var(--font-heading);
}

.portfolio-overlay p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.45;
}

.project-tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--color-secondary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(30, 58, 138, 0.2);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Logo Hover Transitions */
.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.logo:hover .logo-text {
    color: var(--color-secondary);
}

/* Preschool Brand Launch Section Styles */
.preschool-launch-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.launch-features-container {
    margin-top: 60px;
    margin-bottom: 80px;
}

.subsection-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.subsection-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.launch-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Feature Cards */
.launch-feature-card {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.launch-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(249, 115, 22, 0.3);
}

.launch-feature-card .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--color-secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.launch-feature-card:hover .feature-icon-wrapper {
    background: var(--color-secondary);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.launch-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-primary-dark);
}

.launch-feature-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Highlighted Admissions Guarantee Card */
.launch-feature-card.highlight-card {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.launch-feature-card.highlight-card h3 {
    color: #ffffff;
}

.launch-feature-card.highlight-card p {
    color: rgba(255, 255, 255, 0.85);
}

.launch-feature-card.highlight-card .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.launch-feature-card.highlight-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.35);
}

.launch-feature-card.highlight-card:hover .feature-icon-wrapper {
    background: var(--color-secondary);
    color: #ffffff;
}

/* Make highlight card span full width on grid or place it strategically */
@media (min-width: 1024px) {
    .launch-features-grid .launch-feature-card:nth-child(4) {
        grid-column: span 1;
    }
    .launch-features-grid .launch-feature-card.highlight-card {
        grid-column: span 2;
        background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    }
}

/* Roadmap Timeline Styles (Interactive Layout) */
.roadmap-container {
    margin-top: 80px;
}

.roadmap-interactive-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

/* Left Panel: Dotted blueprint visual path layout */
.roadmap-visual-path {
    position: relative;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 75px; /* Vertical gap between rows */
    background-color: var(--color-bg);
    background-image: radial-gradient(rgba(148, 163, 184, 0.12) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    border-radius: var(--border-radius-lg);
    border: 1px dashed rgba(148, 163, 184, 0.25);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.01);
}

/* Background Wire SVG line with flowing animation */
.wire-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

.wire-svg {
    width: 100%;
    height: 100%;
}

@keyframes flowDashes {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -28;
    }
}

.wire-path {
    stroke: #cbd5e1;
    stroke-width: 8px;
    stroke-dasharray: 14 14;
    fill: none;
    stroke-linecap: round;
    animation: flowDashes 2s linear infinite;
}

@keyframes flowGlow {
    0% {
        stroke-dashoffset: 250;
    }
    100% {
        stroke-dashoffset: -250;
    }
}

.wire-path-glow {
    stroke: var(--color-orange);
    stroke-width: 4px;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 60 190;
    stroke-dashoffset: 250;
    animation: flowGlow 6s linear infinite;
    filter: drop-shadow(0 0 5px var(--color-orange));
    opacity: 0.85;
}

/* Rows for Steps */
.roadmap-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.roadmap-row.row-1 {
    padding-right: 40px;
}

.roadmap-row.row-2 {
    flex-direction: row-reverse; /* Flows Steps 6-10 right-to-left visually */
    padding-left: 40px;
    padding-right: 40px;
}

.roadmap-row.row-3 {
    justify-content: center;
    margin-top: 20px;
}

/* Node buttons entry animation & styling */
@keyframes nodeFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.roadmap-node {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--color-card-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    opacity: 0; /* Hidden initially for cascading reveal */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-interactive-layout.revealed .roadmap-node {
    animation: nodeFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Sequential Entrance Delays for Steps 1-11 */
.roadmap-row.row-1 .roadmap-node:nth-child(1) { animation-delay: 0.1s; }
.roadmap-row.row-1 .roadmap-node:nth-child(2) { animation-delay: 0.2s; }
.roadmap-row.row-1 .roadmap-node:nth-child(3) { animation-delay: 0.3s; }
.roadmap-row.row-1 .roadmap-node:nth-child(4) { animation-delay: 0.4s; }
.roadmap-row.row-1 .roadmap-node:nth-child(5) { animation-delay: 0.5s; }

.roadmap-row.row-2 .roadmap-node:nth-child(1) { animation-delay: 0.6s; } /* Step 6 */
.roadmap-row.row-2 .roadmap-node:nth-child(2) { animation-delay: 0.7s; } /* Step 7 */
.roadmap-row.row-2 .roadmap-node:nth-child(3) { animation-delay: 0.8s; } /* Step 8 */
.roadmap-row.row-2 .roadmap-node:nth-child(4) { animation-delay: 0.9s; } /* Step 9 */
.roadmap-row.row-2 .roadmap-node:nth-child(5) { animation-delay: 1.0s; } /* Step 10 */

.roadmap-row.row-3 .roadmap-node { animation-delay: 1.1s; } /* Step 11 */

.roadmap-node .node-num {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text-muted);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Hover/Active states */
.roadmap-node:hover, .roadmap-node.active {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.18);
}

@keyframes nodePulseOrange {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.roadmap-node.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-color: var(--color-orange);
    color: #ffffff;
    animation: nodePulseOrange 2s infinite;
}

.roadmap-node.active .node-num {
    background: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.roadmap-node i {
    transition: transform 0.3s ease;
}

@keyframes nodeIconBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1); }
}

.roadmap-node.active i {
    animation: nodeIconBounce 0.5s ease-out;
}

.roadmap-node:hover i {
    transform: scale(1.18);
}

/* Final node step 11 */
.roadmap-node.final-node {
    width: 82px;
    height: 82px;
    font-size: 26px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ea580c 100%);
    border-color: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.roadmap-node.final-node.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    border-color: var(--color-primary);
    animation: nodePulseOrange 2.5s infinite;
}

.roadmap-node.final-node .node-num {
    background: var(--color-primary-dark);
}

/* Right Panel: Sleek Glass Details Card */
.roadmap-details-panel {
    position: relative;
    height: 100%;
}

.details-card-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.roadmap-details-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-details-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.card-content-inner {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: translateY(0);
}

.card-content-inner.fade-out {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
}

.card-content-inner.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.card-image-container {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

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

.roadmap-details-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-phase-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(249, 115, 22, 0.08);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    align-self: flex-start;
    letter-spacing: 0.05em;
}

.card-icon-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(30, 58, 138, 0.05);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.card-title-group h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 2px;
}

.card-status-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-secondary);
    background: rgba(249, 115, 22, 0.08);
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-divider {
    border: 0;
    height: 1px;
    background: var(--color-card-border);
    margin: 0 0 20px 0;
}

.card-description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-progress-section {
    margin-bottom: 25px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.progress-bar-container {
    height: 8px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

@keyframes shineProgress {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-orange) 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0;
    position: relative;
    overflow: hidden;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shineProgress 3s infinite linear;
    background-size: 200% 100%;
}

.card-next-preview {
    display: flex;
    gap: 6px;
    font-size: 13px;
    background: var(--color-bg-alt);
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    align-items: center;
}

.card-next-preview .preview-label {
    color: var(--color-text-muted);
    font-weight: 600;
}

.card-next-preview .preview-text {
    color: var(--color-primary);
    font-weight: 700;
}

.card-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autoplay-toggle-btn {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.autoplay-toggle-btn:hover {
    color: var(--color-secondary);
}

/* Responsive Styles for Timeline */
@media (max-width: 1024px) {
    .roadmap-interactive-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wire-svg-container {
        display: none;
    }
    
    .roadmap-visual-path {
        padding: 0;
        gap: 20px;
    }
    
    .roadmap-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .roadmap-row.row-1, .roadmap-row.row-2 {
        padding: 0;
        flex-direction: row; /* Keep left-to-right grid representation on tablet */
    }
    
    .roadmap-details-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .roadmap-row {
        gap: 10px;
    }
    
    .roadmap-node {
        width: 54px;
        height: 54px;
        font-size: 16px;
    }
    
    .roadmap-node .node-num {
        top: -6px;
        font-size: 8px;
        padding: 1px 5px;
    }
    
    .roadmap-node.final-node {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .roadmap-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        gap: 12px 6px;
    }
    .roadmap-row.row-3 {
        display: flex;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   BLOG STYLES — Listing + Post + Sidebar
   ═══════════════════════════════════════════════════════════════ */

/* ── Blog Hero ── */
.blog-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.blog-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-content { text-align: center; max-width: 720px; margin: 0 auto; }
.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  color: #fb923c;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.blog-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.blog-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ── Blog Listing Section ── */
.blog-listing-section { padding: 72px 0; }

/* ── Featured Post ── */
.blog-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: 0 4px 24px rgba(15,23,42,.06);
  transition: box-shadow .3s;
}
.blog-featured-post:hover { box-shadow: 0 12px 40px rgba(15,23,42,.12); }
.blog-featured-image { overflow: hidden; }
.blog-featured-image > div { height: 100%; min-height: 320px; border-radius: 0 !important; }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-content { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-title { font-size: 1.5rem; font-weight: 800; line-height: 1.35; margin: 12px 0 16px; }
.blog-featured-title a { color: inherit; text-decoration: none; }
.blog-featured-title a:hover { color: var(--color-primary); }
.blog-featured-excerpt { color: var(--color-text-muted); line-height: 1.7; margin-bottom: 24px; }

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(15,23,42,.10);
  transform: translateY(-4px);
}
.blog-card-image-link { display: block; overflow: hidden; }
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-card-image { transform: scale(1.04); }
.blog-card-image-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
}
.read-more-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.read-more-link:hover { gap: 9px; }

/* ── Blog Tags ── */
.blog-tag {
  display: inline-block;
  background: rgba(30,58,138,.08);
  color: var(--color-primary);
  border: 1px solid rgba(30,58,138,.15);
  padding: 3px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}
.meta-date, .meta-read {
  font-size: .8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Blog Newsletter ── */
.blog-newsletter-box {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.blog-newsletter-icon { font-size: 2.5rem; margin-bottom: 16px; }
.blog-newsletter-box h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.blog-newsletter-box p { opacity: .8; max-width: 480px; margin: 0 auto 24px; }
.blog-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  font-size: .9rem;
  outline: none;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG POST PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── Blog Post Page Hero / Breadcrumb ── */
.blog-post-page-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  padding: 130px 0 24px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .85rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-nav a:hover { color: #fb923c; }
.breadcrumb-nav .separator { color: rgba(255,255,255,.4); }
.breadcrumb-nav .current {
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

/* ── Blog Post Section ── */
.blog-post-section { padding: 48px 0 80px; }
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ── Blog Post Main ── */
.blog-post-hero { border-radius: 16px; overflow: hidden; margin-bottom: 28px; }
.blog-post-hero img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.blog-post-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-text-main);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}

/* ── Article Body ── */
.blog-post-body { font-size: 1.05rem; line-height: 1.85; color: #1e293b; }
.blog-post-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--color-text-main);
  padding-top: 8px;
}
.blog-post-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--color-primary);
}
.blog-post-body p { margin-bottom: 16px; }
.blog-post-body strong { color: var(--color-text-main); font-weight: 700; }
.blog-post-body ul { list-style-type: disc !important; padding-left: 1.75rem !important; margin-bottom: 20px !important; }
.blog-post-body ol { list-style-type: decimal !important; padding-left: 1.75rem !important; margin-bottom: 20px !important; }
.blog-post-body li { margin-bottom: 10px !important; line-height: 1.8 !important; font-size: 1.05rem !important; }

/* ── Blog Checklist ── */
.blog-checklist { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.blog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .95rem;
  line-height: 1.5;
  border: 1px solid #e2e8f0;
}
.blog-checklist li i { margin-top: 2px; flex-shrink: 0; font-size: .9rem; }

/* ── Checklist Grid ── */
.blog-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 24px;
}
.blog-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: #166534;
}
.blog-check-item i { color: #16a34a; font-size: .85rem; flex-shrink: 0; }

/* ── Highlight Box ── */
.blog-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(30,58,138,.05), rgba(59,130,246,.08));
  border: 1px solid rgba(30,58,138,.15);
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 28px 0;
}
.blog-highlight-box > i {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.blog-highlight-box strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--color-text-main); }
.blog-highlight-box p { font-size: .9rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

/* ── Blog CTA Box ── */
.blog-cta-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.blog-cta-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; color: #fff; }
.blog-cta-box p { font-size: .95rem; opacity: .85; margin-bottom: 20px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   BLOG SIDEBAR STYLES
   ═══════════════════════════════════════════════════════════════ */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}
.sidebar-cta-widget {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #fff;
  text-align: center;
  border: none;
}
.sidebar-cta-icon { font-size: 2.5rem; margin-bottom: 12px; }
.sidebar-cta-widget h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.sidebar-cta-widget p { font-size: .85rem; opacity: .8; margin-bottom: 16px; line-height: 1.5; }
.sidebar-post-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.sidebar-post-list li { display: flex; flex-direction: column; gap: 4px; }
.sidebar-post-list a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s;
}
.sidebar-post-list a:hover { color: var(--color-primary); }
.sidebar-post-tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sidebar-post-date { font-size: .75rem; color: var(--color-text-muted); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all .2s;
}
.sidebar-tag:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.sidebar-whatsapp-widget { background: #f0fdf4; border-color: #bbf7d0; text-align: center; }
.sidebar-whatsapp-widget h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.sidebar-whatsapp-widget p { font-size: .82rem; color: #15803d; margin-bottom: 14px; line-height: 1.5; }

/* ── Utility Buttons ── */
.btn-whatsapp { background: #25d366 !important; color: #fff !important; border: none; }
.btn-whatsapp:hover { background: #128c7e !important; }
.btn-sm { padding: 8px 16px !important; font-size: .85rem !important; }
.w-full { width: 100%; display: block; text-align: center; }
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
}
.btn-primary-outline:hover { background: var(--color-primary); color: #fff; }

/* ── Responsive: Blog ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-featured-post { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-checklist-grid { grid-template-columns: 1fr; }
  .blog-newsletter-form { flex-direction: column; }
  .blog-newsletter-form input { width: 100%; }
  .blog-hero-section { padding: 100px 0 40px; }
}
