@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0F172A;
    --primary-light: #1E293B;
    --primary-rgb: 15, 23, 42;
    --secondary: #D2232A;
    --secondary-rgb: 210, 35, 42;
    --secondary-hover: #B71C22;
    --accent: #10B981;
    --accent-rgb: 16, 185, 129;
    --accent-hover: #059669;
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-dark-section: #0B132B;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #F1F5F9;
    
    /* System Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Borders & Shadows */
    --border-color: #E2E8F0;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
    --shadow-glow: 0 0 20px rgba(210, 35, 42, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Helper Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(210, 35, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 35, 42, 0.4);
    background: linear-gradient(135deg, var(--secondary-hover) 0%, #9B1015 100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: var(--transition-normal);
}

header.scrolled .navbar {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 74px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-normal);
}

header.scrolled .brand-logo-img {
    height: 52px;
}

.footer-logo .brand-logo-img,
.mobile-nav-header .brand-logo-img {
    height: 77px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 8px 0;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Products Dropdown Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 280px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1010;
    display: grid;
    gap: 4px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #F1F5F9;
    color: var(--secondary);
}

.dropdown-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: rgba(210, 35, 42, 0.08);
    color: var(--secondary);
}

.btn-nav-cta {
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    background-color: var(--secondary-hover);
    color: white;
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, #1e293b 0%, #0F172A 100%);
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(210, 35, 42, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.7;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(210, 35, 42, 0.15);
    color: #FCA5A5;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(210, 35, 42, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, #FCA5A5 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.85rem;
    color: #94A3B8;
    font-weight: 500;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.hero-card-info h4 {
    color: white;
    font-size: 1.05rem;
}

.hero-card-info p {
    color: #64748B;
    font-size: 0.8rem;
}

.hero-card-body {
    display: grid;
    gap: 16px;
}

.hero-card-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.hero-card-row:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(210, 35, 42, 0.3);
}

.hero-card-row span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.hero-card-row strong {
    font-size: 0.9rem;
    color: white;
}

.hero-card-footer {
    margin-top: 24px;
}

.hero-graphic-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 35, 42, 0.25) 0%, transparent 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s infinite alternate;
}

/* Why Us Section (Neden Kavacık Sigorta?) */
.section-header {
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header .badge {
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(210, 35, 42, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(210, 35, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--secondary);
    color: white;
    transform: rotateY(360deg);
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products Section (Ürünlerimiz) */
.products-section {
    background-color: #F1F5F9;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.tab-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.tab-btn.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 10px rgba(210, 35, 42, 0.2);
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(210, 35, 42, 0.15);
}

.product-card-top {
    padding: 32px 32px 20px;
    flex-grow: 1;
}

.product-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background-color: rgba(210, 35, 42, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.product-card.corporate .product-badge {
    color: #4F46E5;
    background-color: rgba(79, 70, 229, 0.08);
}

.product-card-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.product-card.corporate .product-card-icon {
    color: #4F46E5;
}

.product-card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    stroke: currentColor;
    fill: none;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-card-bottom {
    padding: 20px 32px 32px;
    border-top: 1px solid var(--border-color);
    background-color: #FAFAFA;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
}

.product-card.corporate .product-link {
    color: #4F46E5;
}

.product-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: var(--transition-fast);
}

.product-card:hover .product-link svg {
    transform: translateX(4px);
}

/* About Us Section (Hakkımızda) */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-visual:hover .about-image img {
    transform: scale(1.03);
}

.about-badge-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 260px;
}

.about-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.about-badge-text h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
}

.about-badge-text p {
    color: #94A3B8;
    font-size: 0.8rem;
    margin: 0;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-features-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-list-icon {
    width: 22px;
    height: 22px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.about-list-text {
    font-weight: 500;
    color: var(--text-primary);
}

/* Claims Section (Hasar İşlemleri) */
.claims-section {
    background-color: #0B132B;
    color: white;
}

.claims-section .section-header h2 {
    color: white;
}

.claims-section .section-header p {
    color: #94A3B8;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(210, 35, 42, 0.2);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #0B132B;
    border: 4px solid var(--secondary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-fast);
}

.timeline-item:hover::after {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent);
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(210, 35, 42, 0.4);
    transform: translateY(-3px);
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--secondary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Section (İletişim) */
.contact-section {
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info-card {
    background-color: var(--primary);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(210, 35, 42, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.contact-info-title h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-info-title p {
    color: #94A3B8;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.contact-methods {
    display: grid;
    gap: 28px;
}

.contact-method-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.contact-method-item:hover .contact-method-icon {
    background-color: var(--secondary);
    color: white;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.contact-method-text h5 {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-method-text p,
.contact-method-text a {
    color: #CBD5E1;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-method-text a:hover {
    color: var(--secondary);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(210, 35, 42, 0.12);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-status {
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: none;
    font-weight: 500;
}

.form-status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 48px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer styling */
footer {
    background-color: var(--primary);
    color: white;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
}

.footer-logo-text span {
    color: var(--secondary);
}

.footer-about-text {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-link {
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
    display: grid;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.footer-contact-text {
    color: #94A3B8;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-text span {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-bottom {
    background-color: #0A0F1D;
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #64748B;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: #64748B;
    font-size: 0.85rem;
    font-weight: 500;
}

.legal-link:hover {
    color: var(--secondary);
}

/* Modal Core Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10;
    transform: translateY(20px);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F1F5F9;
    border: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 20;
}

.modal-close-btn:hover {
    background-color: #E2E8F0;
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.modal-body {
    padding: 40px;
}

/* Quote Wizard Modal Specific Styles */
.modal-quote-container {
    max-width: 700px;
}

.quote-wizard-header {
    text-align: center;
    margin-bottom: 32px;
}

.quote-wizard-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.quote-wizard-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Progress Steps bar */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 450px;
    margin: 0 auto 32px;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    height: 4px;
    background-color: var(--border-color);
    left: 0;
    right: 0;
    top: 18px;
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    height: 4px;
    background-color: var(--secondary);
    left: 0;
    top: 18px;
    z-index: 2;
    width: 0%;
    transition: var(--transition-normal);
}

.step-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 3;
    transition: var(--transition-normal);
}

.step-node.active {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 10px rgba(210, 35, 42, 0.25);
}

.step-node.completed {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.step-node-label {
    position: absolute;
    top: 48px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-node.active .step-node-label {
    color: var(--secondary);
}

.step-node.completed .step-node-label {
    color: var(--primary);
}

/* Wizard Steps Panel Wrapper */
.wizard-panel {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.wizard-panel.active {
    display: block;
}

.quote-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.quote-type-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.quote-type-card:hover {
    border-color: var(--secondary);
    background-color: rgba(210, 35, 42, 0.02);
}

.quote-type-card.selected {
    border-color: var(--secondary);
    background-color: rgba(210, 35, 42, 0.05);
    box-shadow: var(--shadow-glow);
}

.quote-type-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.quote-type-card:hover .quote-type-icon,
.quote-type-card.selected .quote-type-icon {
    color: var(--secondary);
    transform: scale(1.1);
}

.quote-type-title {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Range input style */
.range-slider-container {
    margin: 24px 0;
}

.range-slider-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-left: 8px;
}

input[type=range].slider-input {
    width: 100%;
    margin: 12px 0;
    -webkit-appearance: none;
    background: #E2E8F0;
    height: 8px;
    border-radius: 4px;
    outline: none;
}

input[type=range].slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

input[type=range].slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Step Footer Buttons */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.wizard-footer .btn {
    min-width: 120px;
}

/* Success Wizard Result Page */
.quote-success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-icon-animated {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.2rem;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon-animated svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
}

.price-result-box {
    background: linear-gradient(135deg, rgba(210, 35, 42, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1.5px dashed var(--secondary);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 24px 0;
}

.price-result-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.price-result-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-result-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Product Detail Modal styles */
.detail-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-modal-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(210, 35, 42, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-modal-header-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.detail-modal-header h3 {
    font-size: 1.5rem;
}

.detail-modal-list {
    margin: 24px 0 32px;
    list-style: none;
    display: grid;
    gap: 16px;
}

.detail-modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-modal-list-icon {
    color: var(--success);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-modal-list-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.detail-modal-list-text strong {
    color: var(--primary);
}

/* Mobile Side Nav Menu Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: var(--shadow-xl);
    z-index: 1050;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: var(--transition-normal);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-menu {
    list-style: none;
    display: grid;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    padding: 6px 0;
    border-bottom: 1.5px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--secondary);
    border-color: rgba(210, 35, 42, 0.1);
}

.mobile-nav-cta {
    margin-top: auto;
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 999;
    border: none;
    transition: var(--transition-normal);
    opacity: 0;
}

.back-to-top.active {
    right: 30px;
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* Scroll Animation classes */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }
    to {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.85;
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-graphic {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image img {
        height: 380px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item::after {
        left: 21px;
        right: auto;
    }
    
    .left, .right {
        text-align: left;
        left: 0;
    }
    
    .right::after {
        left: 21px;
    }
}

@media (max-width: 768px) {
    .nav-menu, 
    .btn-nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .quote-type-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .about-badge-card {
        right: 10px;
        bottom: -20px;
        padding: 16px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::after {
        left: 11px;
    }
    
    .right::after {
        left: 11px;
    }
    
    .timeline::before {
        left: 21px;
    }
}

/* Modal 2-Column Grid */
.modal-grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .modal-grid-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================
   BLOG STYLES
   ========================================== */

/* Blog Hero / Breadcrumbs */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 0 60px 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(210, 35, 42, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.blog-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

/* Blog Search & Filters */
.blog-filters-container {
    padding: 40px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.blog-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-card);
    transition: var(--transition-normal);
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(210, 35, 42, 0.08);
}

.blog-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.blog-category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
}

.blog-filter-btn {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--text-secondary);
}

.blog-filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.blog-filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-light);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0 80px 0;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(210, 35, 42, 0.15);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.blog-card-image svg {
    opacity: 0.8;
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--secondary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    gap: 5px;
    margin-top: auto;
}

.blog-card-link svg {
    transition: var(--transition-fast);
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Single Post Layout */
.blog-details-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 60px 0 80px 0;
}

.blog-article-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.blog-article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.blog-article-header .blog-card-badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-article-header h1 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-article-body p {
    margin-bottom: 24px;
}

.blog-article-body h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 20px 0;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.faq-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question-icon {
    transition: var(--transition-normal);
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(210, 35, 42, 0.25);
    background: #FFF;
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.sidebar-widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 35, 42, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.sidebar-cta-widget h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.sidebar-cta-widget p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.sidebar-cta-widget .btn {
    width: 100%;
    position: relative;
    z-index: 1;
}

.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-article-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.sidebar-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
}

.sidebar-article-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--secondary);
}

/* Responsiveness for Blog */
@media (max-width: 992px) {
    .blog-details-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-article-container {
        padding: 24px;
    }
    
    .blog-article-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Live Indicator Styling */
.live-indicator {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10B981;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    left: auto;
    width: 52px;
    height: 52px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* WhatsApp Tooltip */
.whatsapp-float::before {
    content: "WhatsApp Destek Hattı";
    position: absolute;
    right: 68px;
    left: auto;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    right: 60px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Pulsing effect */
.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse-anim 2s infinite;
}

@keyframes whatsapp-pulse-anim {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        left: auto;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float::before, .whatsapp-float::after {
        display: none !important; /* Hide tooltip on mobile to avoid screen clutter */
    }
}

/* ==========================================
   Chatbot Live Support Widget (Bottom-Left)
   ========================================== */
.chatbot-widget {
    position: fixed;
    bottom: 150px;
    right: 30px;
    left: auto;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
}

.chatbot-btn {
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
}

.chatbot-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1) translateY(-3px);
}

.chatbot-btn svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Chatbot Tooltip */
.chatbot-btn::before {
    content: "Canlı Destek Hattı";
    position: absolute;
    right: 68px;
    left: auto;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.chatbot-btn::after {
    content: "";
    position: absolute;
    right: 60px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chatbot-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.chatbot-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation for chatbot */
.chatbot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: -1;
    animation: chatbot-pulse-anim 2.5s infinite;
}

@keyframes chatbot-pulse-anim {
    0% {
        transform: scale(0.95);
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Window Container */
.chatbot-window {
    position: absolute;
    bottom: 68px;
    right: 0;
    left: auto;
    width: 360px;
    height: 480px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-window.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Chat Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-avatar {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.chatbot-title h4 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    opacity: 0.9;
    margin-top: 1px;
}

.chatbot-status-dot {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 4px #10B981;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close-btn:hover {
    opacity: 1;
}

.chatbot-close-btn svg {
    width: 18px;
    height: 18px;
}

/* Chat Content Area */
.chatbot-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
    background-color: #f8fafc;
}

/* Message Bubbles */
.chatbot-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.chatbot-msg.bot {
    background-color: white;
    color: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.chatbot-msg.user {
    background-color: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 6px rgba(210, 35, 42, 0.15);
}

/* Chat Inline Contact Form */
.chatbot-form-container {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: flex-start;
}

.chatbot-form-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.chatbot-form-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.76rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.chatbot-form-input:focus {
    border-color: var(--primary);
}

.chatbot-form-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    margin-top: 4px;
}

.chatbot-form-submit:hover {
    background-color: var(--primary-hover);
}

.chatbot-form-status {
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 4px;
    display: none;
    padding: 6px;
    border-radius: 4px;
}

.chatbot-form-status.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}

.chatbot-form-status.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Chat Input Bar */
.chatbot-footer {
    padding: 10px 12px;
    background-color: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.2s;
    background-color: #f8fafc;
    font-family: inherit;
}

.chatbot-input:focus {
    border-color: var(--primary);
    background-color: white;
}

.chatbot-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.chatbot-send-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.chatbot-send-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    margin-left: 2px;
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: 0;
        left: auto;
        bottom: 60px;
    }
    .chatbot-widget {
        bottom: 140px;
        right: 20px;
        left: auto;
    }
    .chatbot-btn::before, .chatbot-btn::after {
        display: none !important;
    }
}
