/* AKINSOFT Balıkesir Bölge Bayi - Kurumsal & Prestijli Stil Dosyası */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --akinsoft-blue: #014D8E;
    --akinsoft-blue-dark: #003366;
    --akinsoft-blue-light: #026AC3;
    --akinsoft-blue-soft: rgba(1, 77, 142, 0.08);
    --akinsoft-green: #07A34F;
    --akinsoft-green-dark: #057A3B;
    
    --navy-900: #0A192F;
    --navy-800: #112240;
    --navy-700: #1D2D50;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --bg-light: #F8FAFC;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 25px -5px rgba(1, 77, 142, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 35px -10px rgba(1, 77, 142, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 122px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text Effect */
.gradient-text-blue {
    background: linear-gradient(135deg, #014D8E 0%, #026AC3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-white {
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Bar */
.top-bar {
    background: var(--navy-900);
    color: var(--slate-400);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-contacts {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-contacts a {
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.top-contacts a:hover {
    color: #FFFFFF;
}

.top-contacts a i {
    color: #60A5FA;
}

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

/* Unified Top Action Pills & Interactive Hover Dropdown Cards */
.top-action-wrapper {
    position: relative;
    display: inline-block;
}

.top-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 13px;
    font-size: 11.5px;
    font-weight: 800;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    cursor: pointer;
}

.top-pill-amber {
    background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(217,119,6,0.18));
    border: 1px solid rgba(245,158,11,0.45);
    color: #FBBF24;
}
.top-pill-amber:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.top-pill-emerald {
    background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(4,120,87,0.18));
    border: 1px solid rgba(16,185,129,0.45);
    color: #34D399;
}
.top-pill-emerald:hover {
    background: linear-gradient(135deg, #10B981, #047857);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.top-pill-indigo {
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(79,70,229,0.18));
    border: 1px solid rgba(99,102,241,0.45);
    color: #A5B4FC;
}
.top-pill-indigo:hover {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.top-pill-blue {
    background: linear-gradient(135deg, rgba(0,102,204,0.18), rgba(0,41,102,0.18));
    border: 1px solid rgba(96,165,250,0.45);
    color: #60A5FA;
}
.top-pill-blue:hover {
    background: linear-gradient(135deg, #0066CC, #002966);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
}

/* Hover Dropdown Card Popup */
.top-action-card {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 250px;
    background: #011B38;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    pointer-events: none;
}

.top-action-wrapper:hover .top-action-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.badge-region {
    background: rgba(1, 77, 142, 0.3);
    color: #93C5FD;
    border: 1px solid rgba(147, 197, 253, 0.3);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-live {
    background: rgba(7, 163, 79, 0.15);
    color: #34D399;
    border: 1px solid rgba(52, 211, 153, 0.25);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

/* Header & Navbar Fixed Wrapper (Sayfa Kaydırıldığında %100 Ekrana Kilitli Kalır) */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.main-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    z-index: 10;
}

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

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

.brand-logo img {
    height: 38px;
    object-fit: contain;
}

.logo-divider {
    width: 2px;
    height: 24px;
    background: #CBD5E1;
    border-radius: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--akinsoft-blue);
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 10.5px;
    color: var(--slate-600);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    padding: 6px 8px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-icon {
    font-size: 12.5px;
    color: #64748B;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover .nav-icon, .nav-link.active .nav-icon {
    color: var(--akinsoft-blue);
    transform: scale(1.1);
}

.nav-actions {
    flex-shrink: 0;
}

/* Header Action Buttons - 100% Identical Sizing & Style */
.btn-header-calc, .btn-header-demo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    height: 42px !important;
    padding: 0 18px !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    border: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.btn-header-calc {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.28) !important;
}

.btn-header-calc:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4) !important;
}

.btn-header-demo {
    background: linear-gradient(135deg, #014D8E 0%, #021B33 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(1, 77, 142, 0.28) !important;
}

.btn-header-demo:hover {
    background: linear-gradient(135deg, #013868 0%, #011224 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(1, 77, 142, 0.4) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: linear-gradient(90deg, var(--akinsoft-blue) 0%, var(--akinsoft-green) 100%);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--akinsoft-blue);
    transform: translateY(-1px);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--akinsoft-blue);
    font-weight: 800;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary, .btn-blue {
    background: var(--akinsoft-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(1, 77, 142, 0.25);
}

.btn-primary:hover, .btn-blue:hover {
    background: var(--akinsoft-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(1, 77, 142, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--akinsoft-blue);
    color: var(--akinsoft-blue);
}

.btn-outline:hover {
    background: var(--akinsoft-blue);
    color: white;
}

.btn-green {
    background: var(--akinsoft-green);
    color: white;
    box-shadow: 0 4px 12px rgba(7, 163, 79, 0.25);
}

.btn-green:hover {
    background: var(--akinsoft-green-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy-900);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    color: white;
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 17px;
    color: #94A3B8;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.stat-item h3 {
    font-size: 30px;
    color: white;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 0;
    font-weight: 500;
}

/* Glassmorphism Featured Card */
/* Keyframe Animations & Micro-Interactions */
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(7, 163, 79, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(7, 163, 79, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(7, 163, 79, 0); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--akinsoft-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

.hero-card {
    animation: floatCard 6s ease-in-out infinite;
}

.product-card:hover .product-header img {
    transform: scale(1.08);
}

.product-header img {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating WhatsApp Quick Contact Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(7, 94, 84, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulseGlow 2.5s infinite;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
    border-color: #075E54 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.3) !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #0E7065 0%, #043E37 100%) !important;
    box-shadow: 0 6px 16px rgba(18, 140, 126, 0.45) !important;
}

/* Slider Dots & Banner Widget Wrapper */
.slider-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active, .slider-dot:hover {
    background: var(--akinsoft-blue);
    width: 24px;
    border-radius: 10px;
}

.banner-widget-container {
    width: 100%;
    max-width: 760px;
    margin: 35px auto 10px;
    min-height: 110px;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-card:hover {
    border-color: rgba(1, 77, 142, 0.4);
}

/* Features Strip */
.features-strip {
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #FFFFFF;
    padding: 24px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(1, 77, 142, 0.08);
    color: var(--akinsoft-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background: var(--akinsoft-blue);
    color: white;
}

.feature-text h4 {
    font-size: 15.5px;
    color: var(--navy-900);
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-text p {
    font-size: 13px;
    color: var(--slate-500);
}

/* Section Common Styling */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-title .tag {
    color: var(--akinsoft-blue);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(1, 77, 142, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--slate-600);
    font-size: 16px;
    margin-top: 10px;
}

.campaign-detail-content p {
    margin-bottom: 10px;
}
.campaign-detail-content p:last-child {
    margin-bottom: 0;
}
.campaign-detail-content ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: disc;
}
.campaign-detail-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}
.campaign-detail-content strong {
    color: #0F172A;
    font-weight: 700;
}

/* Products Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    border-color: var(--akinsoft-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F1F5F9;
}

.product-tag {
    background: rgba(1, 77, 142, 0.08);
    color: var(--akinsoft-blue);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    font-size: 13.5px;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.product-features li i {
    color: var(--akinsoft-green);
    font-size: 14px;
}

/* Campaign Cards */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.campaign-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.campaign-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--akinsoft-blue);
}

.campaign-img {
    height: 190px;
    background: var(--navy-900);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.campaign-body {
    padding: 24px;
}

.campaign-date {
    font-size: 12.5px;
    color: var(--slate-500);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.campaign-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.campaign-body p {
    font-size: 13.5px;
    color: var(--slate-600);
    margin-bottom: 20px;
}

/* Dealer Directory Filters */
.dealer-filter-bar {
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: #F1F5F9;
    color: #475569;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--akinsoft-blue);
    color: white;
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dealer-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    padding: 24px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.dealer-card:hover {
    border-color: var(--akinsoft-blue);
    box-shadow: var(--shadow-md);
}

.district-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(1, 77, 142, 0.08);
    color: var(--akinsoft-blue);
    font-size: 11.5px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
}

.dealer-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 4px;
    padding-right: 80px;
}

.dealer-person {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 15px;
    font-weight: 600;
}

.dealer-info-list {
    list-style: none;
    margin-bottom: 20px;
}

.dealer-info-list li {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.dealer-info-list li i {
    color: var(--akinsoft-blue);
    margin-top: 3px;
}

/* Downloads & Support */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.download-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.download-card:hover {
    border-color: var(--akinsoft-blue);
    box-shadow: var(--shadow-md);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: rgba(1, 77, 142, 0.08);
    color: var(--akinsoft-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.download-info {
    flex-grow: 1;
    margin: 0 15px;
}

.download-info h4 {
    font-size: 16px;
    color: var(--navy-900);
    margin-bottom: 2px;
    font-weight: 700;
}

.download-info p {
    font-size: 13px;
    color: var(--slate-500);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--slate-600);
    font-size: 14.5px;
    line-height: 1.6;
    display: none;
}

.faq-item.active {
    border-color: var(--akinsoft-blue);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--akinsoft-blue);
}

/* Application Form Box */
.form-box {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid #E2E8F0;
}

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

.form-label {
    display: block;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: #F8FAFC;
}

.form-control:focus {
    outline: none;
    border-color: var(--akinsoft-blue);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(1, 77, 142, 0.12);
}

/* Footer */
.main-footer {
    background: var(--navy-900);
    color: #94A3B8;
    padding: 70px 0 25px;
    border-top: 4px solid var(--akinsoft-blue);
}

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

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--akinsoft-blue);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #94A3B8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 13px;
    color: #64748B;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.75);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.show {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F1F5F9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    color: #64748B;
}

/* Alert Boxes */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}
.alert-success { background: #DCFCE7; color: #15803D; border: 1px solid #86EFAC; }
.alert-danger { background: #FEE2E2; color: #B91C1C; border: 1px solid #FCA5A5; }
.alert-info { background: #E0F2FE; color: #0369A1; border: 1px solid #7DD3FC; }

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid, .campaigns-grid, .dealers-grid, .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 97px !important;
    }

    /* Mobile Top Bar Cleanup */
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }
    .top-bar-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 12px !important;
    }
    .top-contacts a:not(:first-child) {
        display: none !important; /* Hide redundant email/whatsapp in tiny top bar */
    }
    .top-links .badge-region {
        display: none !important; /* Hide badge in top bar on tiny screens */
    }
    .top-links {
        margin-left: auto;
    }

    /* Main Navbar Mobile Layout */
    .main-header .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 14px !important;
        position: relative !important;
    }
    .brand-logo img {
        height: 30px !important;
    }
    .logo-divider {
        display: none !important;
    }
    .logo-title {
        font-size: 15px !important;
    }
    .logo-subtitle {
        font-size: 9px !important;
    }

    /* Hide outer demo button on header row to prevent overlap */
    .nav-actions {
        display: none !important;
    }
    
    /* Show demo button inside collapsible menu */
    .mobile-demo-btn {
        display: block !important;
    }

    /* Hamburger Menu Button Position */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #F1F5F9;
        border: 1.5px solid #CBD5E1;
        border-radius: 10px;
        color: #014D8E;
        font-size: 18px;
        cursor: pointer;
        margin-left: auto;
    }

    /* Slide-down Dropdown Menu */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 16px;
        border-bottom: 3px solid var(--akinsoft-blue);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        z-index: 1000;
        gap: 8px;
    }
    .nav-menu.show {
        display: flex !important;
    }
    .nav-link {
        padding: 12px 15px;
        border-radius: 8px;
        background: #F8FAFC;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        color: #0F172A;
    }

    /* Mobile Layout Grids */
    .features-grid, .products-grid, .campaigns-grid, .dealers-grid, .downloads-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* Mobile Hero & Typography */
    .hero-title {
        font-size: 26px !important;
    }
    .hero-subtitle {
        font-size: 14.5px !important;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Announcement Card Styling */
    .announcement-card {
        padding: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .ann-top-bar, .ann-bottom-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .ann-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Mobile Popup Modals */
    .modal-content {
        width: 95% !important;
        max-width: 95% !important;
        margin: 10px !important;
        padding: 18px !important;
        max-height: 88vh !important;
    }
    .modal-close {
        top: 10px !important;
        right: 10px !important;
    }
    
    /* WhatsApp Floating Button */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .logo-title {
        font-size: 17px !important;
    }
    .logo-subtitle {
        font-size: 10px !important;
    }
    .campaign-card {
        border-radius: 12px;
    }
    .section-title h2 {
        font-size: 22px !important;
    }
}

/* Footer SEO Badge Tag Styling */
.seo-badge-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    color: #94A3B8;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.25s ease;
}

.seo-badge-tag:hover {
    background: rgba(1, 77, 142, 0.35);
    color: #38BDF8;
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-1px);
}
