@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS VARIABLES - FULL CONTROL
   ========================================================================== */
:root {
    /* --- BRAND COLORS --- */
    --primary-color: #ff4d00;
    --primary-hover: #cc3d00;
    --primary-light: #ff6b2c;
    --secondary-color: #0b0f19;
    --accent-color: #2b3a55;
    
    /* --- NEUTRALS --- */
    --white: #ffffff;
    --off-white: #f3f4f6;
    --light-gray: #e5e7eb;
    --medium-gray: #9ca3af;
    --dark-gray: #4b5563;
    --text-dark: #1f2937;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(11, 15, 25, 0.85);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.1);
    
    /* --- TYPOGRAPHY --- */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* --- DIMENSIONS --- */
    --container-width: 1400px;
    --header-height: 90px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    
    /* --- SHADOWS & GLOWS --- */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.2);
    --glow-primary: 0 0 20px rgba(255, 77, 0, 0.4);
    
    /* --- ANIMATIONS --- */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.4s;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: all var(--transition-normal) var(--ease-out-expo); 
}

ul { list-style: none; }

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-padding { 
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
}

.text-primary { color: var(--primary-color); }
.text-white { color: var(--white); }
.text-muted { color: var(--medium-gray); }

.bg-dark { 
    background-color: var(--secondary-color); 
    color: var(--white); 
}

.bg-white { 
    background-color: var(--white); 
}

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }

.w-100 { width: 100%; max-width: 100%; }
.h-100 { height: 100%; }

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-4 { padding: 1.5rem; }
.text-center { text-align: center; }

.float-end { float: right; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.display-1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
    font-weight: 800;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

/* ==========================================================================
   BUTTONS - PERFECT STYLING
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: all var(--transition-slow) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--glow-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; 
    width: 0%; 
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transition: width var(--transition-slow) var(--ease-out-expo);
}

.btn-primary:hover { 
    color: var(--primary-color); 
    transform: translateY(-2px);
}

.btn-primary:hover::before { 
    width: 100%; 
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER - GLASSMORPHIC NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-slow) var(--ease-out-expo);
    padding: 0 2rem;
}

.main-header.scrolled {
    top: 0;
    padding: 0;
}

.header-inner {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-strong);
    max-width: var(--container-width);
    margin: 0 auto;
}

.main-header.scrolled .header-inner {
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: rgba(11, 15, 25, 0.95);
    max-width: 100%;
}

.logo img { 
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    opacity: 0.85;
    transition: opacity var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0; 
    width: 0; 
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal) ease;
}

.nav-link:hover, 
.nav-link.active { 
    opacity: 1; 
}

.nav-link:hover::after, 
.nav-link.active::after { 
    width: 100%; 
}

.header-actions { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.icon-btn {
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
}

.icon-btn:hover { 
    background: var(--primary-color); 
    transform: scale(1.1); 
}

/* Mega Menu */
.has-dropdown { 
    position: relative; 
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    max-width: 90vw;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-strong);
    opacity: 0; 
    visibility: hidden;
    transition: all var(--transition-normal) var(--ease-out-expo);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    z-index: 100;
}

.has-dropdown:hover .mega-menu {
    opacity: 1; 
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-item {
    display: flex; 
    align-items: center; 
    gap: 12px;
    padding: 15px;
    border-radius: var(--radius-md);
    background: var(--off-white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.mega-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform var(--transition-normal);
}

.mega-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.mega-item:hover i {
    color: var(--white);
    transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: right var(--transition-slow) var(--ease-out-expo);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION - ULTIMATE IMPACT
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--secondary-color);
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    opacity: 0.4;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect { 
    to { transform: scale(1.1); } 
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    color: var(--white);
    padding: 0 1rem;
}

.hero-badge {
    background: rgba(255, 77, 0, 0.2);
    border: 1px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    margin-right: 8px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-box h3 { 
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color); 
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-box p { 
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.6); 
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   SERVICES - BENTO GRID PERFECTION
   ========================================================================== */
.services-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 420px;
    transition: transform var(--transition-slow) var(--ease-out-expo), 
                box-shadow var(--transition-slow);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 100%;
}

.bento-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-strong); 
}

.bento-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bento-img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease-out-expo);
}

.bento-card:hover .bento-img { 
    transform: scale(1.1); 
}

.bento-overlay {
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: var(--white);
    transform: translateY(10px);
    transition: transform var(--transition-slow);
}

.bento-card:hover .bento-overlay { 
    transform: translateY(0); 
}

.bento-icon {
    width: 50px; 
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bento-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* ==========================================================================
   ABOUT SECTION - SPLIT LAYOUT
   ========================================================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-group {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.main-img {
    border-radius: var(--radius-lg);
    width: 100%;
    z-index: 2;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.pattern-dots {
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 150px; 
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--light-gray);
}

.feature-pill i { 
    color: var(--primary-color); 
}

/* ==========================================================================
   INNER PAGE LAYOUT
   ========================================================================== */
.page-header {
    min-height: 45vh;
    height: auto;
    background-color: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
    padding: 140px 2rem 60px;
    width: 100%;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-title-wrap { 
    z-index: 2; 
    color: var(--white);
    position: relative;
    max-width: 100%;
    padding: 0 1rem;
}

.page-title-wrap h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.layout-sidebar {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   CONTENT CARD & TEXT AREA - COMPLETE STYLING
   ========================================================================== */
.content-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-area-text {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.content-area-text h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.content-area-text h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-area-text h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-area-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-area-text ul,
.content-area-text ol {
    padding-left: 25px;
    margin-bottom: 25px;
    list-style-position: outside;
}

.content-area-text ul {
    list-style-type: disc;
}

.content-area-text ol {
    list-style-type: decimal;
}

.content-area-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-area-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.content-area-text a {

    text-decoration: underline;
}

.content-area-text a:hover {
    color: var(--primary-hover);
}

.content-area-text blockquote {
    background: var(--off-white);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: var(--dark-gray);
}

/* ==========================================================================
   SIDEBAR WIDGETS - COMPLETE STYLING
   ========================================================================== */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.sidebar-widget.bg-dark {
    background: var(--secondary-color);
    color: var(--white);
}

.sidebar-widget.bg-dark p {
    color: rgba(255,255,255,0.8);
}

.sidebar-widget.bg-dark .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-widget.bg-dark .btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.widget-title {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--off-white);
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex; 
    align-items: center; 
    gap: 10px;
    color: var(--secondary-color);
}

.sidebar-widget.bg-dark .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.1);
}

.widget-title i { 
    color: var(--primary-color); 
}

.sidebar-widget.bg-dark .widget-title i {
    color: var(--primary-color);
}

/* Region Links */
.region-link {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all var(--transition-normal);
    font-weight: 500;
    color: var(--text-dark);
}

.region-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    padding-left: 24px;
    box-shadow: var(--shadow-soft);
}

.region-link i {
    opacity: 0.5;
    transition: opacity var(--transition-normal);
}

.region-link:hover i {
    opacity: 1;
}

/* City Accordion */
.city-group {
    margin-bottom: 15px;
}

.city-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.city-header:hover {
    background: var(--primary-color);
}

.city-header.active {
    background: var(--primary-color);
}

.city-content {
    display: none;
    padding-top: 10px;
}

.district-link {
    padding: 12px 16px;
    border-left: 3px solid var(--light-gray);
    margin-left: 15px;
    margin-bottom: 5px;
    display: block;
    color: var(--dark-gray);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: all var(--transition-normal);
    background: var(--off-white);
}

.district-link:hover,
.district-link.active {
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 77, 0, 0.08);
    padding-left: 20px;
}

/* Search Input */
#regionSearch {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
}

#regionSearch:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ==========================================================================
   FOOTER - COMPREHENSIVE STYLING
   ========================================================================== */
.main-footer {
    background-color: var(--secondary-color);
    color: rgba(255,255,255,0.7);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-pattern {
    position: absolute;
    top: 0; 
    right: 0;
    width: 600px; 
    height: 600px;
    background: radial-gradient(circle, rgba(255,77,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 100%;
}

.footer-brand h2 { 
    font-size: 2rem; 
    color: var(--white); 
    margin-bottom: 20px; 
}

.footer-brand span { 
    color: var(--primary-color); 
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li { 
    margin-bottom: 15px; 
}

.footer-links a { 
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover { 
    color: var(--primary-color); 
    padding-left: 5px; 
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px; 
    right: 30px;
    display: flex; 
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: var(--shadow-strong);
    transition: all var(--transition-normal);
}

.float-whatsapp { 
    background: #25D366; 
}

.float-phone { 
    background: var(--primary-color); 
}

.float-btn:hover { 
    transform: translateY(-5px) scale(1.05);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
    width: 100%;
    max-width: 100%;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonial-card {
    min-width: 350px;
    max-width: 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.text-warning {
    color: #fbbf24;
}

.text-warning i {
    margin-right: 3px;
}

/* ==========================================================================
   SCROLL BAR GLOBAL STYLING
   ========================================================================== */
::-webkit-scrollbar { 
    width: 10px; 
}

::-webkit-scrollbar-track { 
    background: var(--light-gray); 
}

::-webkit-scrollbar-thumb { 
    background: var(--secondary-color); 
    border-radius: 5px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: var(--primary-color); 
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ========================================================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    :root {
        --container-width: 1140px;
    }
    
    .mega-menu {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    :root {
        --container-width: 960px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu,
    .header-actions .btn { 
        display: none; 
    }
    
    .mobile-toggle { 
        display: flex; 
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 { 
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .layout-sidebar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-area {
        order: 2;
    }
    
    .services-bento {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Landscape - CRİTİCAL FİXES */
@media (max-width: 768px) {
    /* Global overflow fixes */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    .section-padding {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .main-header {
        padding: 0 1rem;
        top: 10px;
    }
    
    .header-inner {
        padding: 12px 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero-section {
        min-height: 80vh;
        padding-top: 100px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
        width: 100%;
    }
    
    .stat-box {
        text-align: center;
        width: 100%;
    }
    
    .display-1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        word-wrap: break-word;
    }
    
    /* Services Grid - Mobile Fix */
    .services-bento {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .bento-card {
        height: 320px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Content Card - Mobile Fix */
    .content-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .content-area-text {
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .content-area-text h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .content-area-text img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Footer - Mobile Fix */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    .footer-col {
        width: 100%;
        max-width: 100%;
    }
    
    /* Floating Buttons */
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Page Header */
    .page-header {
        min-height: 35vh;
        padding: 120px 1rem 40px;
        overflow: hidden;
    }
    
    .page-title-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .page-title-wrap h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        word-wrap: break-word;
    }
    
    /* Testimonials - Mobile Fix */
    .testimonials-scroll {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 90vw;
    }
    
    /* Sidebar Widgets - Mobile Fix */
    .sidebar-widget {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Layout Sidebar - Mobile Fix */
    .layout-sidebar {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* About Section - Mobile Fix */
    .about-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-img-group,
    .about-content {
        width: 100%;
        max-width: 100%;
    }
    
    /* Features Grid - Mobile Fix */
    .features-grid {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-pill {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    /* Buttons - Mobile Fix */
    .btn {
        width: auto;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
    
    /* Hero Badge - Mobile Fix */
    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Mobile Portrait - EXTRA FİXES */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .services-bento {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bento-card {
        height: 280px;
    }
    
    .mobile-menu-overlay {
        max-width: 100%;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .content-card {
        padding: 20px 15px;
    }
    
    .content-area-text ul,
    .content-area-text ol {
        padding-left: 20px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-section {
        min-height: 70vh;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .bento-card {
        height: 250px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .main-header,
    .floating-actions,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}

/* ==========================================================================
   ACCESSIBILITY & ANIMATIONS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   LOADING ANIMATION
   ========================================================================== */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--light-gray);
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   ROW & GRID UTILITIES - MOBİL FİX
   ========================================================================== */
.row {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.row > * {
    max-width: 100%;
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
   /* ==========================================================================
   MAHALLE LİSTESİ STİLLERİ
   ========================================================================== */
.neighborhood-list {
    padding-left: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    border-left: 2px solid var(--light-gray);
}

.neighborhood-link {
    display: block;
    padding: 10px 12px;
    margin-bottom: 4px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    background: rgba(255, 77, 0, 0.03);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    margin-left: 10px;
}

.neighborhood-link:hover,
.neighborhood-link.active {
    background: rgba(255, 77, 0, 0.12);
    color: var(--primary-color);
    padding-left: 16px;
    font-weight: 600;
}

/* ŞEHİR BAŞLIĞI AKTİF DURUMU */
.city-header.active {
    background: var(--primary-color);
}

.city-content {
    transition: max-height 0.3s ease;
}

/* REGION LİNK HOVER EFEKTİ DÜZELTİLDİ */
.region-link {
    position: relative;
    overflow: hidden;
}

.region-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.region-link:hover::before {
    transform: scaleY(1);
}

/* RESPONSIVE MAHALLE LİSTESİ */
@media (max-width: 768px) {
    .neighborhood-list {
        padding-left: 10px;
    }
    
    .neighborhood-link {
        font-size: 0.85rem;
        padding: 8px 10px;
        margin-left: 5px;
    }
}
/* ==========================================================================
   MAKALE ALANI İÇİN EKSİK CSS KODLARI - KUSURSUZ RENDER
   Bu kodları mevcut style.css'in sonuna ekleyin
   ========================================================================== */

/* ==========================================================================
   MAKALE İÇERİĞİ - SEO RICH CONTENT AREA
   ========================================================================== */
.seo-rich-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.content-intro {
    margin-bottom: 40px;
}

.main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    word-wrap: break-word;
}

.location-highlight {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-detail {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

/* ==========================================================================
   CTA BUTONLARI - WHATSAPP & TELEFON
   ========================================================================== */
.cta-button-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    text-decoration: none;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1da851, #25D366);
}

.whatsapp-cta-btn i {
    font-size: 1.4rem;
}

.whatsapp-cta-btn.large {
    padding: 20px 45px;
    font-size: 1.15rem;
}

.phone-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    text-decoration: none;
}

.phone-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 77, 0, 0.4);
    background: var(--primary-hover);
}

.phone-cta-btn.large {
    padding: 20px 45px;
    font-size: 1.15rem;
}

/* ==========================================================================
   HERO IMAGE WRAPPER - MAKALE GÖRSELLER
   ========================================================================== */
.hero-image-wrapper {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    width: 100%;
    max-width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-image-full {
    margin: 50px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 100%;
}

.content-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CONTENT SECTION - MAKALE BÖLÜMLERI
   ========================================================================== */
.content-section {
    margin: 50px 0;
    padding: 40px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary-color);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* ==========================================================================
   ADVANTAGES GRID - AVANTAJLAR KARTLARI
   ========================================================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
    width: 100%;
}

.advantage-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.advantage-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.advantage-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.benefits-text {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================================================
   TECHNICAL SPECS - TEKNİK ÖZELLİKLER
   ========================================================================== */
.technical-specs {
    background: var(--white);
    border: none;
}

.specs-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 120px;
}

.specs-box h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.specs-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-box li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.specs-box li:last-child {
    border-bottom: none;
}

.specs-box li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.use-cases-list {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    font-family: var(--font-body);
    line-height: 1.9;
    white-space: pre-line;
    color: var(--dark-gray);
    font-size: 1rem;
}

/* ==========================================================================
   REGIONAL SERVICE - BÖLGESEL HİZMET
   ========================================================================== */
.regional-service {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.05), rgba(255, 77, 0, 0.02));
    border-left-color: var(--primary-color);
}

.regional-service strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   PRICING INFO - FİYATLANDIRMA
   ========================================================================== */
.pricing-info {
    background: var(--white);
    border: 2px solid var(--primary-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.price-card {
    background: var(--off-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.price-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.price-card:hover i {
    color: var(--white);
}

.price-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-card:hover h4 {
    color: var(--white);
}

.price-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.price-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.payment-note {
    margin-top: 25px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ==========================================================================
   LOCATION SEO - LOKASYON ODAKLI
   ========================================================================== */
.location-seo {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-left-color: var(--primary-color);
}

.location-seo h2 {
    color: var(--white);
}

.location-seo p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   GUARANTEE SECTION - GARANTİ
   ========================================================================== */
.guarantee-section {
    background: var(--secondary-color);
    color: var(--white);
    border-left-color: var(--primary-color);
}

.guarantee-section h2 {
    color: var(--white);
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.guarantee-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.guarantee-card:hover i {
    color: var(--white);
}

.guarantee-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.guarantee-card:hover p {
    color: var(--white);
}

/* ==========================================================================
   CLOSING CTA - KAPANIŞ ÇAĞRISI
   ========================================================================== */
.closing-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    margin: 60px 0;
    box-shadow: var(--shadow-strong);
}

.closing-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.closing-cta h3 i {
    font-size: 2rem;
}

.closing-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   ROW & GRID SYSTEM - RESPONSIVE DÜZEN
   ========================================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* ==========================================================================
   IMG RESPONSIVE & UTILITIES
   ========================================================================== */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: var(--radius-md);
}

.shadow {
    box-shadow: var(--shadow-medium);
}

.shadow-lg {
    box-shadow: var(--shadow-strong);
}

/* ==========================================================================
   RESPONSIVE - TABLET & MOBILE
   ========================================================================== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .col-md-8,
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .specs-box {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advantage-item {
        padding: 25px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-cta-btn,
    .phone-cta-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .whatsapp-cta-btn.large,
    .phone-cta-btn.large {
        padding: 18px 35px;
        font-size: 1.05rem;
    }
    
    .closing-cta {
        padding: 40px 25px;
    }
    
    .closing-cta h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .lead-paragraph {
        font-size: 1.05rem;
    }
    
    .specs-box {
        padding: 25px;
    }
    
    .use-cases-list {
        padding: 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 20px 15px;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .advantage-item i {
        font-size: 2rem;
    }
    
    .whatsapp-cta-btn,
    .phone-cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .closing-cta {
        padding: 30px 20px;
    }
    
    .closing-cta h3 {
        font-size: 1.3rem;
    }
    
    .price-card {
        padding: 25px 15px;
    }
    
    .guarantee-card {
        padding: 25px;
    }
}

/* ==========================================================================
   PRINT STYLES - MAKALE ALANI
   ========================================================================== */
@media print {
    .cta-button-wrapper,
    .whatsapp-cta-btn,
    .phone-cta-btn,
    .closing-cta {
        display: none !important;
    }
    
    .content-section {
        page-break-inside: avoid;
        border: 1px solid #000;
    }
    
    .content-section h2 {
        color: #000;
    }
}

/* ==========================================================================
   ACCESSIBILITY - MAKALE ALANI
   ========================================================================== */
.whatsapp-cta-btn:focus,
.phone-cta-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .content-section {
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .specs-box {
        background: rgba(11, 15, 25, 0.8);
    }
}

/* ==========================================================================
   END OF MAKALE CSS EKLENTİSİ
   ========================================================================== */
