/* ========== CSS VARIABLES ========== */
:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    --secondary-500: #6366f1;
    --secondary-600: #4f46e5;
    
    --surface-white: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --surface-glass-border: rgba(255, 255, 255, 0.5);
    --bg-body: #f8fafc;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, rgba(255,255,255,0) 70%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
    
    --shadow-sm: 0 2px 4px rgba(148, 163, 184, 0.1);
    --shadow-md: 0 8px 16px -4px rgba(148, 163, 184, 0.1);
    --shadow-lg: 0 20px 40px -8px rgba(14, 165, 233, 0.15);
    --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.3);
    
    --container-width: 1320px;
    --nav-height: 90px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

/* ========== UTILITIES & COMPONENTS ========== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.badge i { font-size: 0.9em; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s var(--ease-elastic);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-100);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-500);
    color: var(--primary-600);
    background: var(--primary-50);
}

.btn-success {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    top: 0;
}

.navbar.scrolled .nav-inner {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transform: rotate(-10deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 4px;
    background: var(--bg-body);
    padding: 6px;
    border-radius: var(--radius-full);
}

.nav-links > a, .dropdown-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links > a:hover, .dropdown-btn:hover {
    color: var(--primary-600);
    background: white;
    box-shadow: var(--shadow-sm);
}

.nav-dropdown { position: relative; }

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 280px;
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-50);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.dropdown-content a i { width: 24px; text-align: center; color: var(--primary-400); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.nav-phone span:first-child { font-size: 0.8rem; color: var(--text-muted); }
.nav-phone span:last-child { font-weight: 700; color: var(--text-main); font-size: 1.1rem; }

.nav-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn-icon:hover {
    background: var(--primary-500);
    transform: rotate(90deg);
}

.mobile-menu-btn { 
    display: none; 
    border: none; 
    background: none; 
    font-size: 24px; 
    cursor: pointer; 
    color: var(--text-main); 
}

.mobile-menu {
    position: fixed; 
    inset: 0; 
    background: rgba(255,255,255,0.98); 
    z-index: 1001;
    padding: 24px; 
    transform: translateX(100%); 
    transition: transform 0.4s var(--ease-elastic);
    display: flex; 
    flex-direction: column;
}

.mobile-menu.active { 
    transform: translateX(0); 
}

.mobile-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 40px; 
}

.mobile-links { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    font-size: 1.2rem; 
    font-weight: 700; 
}

.mobile-links a { 
    color: var(--text-main); 
    border-bottom: 1px solid var(--primary-100); 
    padding-bottom: 10px; 
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--primary-100);
}

.stat-item h4 { font-size: 2rem; color: var(--primary-500); margin-bottom: 4px; }
.stat-item p { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-img-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-img-container:hover { transform: rotateY(0) rotateX(0); }

.hero-floating-card {
    position: absolute;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.float-1 { top: 10%; left: -30px; }
.float-2 { bottom: 20%; right: -20px; animation-delay: 2s; }

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary-50);
    color: var(--primary-500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========== SERVICES SECTION ========== */
.section-padding { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    margin-top: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-50);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--primary-50);
    color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-500);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-600);
}

.service-link i { transition: transform 0.3s ease; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ========== GALLERY GRID ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* ========== REVIEWS SECTION ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-50);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-header h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.review-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-service {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========== CONTENT & ARTICLES ========== */
.article-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.article-content h2 { 
    font-size: 2rem; 
    margin: 40px 0 20px; 
    color: var(--primary-900); 
}

.article-content h3 { 
    font-size: 1.5rem; 
    margin: 30px 0 15px; 
    color: var(--primary-800); 
}

.article-content p { 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
    color: var(--text-muted); 
}

.article-content ul { 
    margin-bottom: 24px; 
    display: grid; 
    gap: 10px; 
}

.article-content li { 
    padding-left: 20px; 
    position: relative; 
    color: var(--text-main); 
}

.article-content li::before {
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 10px;
    width: 6px; 
    height: 6px; 
    background: var(--primary-500); 
    border-radius: 50%;
}

.article-content ol { 
    margin-bottom: 24px; 
    padding-left: 24px; 
}

.article-content ol li { 
    list-style: decimal; 
}

.faq-item {
    background: var(--primary-50);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-50);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-100);
    margin-bottom: 20px;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.sidebar-list a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-main);
    color: white;
    padding: 80px 0 30px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { margin-bottom: 24px; }
.footer-logo .logo-brand { color: white; }

.footer-desc { color: var(--text-light); margin-bottom: 30px; }

.footer h4 { color: white; margin-bottom: 24px; }

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-light); transition: color 0.3s; }
.footer-links a:hover { color: white; padding-left: 5px; }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== FLOAT ACTION ========== */
.float-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s var(--ease-elastic);
}

.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--primary-500); }

.breadcrumb-wrap {
    background: var(--primary-50);
    padding: 120px 0 40px;
    margin-bottom: 60px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-list span { color: var(--primary-400); }
.breadcrumb-current { font-weight: 700; color: var(--primary-700); }

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.region-item {
    background: white;
    border: 1px solid var(--primary-100);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.region-item:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .nav-inner {
        padding: 0 24px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --nav-height: 80px;
    }
    
    .nav-links, .nav-phone { 
        display: none; 
    }
    
    .mobile-menu-btn { 
        display: block; 
    }
    
    .nav-inner { 
        padding: 0 20px; 
        height: 80px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-desc { 
        margin: 0 auto 30px; 
        font-size: 1.1rem;
    }
    
    .hero-stats { 
        justify-content: center;
        gap: 30px;
    }
    
    .hero-visual { 
        display: none; 
    }
    
    .hero-actions { 
        justify-content: center; 
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        top: 0;
    }
    
    .nav-inner {
        border-radius: 0;
        height: 70px;
    }
    
    .logo-brand {
        font-size: 1rem;
    }
    
    .nav-logo img {
        height: 50px;
        width: auto;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 20px;
        padding-top: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .article-container {
        padding: 30px 20px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
        margin: 24px 0 12px;
    }
    
    .article-content p {
        font-size: 1rem;
    }
    
    .sidebar-box {
        padding: 24px 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
        margin-top: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .float-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .breadcrumb-wrap {
        padding: 90px 0 30px;
        margin-bottom: 40px;
    }
    
    .breadcrumb-wrap h1 {
        font-size: 2rem !important;
        margin-top: 16px !important;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .region-item {
        padding: 14px;
        font-size: 0.85rem;
    }
}

/* Mobile Medium */
@media (max-width: 576px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .nav-inner {
        height: 65px;
        padding: 0 16px;
    }
    
    .nav-btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-item h4 {
        font-size: 1.3rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .review-card {
        padding: 24px 20px;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .article-container {
        padding: 24px 16px;
    }
    
    .article-content h2 {
        font-size: 1.4rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
    
    .sidebar-box {
        padding: 20px 16px;
    }
    
    .breadcrumb-wrap h1 {
        font-size: 1.75rem !important;
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .region-item {
        padding: 12px;
        font-size: 0.8rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Mobile Small */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .breadcrumb-wrap h1 {
        font-size: 1.5rem !important;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTENT PAGE LAYOUT - RESPONSIVE ========== */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.main-content {
    min-width: 0; /* Fix for long words overflow */
}

.sidebar {
    min-width: 0;
}

.content-image-wrapper {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.content-image-wrapper img {
    width: 100%;
    height: auto;
}

.cta-box {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-box p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.faq-section {
    margin-top: 50px;
}

.faq-section h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Content Page Two Column Layout - CRITICAL FIX */
@media (max-width: 991px) {
    /* İki kolonlu layout'u mobile'da tek kolona çevir */
    .content-wrapper {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    
    .article-container ~ div[style*="display: grid"],
    div[style*="grid-template-columns: 2fr 1fr"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    
    /* Sidebar'ı mobile'da düzgün görüntüle */
    .sidebar,
    aside {
        margin-top: 40px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

/* Additional mobile fixes for inline styles */
@media (max-width: 768px) {
    .content-wrapper {
        gap: 30px;
    }
    
    /* Force single column on mobile for service pages */
    main > div[style*="grid-template-columns"] {
        display: block !important;
    }
    
    /* Ensure images are responsive */
    img[style*="width: 100%"],
    .content-image-wrapper img {
        height: auto !important;
        width: 100% !important;
    }
    
    /* Fix CTA boxes on mobile */
    .cta-box,
    div[style*="padding: 30px"][style*="background: linear-gradient"] {
        padding: 24px 20px !important;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
    }
    
    .cta-box .btn {
        width: 100%;
    }
    
    .faq-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-image-wrapper {
        margin: 30px 0;
    }
    
    .cta-box {
        margin: 30px 0;
        padding: 20px 16px !important;
    }
    
    .cta-box h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
}