/**
 * ============================================================================
 * ISIMAK KİRALAMA - RESPONSIVE CSS
 * ============================================================================
 * Tüm cihazlarda mükemmel çalışacak şekilde optimize edilmiş
 * Mobil-first yaklaşım ile yazılmıştır
 */

/* ============================================================================
   FONTS
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-solid: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #8b9df8;
    
    /* Secondary Colors */
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-orange: #ff6b35;
    --accent-green: #4ade80;
    
    /* Neutral Colors */
    --bg-body: #f8f9fc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-gray-light: #f1f5f9;
    --bg-gray: #e2e8f0;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Spacing - Responsive */
    --spacing-xs: clamp(6px, 1.5vw, 8px);
    --spacing-sm: clamp(8px, 2vw, 12px);
    --spacing-md: clamp(12px, 3vw, 16px);
    --spacing-lg: clamp(16px, 4vw, 24px);
    --spacing-xl: clamp(24px, 5vw, 32px);
    --spacing-2xl: clamp(32px, 6vw, 48px);
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Container Width */
    --container-width: 1320px;
}

/* ============================================================================
   GLOBAL RESET & BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Taşma önleme */
html,
body,
div,
section,
article,
header,
footer,
nav {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Metin düzeni */
h1, h2, h3, h4, h5, h6, p, a, span, li {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    word-break: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-solid);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================================================
   CONTAINER
   ============================================================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 20px);
}

/* ============================================================================
   HEADER STYLES
   ============================================================================ */

/* Header Top */
.main-header-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    width: 100%;
}

/* Top Info Bar */
.top-info-bar {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 8px 0;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 16px);
    flex-wrap: wrap;
}

.badge-active {
    background: var(--accent-orange);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.badge-active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.top-text {
    font-weight: 500;
    font-size: clamp(0.7rem, 1.8vw, 0.875rem);
}

.top-right {
    display: flex;
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
}

.top-contact {
    color: var(--text-white);
    font-weight: 600;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
    white-space: nowrap;
}

.top-contact:hover {
    color: var(--primary-light);
}

/* Main Header */
.main-header {
    padding: clamp(12px, 3vw, 16px) 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    font-weight: 700;
    flex-shrink: 0;
}

.logo-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    display: none;
    gap: clamp(16px, 4vw, 32px);
}

.main-nav a {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-solid);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    flex-shrink: 0;
}

.btn-whatsapp-icon {
    width: clamp(38px, 8vw, 44px);
    height: clamp(38px, 8vw, 44px);
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.btn-whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.btn-header-call {
    background: var(--primary-gradient);
    color: white;
    padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 24px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    display: none;
}

.btn-header-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.mobile-menu-toggle {
    display: flex;
    width: clamp(38px, 8vw, 44px);
    height: clamp(38px, 8vw, 44px);
    background: var(--bg-gray-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
    position: relative;
    padding: clamp(60px, 12vw, 120px) 0 clamp(40px, 8vw, 80px);
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: clamp(6px, 1.5vw, 8px) clamp(14px, 3vw, 20px);
    border-radius: var(--radius-full);
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    font-weight: 600;
    margin-bottom: clamp(16px, 4vw, 24px);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(16px, 4vw, 24px);
    letter-spacing: -1px;
    word-break: break-word;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: clamp(24px, 5vw, 40px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: clamp(12px, 3vw, 16px);
    justify-content: center;
    margin-bottom: clamp(40px, 8vw, 60px);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-orange);
    color: white;
    padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 36px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 36px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-solid);
    border-color: white;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 4vw, 40px);
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: clamp(16px, 4vw, 24px) clamp(20px, 5vw, 32px);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: clamp(120px, 25vw, 160px);
    flex: 1 1 auto;
}

.stat-item i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--accent-orange);
    margin-bottom: 8px;
    display: block;
}

.stat-item strong {
    display: block;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    opacity: 0.9;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.services-section,
.main-content-section,
.regions-section,
.testimonials-section {
    padding: clamp(40px, 10vw, 80px) 0;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(40px, 8vw, 60px);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-solid);
    padding: clamp(5px, 1.2vw, 6px) clamp(12px, 3vw, 16px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    letter-spacing: 1px;
    margin-bottom: clamp(12px, 3vw, 16px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: clamp(12px, 3vw, 16px);
    letter-spacing: -0.5px;
    word-break: break-word;
}

.section-description {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================================
   SERVICES GRID
   ============================================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    width: 100%;
}

.service-card {
    background: var(--bg-white);
    padding: clamp(24px, 5vw, 36px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: clamp(56px, 10vw, 64px);
    height: clamp(56px, 10vw, 64px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-solid);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: clamp(16px, 4vw, 24px);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    word-break: break-word;
}

.service-desc {
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-solid);
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* ============================================================================
   CONTENT LAYOUT
   ============================================================================ */

.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 40px);
    align-items: start;
    width: 100%;
}

.content-full-width {
    width: 100%;
}

.main-content {
    background: transparent;
    width: 100%;
    min-width: 0;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-white);
    padding: clamp(10px, 2vw, 16px) clamp(12px, 3vw, 24px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: clamp(20px, 4vw, 30px);
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 12px);
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.breadcrumb-nav::-webkit-scrollbar {
    height: 4px;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.breadcrumb-nav a:hover {
    color: var(--primary-solid);
}

.breadcrumb-nav .separator {
    color: var(--text-light);
    flex-shrink: 0;
}

.breadcrumb-nav .current {
    color: var(--text-primary);
    font-weight: 600;
}

/* Article Styles */
.vision-article {
    background: var(--bg-white);
    padding: clamp(24px, 5vw, 50px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    width: 100%;
    overflow-x: hidden;
}

/* Article Featured Image */
.article-featured-image {
    width: 100%;
    height: clamp(250px, 50vw, 400px);
    margin: clamp(16px, 4vw, 24px) 0 clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.03);
}

.article-intro-section {
    padding-bottom: clamp(24px, 5vw, 32px);
    border-bottom: 2px solid var(--bg-gray-light);
    margin-bottom: clamp(30px, 6vw, 40px);
}

.lead-paragraph {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    word-break: break-word;
}

.content-section {
    margin-bottom: clamp(30px, 6vw, 50px);
    width: 100%;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3.5vw, 1.95rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(16px, 4vw, 24px);
    display: flex;
    align-items: center;
    gap: clamp(10px, 2.5vw, 14px);
    flex-wrap: wrap;
    word-break: break-word;
}

.content-section h2 i {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    flex-shrink: 0;
}

.content-section h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(12px, 3vw, 16px);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    word-break: break-word;
}

.content-section p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Internal Links */
.internal-link {
    color: var(--primary-solid);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(102, 126, 234, 0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    word-break: break-word;
}

.internal-link:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-solid);
}

.alt-bg {
    background: var(--bg-gray-light);
    padding: clamp(24px, 5vw, 36px);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-solid);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(102, 126, 234, 0.2);
    margin: clamp(24px, 5vw, 32px) 0;
    width: 100%;
}

.info-box h3 {
    color: var(--primary-solid);
    margin-bottom: 20px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: var(--text-primary);
    word-break: break-word;
}

.check-list li i {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Service Highlight */
.service-highlight {
    background: var(--bg-white);
    padding: clamp(24px, 5vw, 36px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-light);
    margin: clamp(24px, 5vw, 32px) 0;
    width: 100%;
}

.service-highlight h3 {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 28px);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(16px, 4vw, 24px);
}

.adv-item {
    text-align: center;
    padding: clamp(16px, 4vw, 24px);
    background: var(--bg-gray-light);
    border-radius: var(--radius-md);
}

.adv-item i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-solid);
    margin-bottom: 12px;
    display: block;
}

.adv-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 2vw, 1rem);
    word-break: break-word;
}

/* Services Tag Cloud */
.services-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 12px);
    margin: clamp(16px, 4vw, 24px) 0;
}

.service-tag {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
    border-radius: var(--radius-full);
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    color: var(--text-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-tag:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-tag i {
    color: var(--primary-solid);
    flex-shrink: 0;
}

.service-tag:hover i {
    color: white;
}

/* Keyword Tags */
.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 10px);
    margin-top: 20px;
}

.kw-tag {
    background: var(--bg-gray-light);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: var(--radius-sm);
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: clamp(30px, 6vw, 50px);
    border-radius: var(--radius-xl);
    margin-top: clamp(30px, 6vw, 50px);
    text-align: center;
    width: 100%;
}

.conclusion-section h2 {
    color: white;
    justify-content: center;
}

.conclusion-section h2 i {
    background: rgba(255,255,255,0.15);
}

.conclusion-section p {
    color: rgba(255,255,255,0.9);
    text-align: center;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(16px, 4vw, 24px);
    margin: clamp(30px, 6vw, 40px) 0;
}

.feature-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: clamp(20px, 4vw, 28px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
}

.feature-item i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent-orange);
    margin-bottom: 12px;
    display: block;
}

.feature-item h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    margin-bottom: 8px;
    word-break: break-word;
}

.feature-item p {
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    opacity: 0.8;
    margin: 0;
}

.article-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 16px);
    justify-content: center;
}

.btn-vision {
    padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 32px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    justify-content: center;
}

.primary-lg {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.whatsapp-lg {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Location Navigation */
.location-navigation {
    background: var(--bg-white);
    padding: clamp(24px, 5vw, 40px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-top: clamp(30px, 6vw, 40px);
    width: 100%;
}

.location-navigation h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(24px, 5vw, 32px);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.regions-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: clamp(10px, 2vw, 12px);
}

.region-item {
    background: var(--bg-gray-light);
    padding: clamp(12px, 2.5vw, 14px) clamp(16px, 3vw, 20px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    word-break: break-word;
}

.region-item:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateX(5px);
}

.region-item i {
    color: var(--primary-solid);
    flex-shrink: 0;
}

.region-item:hover i {
    color: white;
}

/* Districts Grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    gap: clamp(20px, 4vw, 28px);
}

.city-districts {
    background: var(--bg-gray-light);
    padding: clamp(20px, 4vw, 24px);
    border-radius: var(--radius-lg);
}

.city-districts h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    word-break: break-word;
}

.city-districts h4 i {
    color: var(--primary-solid);
    flex-shrink: 0;
}

.district-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.district-link {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    word-break: break-word;
}

.district-link:hover {
    background: var(--bg-white);
    color: var(--primary-solid);
    padding-left: 18px;
}

/* Neighborhoods Grid */
.neighborhoods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 10px);
}

.neighborhood-link {
    background: var(--bg-gray-light);
    padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
    border-radius: var(--radius-sm);
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    color: var(--text-secondary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.neighborhood-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

.neighborhood-link i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================================================
   SIDEBAR
   ============================================================================ */

.sidebar {
    position: relative;
    width: 100%;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--bg-white);
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: clamp(20px, 4vw, 28px);
    width: 100%;
}

.widget h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(16px, 4vw, 24px);
    padding-bottom: clamp(12px, 3vw, 16px);
    border-bottom: 2px solid var(--bg-gray-light);
    word-break: break-word;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid var(--primary-light);
    text-align: center;
}

.contact-widget p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    margin-bottom: clamp(16px, 4vw, 24px);
}

.btn-sidebar-call,
.btn-sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(12px, 2.5vw, 14px) clamp(16px, 4vw, 24px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
}

.btn-sidebar-call {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-sidebar-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sidebar-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-sidebar-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Popular Services Widget */
.popular-services-widget ul,
.regions-widget ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popular-services-widget ul li,
.regions-widget ul li {
    border-bottom: 1px solid var(--bg-gray-light);
    padding-bottom: 8px;
}

.popular-services-widget ul li:last-child,
.regions-widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-services-widget a,
.regions-widget a {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: all 0.3s ease;
    word-break: break-word;
}

.popular-services-widget a:hover,
.regions-widget a:hover {
    color: var(--primary-solid);
    padding-left: 8px;
}

.popular-services-widget a i {
    color: var(--primary-solid);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Location Widget */
.location-widget {
    max-height: 600px;
    overflow-y: auto;
}

.location-widget::-webkit-scrollbar {
    width: 6px;
}

.location-widget::-webkit-scrollbar-track {
    background: var(--bg-gray-light);
    border-radius: 3px;
}

.location-widget::-webkit-scrollbar-thumb {
    background: var(--primary-solid);
    border-radius: 3px;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.city-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 12px);
    background: var(--bg-gray-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    font-weight: 500;
    transition: all 0.3s ease;
    word-break: break-word;
}

.city-link:hover {
    background: var(--primary-gradient);
    color: white;
    padding-left: clamp(14px, 3vw, 18px);
}

.city-link i {
    font-size: 0.75rem;
    color: var(--primary-solid);
    flex-shrink: 0;
}

.city-link:hover i {
    color: white;
}

/* Districts Sidebar */
.districts-sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 4vw, 20px);
}

.city-group {
    background: var(--bg-gray-light);
    padding: clamp(12px, 3vw, 16px);
    border-radius: var(--radius-md);
}

.city-group h4 {
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    word-break: break-word;
}

.city-group h4 i {
    color: var(--primary-solid);
    flex-shrink: 0;
}

.district-links-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.district-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    word-break: break-word;
}

.district-link:hover {
    background: var(--bg-white);
    color: var(--primary-solid);
    padding-left: 16px;
}

.district-link i {
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Neighborhoods Sidebar */
.neighborhoods-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.neighborhood-link-sidebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 2vw, 8px) clamp(10px, 2.5vw, 12px);
    background: var(--bg-gray-light);
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    word-break: break-word;
}

.neighborhood-link-sidebar:hover {
    background: var(--primary-gradient);
    color: white;
    padding-left: clamp(14px, 3vw, 18px);
}

.neighborhood-link-sidebar i {
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ============================================================================
   REGIONS SECTION
   ============================================================================ */

.regions-section {
    background: var(--bg-gray-light);
}

/* Filter Buttons */
.region-filter-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 20px);
    margin-bottom: clamp(30px, 6vw, 40px);
    flex-wrap: wrap;
}

.filter-btn {
    padding: clamp(12px, 2.5vw, 14px) clamp(20px, 4vw, 30px);
    border-radius: var(--radius-full);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-solid);
    background: transparent;
    color: var(--primary-solid);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-solid);
    color: white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* Grid Content */
.regions-grid-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.regions-grid-content.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.regions-grid-wrapper {
    width: 100%;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 4vw, 28px);
}

.region-card {
    background: var(--bg-white);
    padding: clamp(24px, 5vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.region-icon {
    width: clamp(48px, 10vw, 56px);
    height: clamp(48px, 10vw, 56px);
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.mazotlu-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f5576c 100%);
}

.region-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    word-break: break-word;
}

.region-card p {
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(16px, 4vw, 24px);
}

.region-arrow {
    position: absolute;
    bottom: clamp(24px, 5vw, 32px);
    right: clamp(24px, 5vw, 32px);
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    background: var(--bg-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-solid);
    transition: all 0.3s ease;
}

.region-card:hover .region-arrow {
    background: var(--primary-gradient);
    color: white;
    transform: translateX(5px);
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */

.testimonials-section {
    background: var(--bg-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 5vw, 32px);
}

.testimonial-item {
    background: var(--bg-gray-light);
    padding: clamp(24px, 5vw, 36px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.rating i {
    color: #fbbf24;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
}

.testimonial-text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: clamp(16px, 4vw, 24px);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    color: var(--text-secondary);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    width: 100%;
}

.footer-top {
    padding: clamp(40px, 10vw, 80px) 0 clamp(30px, 8vw, 60px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(30px, 6vw, 50px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--accent-orange);
}

.footer-about {
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.7;
    margin-bottom: clamp(16px, 4vw, 24px);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: clamp(36px, 8vw, 40px);
    height: clamp(36px, 8vw, 40px);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: clamp(16px, 4vw, 24px);
    word-break: break-word;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 8px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    word-break: break-word;
}

.footer-contact-list li i {
    color: var(--accent-orange);
    width: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Footer Keywords */
.footer-keywords {
    padding: clamp(24px, 5vw, 40px) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-keywords h4 {
    color: white;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 700;
    margin-bottom: clamp(16px, 4vw, 20px);
}

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 10px);
}

.keyword-tag {
    background: rgba(255,255,255,0.05);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: var(--radius-sm);
    font-size: clamp(0.8rem, 1.8vw, 0.85rem);
    color: var(--text-light);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.keyword-tag:hover {
    background: var(--primary-gradient);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding: clamp(20px, 5vw, 30px) 0;
    text-align: center;
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
}

/* ============================================================================
   MOBILE STICKY BUTTONS
   ============================================================================ */

.mobile-sticky-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}

.mobile-btn {
    flex: 1;
    padding: clamp(14px, 3vw, 18px);
    color: white;
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-call {
    background: var(--primary-gradient);
}

.mobile-whatsapp {
    background: #25D366;
}

/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================ */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    /* Navigation visible */
    .main-nav {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Header call button visible */
    .btn-header-call {
        display: inline-block;
    }
    
    /* Content layout with sidebar */
    .content-layout {
        grid-template-columns: 1fr 320px;
    }
    
    /* Hide mobile sticky buttons */
    .mobile-sticky-buttons {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
    
    /* Hero buttons side by side */
    .hero-buttons {
        flex-wrap: nowrap;
    }
    
    /* Stats in row */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Desktop - 992px and up */
@media (min-width: 992px) {
    /* Top bar visible */
    .top-info-bar {
        display: block;
    }
    
    /* Wider sidebar */
    .content-layout {
        grid-template-columns: 1fr 360px;
    }
    
    /* Services grid 2 columns minimum */
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    /* Regions grid 2 columns minimum */
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    /* Services grid 3 columns */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Testimonials 3 columns */
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer 4 columns */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Very Small Devices - 375px and down */
@media (max-width: 375px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .btn-vision,
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.85rem !important;
        padding: 10px 18px !important;
    }
}

/* Print Styles */
@media print {
    .main-header-top,
    .hero-section,
    .sidebar,
    .mobile-sticky-buttons,
    .site-footer {
        display: none;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    body {
        background: white;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .stat-item {
        padding: 12px 16px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed in future */
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================================================ */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--primary-solid);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-solid);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */