/* KG Premium Garaj - Ultra Premium Design */

/* ========== IMPORTS & FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Oswald:wght@400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --primary-black: #0a0a0a;
    --anthracite: #1a1a1a;
    --smoke: #2d2d2d;
    --dark-gray: #3d3d3d;
    --premium-red: #e63946;
    --premium-red-dark: #c1303a;
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --neon-blue: #00d9ff;
    --gold: #d4af37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --border-gray: #dee2e6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--premium-red) 0%, var(--orange) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-black) 0%, var(--anthracite) 100%);
    --gradient-overlay: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.3) 100%);
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Oswald', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--anthracite);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* ========== HEADER ========== */
.main-header {
    background: var(--primary-black);
    padding: 1px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--premium-red);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 100px;
}

.logo {
    flex-shrink: 0;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.header-contact {
    flex-shrink: 0;
}

.logo img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.3));
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-nav a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-block;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--premium-red);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--anthracite);
    min-width: 280px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    border-top: 3px solid var(--premium-red);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    display: block;
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-transform: none;
    text-align: left;
    white-space: nowrap;
    line-height: 1.4;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown a::before {
    display: none;
}

.dropdown a:hover {
    background: var(--smoke);
    color: var(--premium-red);
    transform: translateX(5px);
}

.header-contact .phone-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-glow);
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.header-contact .phone-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.header-contact .phone-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-contact .phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
    border-color: rgba(255,255,255,0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 0;
}

.hero-banner-left {
    left: 0;
    opacity: 0.35;
}

.hero-banner-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, transparent 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.hero-banner-right {
    right: 0;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(10,10,10,0.85) 0%, 
        rgba(10,10,10,0.7) 50%, 
        rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    animation: fadeInUp 1s ease;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--light-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.6);
    border-color: rgba(255,255,255,0.4);
}

.hero-buttons .btn-secondary {
    background: #25d366;
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-buttons .btn-secondary:hover {
    background: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    border-color: rgba(255,255,255,0.4);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.header-contact .phone-btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--premium-red);
    border: 2px solid var(--premium-red);
}

.btn-outline:hover {
    background: var(--premium-red);
    color: var(--white);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* ========== SECTIONS ========== */
.services-section,
.why-us-section,
.service-areas-section,
.about-content,
.contact-content,
.regions-content,
.services-page,
.gallery-content {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.5rem;
    color: var(--primary-black);
}

.service-card p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    padding: 0 25px 25px;
    color: var(--premium-red);
    font-weight: 700;
    font-size: 1.05rem;
}

.service-link:hover {
    color: var(--orange);
    padding-left: 30px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-black);
}

.cta-section .btn:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: all var(--transition-normal);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    stroke-width: 2.5;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* ========== PHONE FLOAT ========== */
.phone-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(0, 123, 255, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: all var(--transition-normal);
}

.phone-float svg {
    width: 35px;
    height: 35px;
    stroke-width: 2.5;
}

.phone-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(0, 123, 255, 0.7);
}

/* ========== ICONS (SVG) ========== */
.icon-phone::before,
.icon-whatsapp::before,
.icon-location::before {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-phone::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-whatsapp::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3Cpath d='M8 10h.01'%3E%3C/path%3E%3Cpath d='M12 10h.01'%3E%3C/path%3E%3Cpath d='M16 10h.01'%3E%3C/path%3E%3C/svg%3E");
}

.icon-location::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(10,10,10,0.92) 0%,
            rgba(10,10,10,0.88) 50%,
            rgba(10,10,10,0.75) 100%);
    }
    
    .hero-content {
        padding: 80px 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .logo img {
        height: 130px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--anthracite);
        padding: 100px 0 30px;
        transition: left var(--transition-normal);
        overflow-y: auto;
        z-index: 999;
        box-shadow: var(--shadow-xl);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--smoke);
    }
    
    .main-nav a {
        display: block;
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: rgba(0,0,0,0.3) !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .dropdown ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 1000px !important;
    }
    
    .dropdown li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: block !important;
    }
    
    .dropdown a {
        padding: 14px 25px !important;
        font-size: 0.9rem !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        color: rgba(255,255,255,0.85) !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .dropdown a:hover {
        background: rgba(220,38,38,0.2) !important;
        color: var(--premium-red) !important;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.7);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 998;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .phone-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 20px;
    }
    
    .phone-float svg {
        width: 28px;
        height: 28px;
    }
}


/* ========== FOOTER ========== */
.main-footer {
    background: var(--primary-black);
    color: var(--white);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-logo img {
    height: 150px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.3));
}

.footer-desc {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--smoke);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--premium-red);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: var(--premium-red);
}

.footer-bottom {
    border-top: 1px solid var(--smoke);
    padding: 25px 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: var(--gradient-dark);
    padding: 80px 0 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb {
    margin-bottom: 25px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--light-gray);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--premium-red);
}

.breadcrumb span {
    color: var(--white);
    font-weight: 600;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* ========== SERVICE DETAIL ========== */
.service-detail {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.service-main {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.service-image-large {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image-large img {
    width: 100%;
    height: auto;
}

.service-description h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.service-description h3 {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--premium-red);
}

.service-description h4 {
    font-size: 1.4rem;
    color: var(--anthracite);
    margin: 30px 0 15px;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.feature-list,
.benefit-list,
.process-list,
.legal-list,
.care-list,
.why-us-list,
.warranty-list,
.vehicle-list {
    margin: 25px 0;
    padding-left: 0;
}

.feature-list li,
.benefit-list li,
.legal-list li,
.care-list li,
.why-us-list li,
.warranty-list li,
.vehicle-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.feature-list li::before,
.benefit-list li::before,
.legal-list li::before,
.care-list li::before,
.why-us-list li::before,
.warranty-list li::before,
.vehicle-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--premium-red);
    font-weight: 700;
    font-size: 1.2rem;
}

.process-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.process-list li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.process-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.price-factors,
.comparison-table {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--premium-red);
}

.price-factors h4,
.comparison-table h4 {
    margin-top: 0;
    color: var(--primary-black);
    font-size: 1.3rem;
}

.service-cta-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    box-shadow: var(--shadow-glow);
}

.service-cta-box h3 {
    margin-top: 0;
    color: var(--white);
    font-size: 1.8rem;
}

.service-cta-box p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
}

/* ========== SIDEBAR ========== */
.service-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-lg);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-black);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--premium-red);
}

.service-links,
.region-links {
    list-style: none;
}

.service-links li,
.region-links li {
    margin-bottom: 12px;
}

.service-links a,
.region-links a {
    color: var(--text-gray);
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.service-links a:hover,
.region-links a:hover {
    background: var(--light-gray);
    color: var(--premium-red);
    padding-left: 25px;
}

.contact-widget {
    background: var(--gradient-dark);
    color: var(--white);
}

.contact-widget h3 {
    color: var(--white);
    border-bottom-color: var(--premium-red);
}

.contact-widget p {
    color: var(--light-gray);
    margin-bottom: 15px;
}

.contact-widget a {
    color: var(--white);
    font-weight: 600;
}

.contact-widget a:hover {
    color: var(--premium-red);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: var(--font-display);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 5px solid var(--premium-red);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========== GALLERY ========== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
    flex-wrap: wrap;
    background: transparent;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--premium-red);
    border-color: var(--premium-red);
    color: var(--white);
    transform: translateY(-2px);
}
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    color: var(--white);
    padding: 30px;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

/* ========== REGIONS ========== */
.districts-grid,
.provinces-grid,
.districts-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.district-item,
.province-item,
.district-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-top: 4px solid var(--premium-red);
}

.district-item:hover,
.province-item:hover,
.district-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.district-item h4,
.province-item h3,
.district-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.district-item h4 a,
.province-item h3 a,
.district-card h4 a {
    color: var(--primary-black);
    font-weight: 700;
}

.district-item h4 a:hover,
.province-item h3 a:hover,
.district-card h4 a:hover {
    color: var(--premium-red);
}

.district-item p,
.province-item p,
.district-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sample-districts {
    list-style: none;
    margin-top: 15px;
}

.sample-districts li {
    margin-bottom: 8px;
}

.sample-districts a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.sample-districts a:hover {
    color: var(--premium-red);
    padding-left: 5px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
}

.contact-items {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details a {
    color: var(--premium-red);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-main {
        padding: 25px;
    }
    
    .service-description h2 {
        font-size: 1.8rem;
    }
    
    .service-description h3 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .districts-grid,
    .provinces-grid,
    .districts-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ========== SERVICES GRID IMAGES (Image Only - Clean) ========== */
.services-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-image-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.service-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    z-index: 1;
    transition: all var(--transition-normal);
    pointer-events: none;
}

.service-image-card:hover::before {
    background: rgba(230, 57, 70, 0.15);
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-card:hover img {
    transform: scale(1.1);
}

.service-image-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .services-grid-images {
        grid-template-columns: 1fr;
    }
    
    .service-image-card {
        height: 300px;
    }
}


/* ========== PREMIUM FEATURES GRID (Dark Theme) ========== */
.why-us-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-section .section-header h2,
.why-us-section .section-header p {
    color: var(--white);
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.feature-card-premium {
    background: var(--anthracite);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--smoke);
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.feature-card-premium:hover::after {
    width: 500px;
    height: 500px;
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.4);
    border-color: var(--premium-red);
}

.feature-icon-premium {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all var(--transition-normal);
    position: relative;
}

.icon-circle svg {
    width: 45px;
    height: 45px;
    color: var(--white);
    stroke-width: 2.5;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--premium-red);
    opacity: 0;
    transition: all var(--transition-normal);
}

.feature-card-premium:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.feature-card-premium:hover .icon-circle::before {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.feature-content-premium {
    position: relative;
    z-index: 1;
}

.feature-content-premium h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.feature-content-premium p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--premium-red);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--premium-red);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-premium:hover .feature-badge {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
}

/* ========== STATS ROW (Dark Theme) ========== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 0 0;
    border-top: 2px solid var(--smoke);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-black);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--smoke);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: 0;
}

.stat-item:hover::before {
    left: 0;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.6);
    border-color: var(--premium-red);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .features-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}


/* ========== SERVICE AREAS SECTION (Premium Design) ========== */
.service-areas-section {
    background: var(--light-gray);
    position: relative;
}

.areas-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.area-card-premium {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--premium-red);
}

.area-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.05), transparent);
    transition: left 0.6s ease;
}

.area-card-premium:hover::before {
    left: 100%;
}

.area-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--orange);
}

.area-icon-premium {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    transition: all var(--transition-normal);
}

.area-icon-premium svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 2.5;
}

.area-card-premium:hover .area-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

.area-content-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-weight: 700;
}

.area-content-premium p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.area-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-features li {
    background: var(--light-gray);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--anthracite);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.area-card-premium:hover .area-features li {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--premium-red);
    color: var(--premium-red);
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--premium-red);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-normal);
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid var(--premium-red);
}

.area-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.area-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.area-link:hover svg {
    transform: translateX(5px);
}

/* Coverage Stats */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 50px 0 0;
    border-top: 2px solid var(--border-gray);
}

.coverage-item {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.coverage-item:hover::before {
    transform: scaleX(1);
}

.coverage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.coverage-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--premium-red);
    margin-bottom: 10px;
    font-family: var(--font-display);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(230, 57, 70, 0.2);
}

.coverage-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .areas-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coverage-stats {
        grid-template-columns: 1fr;
    }
}


/* ========== HERO RESPONSIVE UPDATES ========== */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 30px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }
}


/* ========== VALUE ITEMS (ABOUT PAGE) ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.value-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
}

.value-icon svg {
    width: 45px;
    height: 45px;
    color: var(--premium-red);
    stroke-width: 2;
}

.value-item:hover .value-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.value-item:hover .value-icon svg {
    color: var(--white);
    transform: scale(1.1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== CONTACT ITEMS (CONTACT PAGE) ========== */
.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    color: var(--premium-red);
    stroke-width: 2;
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.contact-item:hover .contact-icon svg {
    color: var(--white);
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.contact-details p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.contact-details a {
    color: var(--premium-red);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.contact-details a:hover {
    color: var(--orange);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-items {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* ========== GALLERY FEATURES ========== */
.gallery-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.gallery-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.gallery-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-features li strong {
    color: var(--primary-black);
    font-weight: 600;
}


/* ========== WHY US LIST ========== */
.why-us-list-detailed {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.why-us-list-detailed li {
    padding: 18px 0 18px 40px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-gray);
}

.why-us-list-detailed li:last-child {
    border-bottom: none;
}

.why-us-list-detailed li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.2);
}

.why-us-list-detailed li strong {
    color: var(--primary-black);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* ========== ABOUT SERVICES SUMMARY ========== */
.about-services-summary {
    padding: 60px 0;
    background: var(--light-gray);
    border-radius: 15px;
    margin: 60px 0;
}

.about-services-summary h2 {
    text-align: center;
    margin-bottom: 15px;
}

.about-services-summary > p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.summary-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.summary-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.summary-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.summary-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.summary-item a {
    color: var(--premium-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: inline-block;
}

.summary-item a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* ========== ABOUT LOCATION ========== */
.about-location {
    padding: 60px 0;
    margin: 60px 0;
}

.about-location h2 {
    text-align: center;
    margin-bottom: 15px;
}

.about-location > p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 5px solid var(--premium-red);
}

.location-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.location-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.location-item a {
    color: var(--premium-red);
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-block;
}

.location-item a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-services-summary {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .services-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== SERVICE CARD DETAILED (SERVICES PAGE) ========== */
.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card-detailed {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-card-detailed:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-card-detailed .service-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.service-card-detailed .service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card-detailed:hover .service-image::after {
    opacity: 1;
}

.service-card-detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-detailed:hover .service-image img {
    transform: scale(1.08);
}

.service-card-detailed .service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-detailed h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-black);
    font-family: var(--font-display);
}

.service-card-detailed p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.service-links .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.services-intro {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border-left: 5px solid var(--premium-red);
}

.services-intro h2 {
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.services-intro p:last-child {
    margin-bottom: 0;
}

.services-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.services-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.services-cta p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.services-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services-cta .btn {
    background: var(--white);
    color: var(--primary-black);
}

.services-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed .service-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .service-card-detailed .service-content {
        padding: 30px;
    }
    
    .service-card-detailed h3 {
        font-size: 1.5rem;
    }
    
    .service-links {
        flex-direction: column;
    }
    
    .services-cta {
        padding: 40px 20px;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
    }
    
    .services-cta .btn {
        width: 100%;
    }
}


/* ========== REGIONS PAGE ========== */
.regions-intro {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border-left: 5px solid var(--premium-red);
}

.regions-intro h2 {
    margin-bottom: 20px;
}

.regions-intro p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.regions-intro p:last-child {
    margin-bottom: 0;
}

.main-regions {
    margin-bottom: 80px;
}

.main-regions h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.main-regions > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.region-detail-box {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border-left: 5px solid var(--premium-red);
    transition: all var(--transition-normal);
}

.region-detail-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.region-detail-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.region-detail-box p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.region-detail-box .btn {
    display: inline-flex;
}

.districts-grid {
    margin-bottom: 40px;
}

.districts-grid h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--primary-black);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--premium-red);
}

.districts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.district-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-top: 3px solid transparent;
}

.district-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--premium-red);
}

.district-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.district-item h4 a {
    color: var(--primary-black);
    transition: color var(--transition-normal);
}

.district-item h4 a:hover {
    color: var(--premium-red);
}

.district-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.central-anatolia-regions {
    margin-bottom: 80px;
}

.central-anatolia-regions h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.central-anatolia-regions > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.province-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 5px solid var(--premium-red);
}

.province-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.province-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.province-item h3 a {
    color: var(--primary-black);
    transition: color var(--transition-normal);
}

.province-item h3 a:hover {
    color: var(--premium-red);
}

.province-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.sample-districts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sample-districts li {
    margin-bottom: 10px;
}

.sample-districts a {
    color: var(--premium-red);
    font-weight: 500;
    transition: all var(--transition-normal);
    display: inline-block;
}

.sample-districts a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.services-list-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-region-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
    border-top: 3px solid var(--premium-red);
}

.service-region-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-region-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.service-region-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.regions-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    margin-top: 80px;
}

.regions-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.regions-cta p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.regions-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.regions-cta .btn {
    background: var(--white);
    color: var(--primary-black);
}

.regions-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .districts-list {
        grid-template-columns: 1fr;
    }
    
    .provinces-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list-regions {
        grid-template-columns: 1fr;
    }
    
    .regions-cta {
        padding: 40px 20px;
    }
    
    .regions-cta .cta-buttons {
        flex-direction: column;
    }
    
    .regions-cta .btn {
        width: 100%;
    }
}


/* ========== GALLERY PAGE ========== */
.gallery-intro {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border-left: 5px solid var(--premium-red);
}

.gallery-intro h2 {
    margin-bottom: 20px;
}

.gallery-intro p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.gallery-intro p:last-child {
    margin-bottom: 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-gray);
    background: var(--white);
    color: var(--text-gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--premium-red);
    color: var(--premium-red);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.95) 0%, rgba(255, 107, 53, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-normal);
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0;
}

.gallery-info {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border-left: 5px solid var(--premium-red);
}

.gallery-info h2 {
    margin-bottom: 20px;
}

.gallery-info p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.gallery-services {
    margin-bottom: 60px;
}

.gallery-services h2 {
    text-align: center;
    margin-bottom: 15px;
}

.gallery-services > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.services-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-link-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
    border-top: 3px solid var(--premium-red);
}

.service-link-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-link-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.service-link-box p {
    font-size: 0.9rem;
    color: var(--premium-red);
    font-weight: 600;
    margin-bottom: 0;
}

.gallery-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.gallery-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.gallery-cta p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.gallery-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-cta .btn {
    background: var(--white);
    color: var(--primary-black);
}

.gallery-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-filters {
        padding: 20px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .gallery-cta {
        padding: 40px 20px;
    }
    
    .gallery-cta .cta-buttons {
        flex-direction: column;
    }
    
    .gallery-cta .btn {
        width: 100%;
    }
}


/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.quick-contact {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 5px solid var(--premium-red);
}

.quick-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.quick-contact p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-buttons .btn {
    width: 100%;
    justify-content: center;
}

.contact-map {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-map h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 12px;
}

.map-note {
    text-align: center;
    color: var(--text-gray);
}

.map-note a {
    color: var(--premium-red);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.map-note a:hover {
    color: var(--orange);
}

.contact-services {
    margin-bottom: 80px;
}

.contact-services h2 {
    text-align: center;
    margin-bottom: 15px;
}

.contact-services > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.services-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-link-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
    border-top: 3px solid var(--premium-red);
}

.service-link-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-link-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.service-link-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-regions {
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 80px;
    border-left: 5px solid var(--premium-red);
}

.contact-regions h2 {
    margin-bottom: 15px;
}

.contact-regions > p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.region-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.region-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.region-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.region-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-item li {
    margin-bottom: 10px;
}

.region-item a {
    color: var(--premium-red);
    font-weight: 500;
    transition: all var(--transition-normal);
    display: inline-block;
}

.region-item a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.contact-faq {
    margin-bottom: 60px;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 5px solid var(--premium-red);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-map {
        padding: 30px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .contact-regions {
        padding: 30px 20px;
    }
}


/* ========== TABLET PORTRAIT (900px) ========== */
@media (max-width: 900px) {
    .services-grid-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        top: auto;
    }
    
    .provinces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== TABLET PORTRAIT (600px) ========== */
@media (max-width: 600px) {
    :root {
        --section-padding: 40px;
        --container-padding: 15px;
    }
    
    .logo img {
        height: 130px;
    }
    
    .main-nav {
        width: 85vw;
        max-width: 280px;
        padding: 80px 0 20px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .services-grid-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-image-card {
        height: 250px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid-premium {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-premium {
        padding: 25px 20px;
    }
    
    .feature-icon-premium {
        font-size: 2.5rem;
    }
    
    .feature-card-premium h3 {
        font-size: 1.2rem;
    }
    
    .feature-card-premium p {
        font-size: 0.95rem;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-card {
        padding: 25px 20px;
    }
    
    .service-area-card h3 {
        font-size: 1.3rem;
    }
    
    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .service-main {
        padding: 20px 15px;
    }
    
    .service-description h2 {
        font-size: 1.5rem;
    }
    
    .service-description h3 {
        font-size: 1.3rem;
    }
    
    .service-description h4 {
        font-size: 1.1rem;
    }
    
    .service-description p {
        font-size: 0.95rem;
    }
    
    .feature-list li,
    .benefit-list li,
    .legal-list li,
    .care-list li,
    .why-us-list li,
    .warranty-list li,
    .vehicle-list li {
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .process-list li {
        padding-left: 50px;
        font-size: 0.95rem;
    }
    
    .process-list li::before {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
    
    .price-factors,
    .comparison-table {
        padding: 20px 15px;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .gallery-filters {
        padding: 15px;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .about-intro h2 {
        font-size: 1.8rem;
    }
    
    .about-intro p {
        font-size: 0.95rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
    
    .value-item p {
        font-size: 0.95rem;
    }
    
    .services-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-item {
        padding: 20px 15px;
    }
    
    .summary-item h3 {
        font-size: 1.2rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-item {
        padding: 20px 15px;
    }
    
    .provinces-grid {
        grid-template-columns: 1fr;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        height: 100px;
    }
    
    .footer-col h3 {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ========== MOBILE SMALL (480px) ========== */
@media (max-width: 480px) {
    :root {
        --section-padding: 30px;
        --container-padding: 12px;
    }
    
    .logo img {
        height: 130px;
    }
    
    .main-nav {
        width: 90vw;
        max-width: 260px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .services-grid-images {
        grid-template-columns: 1fr;
    }
    
    .service-image-card {
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .feature-card-premium {
        padding: 20px 15px;
    }
    
    .feature-icon-premium {
        font-size: 2rem;
    }
    
    .feature-card-premium h3 {
        font-size: 1.1rem;
    }
    
    .feature-card-premium p {
        font-size: 0.9rem;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-item h4 {
        font-size: 1.3rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    
    .btn svg {
        width: 18px;
        height: 18px;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .page-hero p {
        font-size: 0.9rem;
    }
    
    .service-main {
        padding: 15px 12px;
    }
    
    .service-description h2 {
        font-size: 1.3rem;
    }
    
    .service-description h3 {
        font-size: 1.1rem;
    }
    
    .service-description h4 {
        font-size: 1rem;
    }
    
    .service-description p {
        font-size: 0.9rem;
    }
    
    .feature-list li,
    .benefit-list li,
    .legal-list li,
    .care-list li,
    .why-us-list li,
    .warranty-list li,
    .vehicle-list li {
        padding-left: 22px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .process-list li {
        padding-left: 45px;
        font-size: 0.9rem;
    }
    
    .process-list li::before {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-overlay h3 {
        font-size: 0.95rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    .filter-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
    
    .contact-items {
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .contact-info h2 {
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .about-intro h2 {
        font-size: 1.5rem;
    }
    
    .about-intro p {
        font-size: 0.9rem;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .value-item h3 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .summary-item {
        padding: 15px 12px;
    }
    
    .summary-item h3 {
        font-size: 1.1rem;
    }
    
    .location-item {
        padding: 15px 12px;
    }
    
    .footer-logo img {
        height: 80px;
    }
    
    .footer-col h3 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
    }
}


/* ========== SERVICE DETAIL MODERN ========== */
.service-detail-modern {
    padding: 60px 0;
    background: var(--light-gray);
}

.service-hero-image {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-intro {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 30px;
    font-family: var(--font-display);
    position: relative;
    padding-bottom: 20px;
}

.service-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--premium-red);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.feature-box .feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.feature-box h3 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

.service-benefits {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.service-benefits h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 40px;
    text-align: center;
    font-family: var(--font-display);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-item svg {
    width: 50px;
    height: 50px;
    stroke: var(--premium-red);
    margin: 0 auto 20px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

.service-process {
    background: var(--gradient-dark);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-xl);
}

.service-process h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    font-family: var(--font-display);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
}

.step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.step h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

.service-cta {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.service-cta h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.service-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== RESPONSIVE - SERVICE DETAIL MODERN ========== */
@media (max-width: 900px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-intro {
        padding: 30px 20px;
    }
    
    .service-intro h2 {
        font-size: 1.8rem;
    }
    
    .service-intro p {
        font-size: 1rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-box .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-box .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
    }
    
    .feature-box p {
        font-size: 0.9rem;
    }
    
    .service-benefits {
        padding: 30px 20px;
    }
    
    .service-benefits h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
    
    .benefit-item svg {
        width: 40px;
        height: 40px;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .service-process {
        padding: 30px 20px;
    }
    
    .service-process h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step h4 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .service-cta {
        padding: 40px 20px;
    }
    
    .service-cta h2 {
        font-size: 1.8rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
    
    .service-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-intro {
        padding: 25px 15px;
    }
    
    .service-intro h2 {
        font-size: 1.5rem;
    }
    
    .service-intro p {
        font-size: 0.95rem;
    }
    
    .service-benefits {
        padding: 25px 15px;
    }
    
    .service-benefits h2 {
        font-size: 1.5rem;
    }
    
    .service-process {
        padding: 25px 15px;
    }
    
    .service-process h2 {
        font-size: 1.5rem;
    }
    
    .service-cta {
        padding: 30px 15px;
    }
    
    .service-cta h2 {
        font-size: 1.5rem;
    }
    
    .service-cta p {
        font-size: 0.95rem;
    }
}


/* ========== REGIONS MODERN ========== */
.regions-modern {
    padding: 60px 0;
    background: var(--light-gray);
}

.regions-intro-modern {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.regions-intro-modern h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.regions-intro-modern p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.region-hero-box {
    background: var(--gradient-primary);
    padding: 60px 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-xl);
}

.region-hero-icon {
    flex-shrink: 0;
}

.region-hero-icon svg {
    width: 100px;
    height: 100px;
    stroke: var(--white);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.region-hero-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.region-hero-content p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.7;
}

.region-hero-content .btn {
    background: var(--white);
    color: var(--premium-red);
}

.region-hero-content .btn:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

.districts-section-modern {
    margin-bottom: 60px;
}

.districts-section-modern h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-display);
}

.districts-section-modern > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.districts-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.district-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
    display: block;
    color: inherit;
    text-decoration: none;
}

.district-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--premium-red);
}

.district-card svg {
    width: 50px;
    height: 50px;
    stroke: var(--premium-red);
    margin: 0 auto 20px;
    display: block;
}

.district-card h3 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.district-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.central-anatolia-modern {
    margin-bottom: 60px;
}

.central-anatolia-modern h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-display);
}

.central-anatolia-modern > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.provinces-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.province-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
}

.province-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.province-card-modern:hover::before {
    transform: scaleX(1);
}

.province-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.province-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.province-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.province-card-modern h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.province-card-modern p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.regions-cta-modern {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.regions-cta-modern h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.regions-cta-modern p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* ========== RESPONSIVE - REGIONS MODERN ========== */
@media (max-width: 900px) {
    .districts-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .provinces-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .region-hero-box {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }
    
    .region-hero-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .region-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .region-hero-content p {
        font-size: 1rem;
    }
    
    .districts-section-modern h2 {
        font-size: 1.8rem;
    }
    
    .districts-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .district-card {
        padding: 25px 15px;
    }
    
    .district-card svg {
        width: 40px;
        height: 40px;
    }
    
    .district-card h3 {
        font-size: 1.1rem;
    }
    
    .district-card p {
        font-size: 0.85rem;
    }
    
    .central-anatolia-modern h2 {
        font-size: 1.8rem;
    }
    
    .provinces-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .province-card-modern {
        padding: 30px 20px;
    }
    
    .province-icon {
        width: 60px;
        height: 60px;
    }
    
    .province-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .province-card-modern h3 {
        font-size: 1.3rem;
    }
    
    .province-card-modern p {
        font-size: 0.95rem;
    }
    
    .regions-cta-modern {
        padding: 40px 25px;
    }
    
    .regions-cta-modern h2 {
        font-size: 1.8rem;
    }
    
    .regions-cta-modern p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .region-hero-box {
        padding: 30px 20px;
    }
    
    .region-hero-content h2 {
        font-size: 1.5rem;
    }
    
    .region-hero-content p {
        font-size: 0.95rem;
    }
    
    .districts-section-modern h2 {
        font-size: 1.5rem;
    }
    
    .districts-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .central-anatolia-modern h2 {
        font-size: 1.5rem;
    }
    
    .regions-cta-modern {
        padding: 30px 20px;
    }
    
    .regions-cta-modern h2 {
        font-size: 1.5rem;
    }
    
    .regions-cta-modern p {
        font-size: 0.95rem;
    }
}


/* ========================================
   LOCATION PAGES - ULTRA PREMIUM DESIGN
   ======================================== */

/* Location Hero Section */
.location-hero-ultra {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-ultra {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-ultra a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-ultra a:hover {
    color: var(--premium-red);
}

.breadcrumb-ultra svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.breadcrumb-ultra span {
    color: var(--premium-red);
}

.location-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--premium-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.location-badge svg {
    width: 18px;
    height: 18px;
}

.location-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.location-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-red);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.location-hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-location-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-location-hero svg {
    width: 20px;
    height: 20px;
}

.btn-location-hero.primary {
    background: var(--premium-red);
    color: var(--white);
}

.btn-location-hero.primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-location-hero.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-location-hero.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Location Content Section */
.location-content-ultra {
    padding: 80px 0;
    background: var(--dark-bg);
}

.location-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.location-main {
    min-width: 0;
}

/* Intro Box */
.location-intro-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.section-title-ultra {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle-ultra {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.intro-text-ultra p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.intro-text-ultra p:last-child {
    margin-bottom: 0;
}

/* Services Grid Ultra */
.location-services-ultra {
    margin-bottom: 60px;
}

.services-grid-ultra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card-ultra:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--premium-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--premium-red), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.service-card-ultra h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card-ultra > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.service-features-ultra {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features-ultra li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.service-features-ultra li svg {
    width: 18px;
    height: 18px;
    stroke: var(--premium-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-service-ultra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--premium-red);
    border-radius: 8px;
    color: var(--premium-red);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-service-ultra:hover {
    background: var(--premium-red);
    color: var(--white);
}

.btn-service-ultra svg {
    width: 16px;
    height: 16px;
}

/* Why Choose Ultra */
.location-why-ultra {
    margin-bottom: 60px;
}

.why-grid-ultra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px 30px;
    transition: all 0.3s;
}

.why-card-ultra:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--premium-red);
    transform: translateY(-5px);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(220, 38, 38, 0.1);
    line-height: 1;
}

.why-icon-ultra {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--premium-red), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon-ultra svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.why-card-ultra h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-card-ultra p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Sidebar Ultra */
.location-sidebar-ultra {
    position: sticky;
    top: 100px;
}

.sidebar-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.sidebar-card-ultra.contact {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-color: rgba(220, 38, 38, 0.3);
}

.sidebar-card-ultra.highlight {
    background: linear-gradient(135deg, var(--premium-red), var(--orange));
    border: none;
    text-align: center;
}

.sidebar-card-ultra h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sidebar-card-ultra p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-icon-ultra {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-icon-ultra svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.sidebar-btn-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.sidebar-btn-ultra:last-child {
    margin-bottom: 0;
}

.sidebar-btn-ultra svg {
    width: 18px;
    height: 18px;
}

.sidebar-btn-ultra.primary {
    background: var(--premium-red);
    color: var(--white);
}

.sidebar-btn-ultra.primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.sidebar-card-ultra.highlight .sidebar-btn-ultra.primary {
    background: var(--white);
    color: var(--premium-red);
}

.sidebar-card-ultra.highlight .sidebar-btn-ultra.primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.sidebar-btn-ultra.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-btn-ultra.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sidebar-list-ultra {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list-ultra li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.sidebar-list-ultra li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .location-layout-grid {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .services-grid-ultra {
        grid-template-columns: 1fr;
    }
    
    .why-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .location-hero-title {
        font-size: 2.5rem;
    }
    
    .location-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .location-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-sidebar-ultra {
        position: static;
    }
    
    .why-grid-ultra {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .location-hero-ultra {
        padding: 80px 0 60px;
    }
    
    .location-hero-title {
        font-size: 2rem;
    }
    
    .location-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .location-hero-cta {
        flex-direction: column;
    }
    
    .btn-location-hero {
        width: 100%;
        justify-content: center;
    }
    
    .location-intro-box {
        padding: 25px;
    }
    
    .section-title-ultra {
        font-size: 1.8rem;
    }
    
    .service-card-ultra {
        padding: 25px;
    }
}


/* ========================================
   CITY PAGES - BEAUTIFUL MODERN DESIGN
   ======================================== */

/* City Hero */
.city-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 140px 0 100px;
    overflow: hidden;
}

.city-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.city-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.city-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.city-breadcrumb a:hover {
    color: var(--premium-red);
}

.city-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.city-breadcrumb span:last-child {
    color: var(--premium-red);
    font-weight: 600;
}

.city-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--premium-red);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-badge svg {
    width: 20px;
    height: 20px;
}

.city-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.city-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.7;
}

.city-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.city-stat {
    text-align: center;
}

.city-stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--premium-red), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.city-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.city-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* City Content */
.city-content {
    padding: 100px 0;
    background: var(--dark-bg);
}

.city-intro {
    max-width: 1000px;
    margin: 0 auto;
}

.city-intro h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.city-intro-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--premium-red);
    border-radius: 15px;
    padding: 50px;
}

.city-intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.city-intro-text p:last-child {
    margin-bottom: 0;
}

/* City Services */
.city-services {
    padding: 100px 0;
    background: #0a0a0a;
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.city-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.city-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--premium-red), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.city-service-card:hover::before {
    transform: scaleX(1);
}

.city-service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
}

.city-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--premium-red), var(--orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s;
}

.city-service-card:hover .city-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.city-service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.city-service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-service-card > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.city-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.city-service-features li {
    padding: 12px 0;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.city-service-features li:last-child {
    border-bottom: none;
}

.city-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--premium-red);
    border-radius: 50%;
}

.city-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--premium-red);
    border-radius: 10px;
    color: var(--premium-red);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-service-link:hover {
    background: var(--premium-red);
    color: var(--white);
    transform: translateX(5px);
}

.city-service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.city-service-link:hover svg {
    transform: translateX(5px);
}

/* City Why */
.city-why {
    padding: 100px 0;
    background: var(--dark-bg);
}

/* Responsive */
@media (max-width: 1200px) {
    .city-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .city-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .city-hero {
        padding: 100px 0 80px;
    }
    
    .city-hero h1 {
        font-size: 2.5rem;
    }
    
    .city-hero p {
        font-size: 1.05rem;
    }
    
    .city-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .city-stat-number {
        font-size: 2.5rem;
    }
    
    .city-hero-buttons {
        flex-direction: column;
    }
    
    .city-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .city-intro-text {
        padding: 35px 25px;
    }
    
    .city-service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .city-hero h1 {
        font-size: 2rem;
    }
    
    .city-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .city-intro h2 {
        font-size: 2rem;
    }
    
    .city-intro-text {
        padding: 25px 20px;
    }
    
    .city-intro-text p {
        font-size: 1rem;
    }
    
    .city-service-card h3 {
        font-size: 1.5rem;
    }
}


/* FAQ Accordion Styles */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    padding-right: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--premium-red);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.faq-answer a {
    color: var(--premium-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.faq-answer a:hover {
    border-bottom-color: var(--premium-red);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-toggle {
        font-size: 1.8rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}


/* Service FAQ Section */
.service-faq {
    margin-top: 80px;
}

.service-faq h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-faq .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-faq .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-faq .faq-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.service-faq .faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-faq .faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    padding-right: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.service-faq .faq-toggle {
    font-size: 2rem;
    color: var(--premium-red);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.service-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.service-faq .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.service-faq .faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

.service-faq .faq-answer a {
    color: var(--premium-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.service-faq .faq-answer a:hover {
    border-bottom-color: var(--premium-red);
}

@media (max-width: 768px) {
    .service-faq h2 {
        font-size: 1.8rem;
    }
    
    .service-faq .faq-question {
        padding: 20px;
    }
    
    .service-faq .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .service-faq .faq-toggle {
        font-size: 1.8rem;
    }
    
    .service-faq .faq-answer {
        padding: 0 20px;
    }
    
    .service-faq .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* FAQ Modern Variant for Location Pages */
.faq-item-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question-modern:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question-modern h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    padding-right: 20px;
    text-transform: none;
    letter-spacing: 0;
}

.faq-icon-modern {
    font-size: 2rem;
    color: var(--premium-red);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item-modern.active .faq-icon-modern {
    transform: rotate(45deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer-modern p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

.faq-answer-modern a {
    color: var(--premium-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.faq-answer-modern a:hover {
    border-bottom-color: var(--premium-red);
}

@media (max-width: 768px) {
    .faq-question-modern {
        padding: 20px;
    }
    
    .faq-question-modern h3 {
        font-size: 1.05rem;
    }
    
    .faq-icon-modern {
        font-size: 1.8rem;
    }
    
    .faq-answer-modern {
        padding: 0 20px;
    }
    
    .faq-item-modern.active .faq-answer-modern {
        padding: 0 20px 20px 20px;
    }
}


/* Hizmetler Sayfası Responsive Tasarım */

/* Tablet ve Küçük Ekranlar */
@media (max-width: 1024px) {
    /* Service Cards Grid'i Tek Sütun Yap */
    .service-card-modern > div > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Hero Section */
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-section p {
        font-size: 1.1rem !important;
    }
    
    /* Service Card Padding */
    .service-card-modern {
        padding: 40px 30px !important;
    }
}

/* Mobil Cihazlar */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        padding: 60px 0 40px !important;
    }
    
    .hero-section h1 {
        font-size: 2.4rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-section p {
        font-size: 1.15rem !important;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Service Cards */
    .service-card-modern {
        padding: 30px 20px !important;
        margin-bottom: 30px !important;
    }
    
    .service-card-modern h3 {
        font-size: 1.7rem !important;
        margin-bottom: 15px !important;
    }
    
    .service-card-modern p {
        font-size: 1.05rem !important;
        margin-bottom: 20px !important;
    }
    
    /* Icon Container */
    .service-card-modern div[style*="width: 70px"] {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .service-card-modern div[style*="width: 70px"] svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    /* List Items */
    .service-card-modern ul li {
        padding: 10px 0 !important;
        font-size: 1rem !important;
    }
    
    .service-card-modern ul li svg {
        width: 18px !important;
        height: 18px !important;
        margin-right: 10px !important;
    }
    
    /* Buttons */
    .service-card-modern a[style*="padding: 16px 35px"] {
        padding: 14px 28px !important;
        font-size: 1.05rem !important;
    }
    
    .service-card-modern a svg {
        width: 18px !important;
        height: 18px !important;
        margin-left: 8px !important;
    }
    
    /* Section Padding */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }
    
    section[style*="padding: 100px 0"] {
        padding: 60px 0 !important;
    }
    
    /* Section Headings */
    section h2[style*="font-size: 2.8rem"] {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    section h2[style*="font-size: 2.5rem"] {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
    }
    
    section p[style*="font-size: 1.2rem"] {
        font-size: 1.1rem !important;
    }
    
    section p[style*="font-size: 1.15rem"] {
        font-size: 1.05rem !important;
    }
    
    section p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    /* CTA Buttons Container */
    div[style*="display: flex"][style*="gap: 20px"] {
        gap: 15px !important;
    }
    
    /* Images - Daha Büyük */
    .service-card-modern img {
        border-radius: 12px !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    .service-card-modern div[style*="border-radius: 15px"] {
        margin-bottom: 25px !important;
    }
    
    /* Glow Effects - Küçült */
    .service-card-modern > div[style*="position: absolute"] {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-section {
        padding: 50px 0 30px !important;
    }
    
    .hero-section h1 {
        font-size: 1.9rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-section h1 span {
        display: block !important;
    }
    
    .hero-section p {
        font-size: 1.05rem !important;
    }
    
    /* Service Cards */
    .service-card-modern {
        padding: 25px 15px !important;
        margin-bottom: 25px !important;
        border-radius: 15px !important;
    }
    
    .service-card-modern h3 {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
    }
    
    .service-card-modern p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
    }
    
    /* Icon Container */
    .service-card-modern div[style*="width: 70px"] {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 15px !important;
        border-radius: 12px !important;
    }
    
    .service-card-modern div[style*="width: 70px"] svg {
        width: 26px !important;
        height: 26px !important;
    }
    
    /* List Items */
    .service-card-modern ul {
        margin-bottom: 25px !important;
    }
    
    .service-card-modern ul li {
        padding: 8px 0 !important;
        font-size: 0.95rem !important;
    }
    
    .service-card-modern ul li svg {
        width: 16px !important;
        height: 16px !important;
        margin-right: 8px !important;
    }
    
    /* Buttons */
    .service-card-modern a[style*="padding: 16px 35px"] {
        padding: 12px 24px !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .service-card-modern a svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Section Padding */
    section[style*="padding: 80px 0"],
    section[style*="padding: 50px 0"] {
        padding: 40px 0 !important;
    }
    
    section[style*="padding: 100px 0"],
    section[style*="padding: 60px 0"] {
        padding: 50px 0 !important;
    }
    
    /* Section Headings */
    section h2[style*="font-size: 2.8rem"],
    section h2[style*="font-size: 1.8rem"] {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }
    
    section h2[style*="font-size: 2.5rem"],
    section h2[style*="font-size: 1.6rem"] {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }
    
    section h2 span {
        display: block !important;
    }
    
    section p[style*="font-size: 1.2rem"],
    section p[style*="font-size: 1rem"] {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    
    section p[style*="font-size: 1.15rem"],
    section p[style*="font-size: 1.1rem"],
    section p[style*="font-size: 0.95rem"] {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* CTA Section */
    div[style*="max-width: 800px"] {
        max-width: 100% !important;
        padding: 0 10px !important;
    }
    
    /* CTA Buttons */
    div[style*="display: flex"][style*="gap: 20px"],
    div[style*="display: flex"][style*="gap: 15px"] {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    a[style*="padding: 20px 40px"] {
        padding: 14px 25px !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        justify-content: center !important;
        border-radius: 10px !important;
    }
    
    a[style*="padding: 20px 40px"] svg {
        width: 20px !important;
        height: 20px !important;
        margin-right: 10px !important;
    }
    
    /* Images - Çok Daha Büyük */
    .service-card-modern img {
        border-radius: 10px !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .service-card-modern div[style*="border-radius: 15px"],
    .service-card-modern div[style*="border-radius: 12px"] {
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    
    /* Image Container - Tam Genişlik */
    .service-card-modern > div > div[style*="grid-template-columns"] > div:has(img) {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Glow Effects - Gizle veya Küçült */
    .service-card-modern > div[style*="position: absolute"] {
        width: 100px !important;
        height: 100px !important;
        opacity: 0.5 !important;
    }
    
    /* Container Padding */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Çok Küçük Ekranlar */
@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 1.7rem !important;
    }
    
    .service-card-modern {
        padding: 20px 12px !important;
    }
    
    .service-card-modern h3 {
        font-size: 1.35rem !important;
    }
    
    .service-card-modern p {
        font-size: 0.95rem !important;
    }
    
    .service-card-modern ul li {
        font-size: 0.9rem !important;
    }
    
    section h2 {
        font-size: 1.5rem !important;
    }
}


/* Mobil Görsel Optimizasyonu - Ekstra Büyük */
@media (max-width: 768px) {
    /* Görsel Container'ı Öne Çıkar */
    .service-card-modern > div > div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Görseli İlk Sıraya Al - HER ZAMAN ÜSTTE VE ORTALANMIŞ */
    .service-card-modern > div > div[style*="grid-template-columns"] > div:has(img) {
        order: -1 !important;
        margin-bottom: 25px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* İçerik Bölümünü İkinci Sıraya Al */
    .service-card-modern > div > div[style*="grid-template-columns"] > div:not(:has(img)) {
        order: 1 !important;
        width: 100% !important;
    }
    
    /* Görsel Boyutunu Artır ve Ortala */
    .service-card-modern img {
        width: 100% !important;
        height: auto !important;
        min-height: 220px !important;
        object-fit: cover !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    /* Küçük Mobilde Daha da Büyük Görseller */
    .service-card-modern img {
        min-height: 200px !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
        margin: 0 auto !important;
    }
    
    /* Görsel Container - Ortalanmış */
    .service-card-modern > div > div[style*="grid-template-columns"] > div:has(img) {
        margin-bottom: 20px !important;
        width: 100% !important;
        order: -1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* İçerik Container */
    .service-card-modern > div > div[style*="grid-template-columns"] > div:not(:has(img)) {
        order: 1 !important;
        width: 100% !important;
    }
}

@media (max-width: 360px) {
    /* Çok Küçük Ekranlarda Optimize Et */
    .service-card-modern img {
        min-height: 180px !important;
        border-radius: 10px !important;
        margin: 0 auto !important;
    }
}


/* Mobil Görsel Vurgusu - Premium Efekt */
@media (max-width: 768px) {
    /* Görsel Container'a Özel Stil - ORTALANMIŞ */
    .service-card-modern div[style*="box-shadow: 0 20px 60px"] {
        box-shadow: 0 15px 40px rgba(0,0,0,0.5) !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        position: relative !important;
        margin: 0 auto 25px auto !important;
        order: -1 !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Görsel Hover Efekti Kaldır (Mobilde Gereksiz) */
    .service-card-modern img:hover {
        transform: none !important;
    }
    
    /* Görsel Tam Genişlik ve Yükseklik - ORTALANMIŞ */
    .service-card-modern div[style*="box-shadow: 0 20px 60px"] img {
        width: 100% !important;
        height: auto !important;
        min-height: 220px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    /* Küçük Mobilde Görsel Ayarları - ORTALANMIŞ */
    .service-card-modern div[style*="box-shadow: 0 20px 60px"],
    .service-card-modern div[style*="box-shadow: 0 15px 40px"] {
        box-shadow: 0 12px 35px rgba(0,0,0,0.6) !important;
        border-radius: 12px !important;
        margin: 0 auto 20px auto !important;
        order: -1 !important;
        display: block !important;
        width: 100% !important;
    }
    
    .service-card-modern div[style*="box-shadow: 0 20px 60px"] img,
    .service-card-modern div[style*="box-shadow: 0 15px 40px"] img {
        min-height: 200px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 360px) {
    .service-card-modern div[style*="box-shadow: 0 20px 60px"] img,
    .service-card-modern div[style*="box-shadow: 0 15px 40px"] img {
        min-height: 180px !important;
        margin: 0 auto !important;
    }
}


/* HIZMETLER SAYFASI - MOBIL GORSEL ORTALAMA - GUCLU KURALLAR */
@media (max-width: 768px) {
    /* Service Card Ana Container */
    .service-card-modern {
        text-align: center !important;
    }
    
    /* Grid Container - Flexbox'a Cevir */
    .service-card-modern > div[style*="position: relative"] > div[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Gorsel Container - Ustte ve Ortalanmis */
    .service-card-modern > div[style*="position: relative"] > div[style*="display: grid"] > div:first-child:has(img),
    .service-card-modern > div[style*="position: relative"] > div[style*="display: grid"] > div:last-child:has(img) {
        order: -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 25px auto !important;
        text-align: center !important;
    }
    
    /* Icerik Container - Altta */
    .service-card-modern > div[style*="position: relative"] > div[style*="display: grid"] > div:not(:has(img)) {
        order: 1 !important;
        width: 100% !important;
        text-align: left !important;
    }
    
    /* Gorsel Kendisi - Tam Ortalanmis */
    .service-card-modern img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Box Shadow Container - Ortalanmis */
    .service-card-modern div[style*="border-radius: 15px"][style*="overflow: hidden"] {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Kucuk Mobil - Ayni Kurallar */
    .service-card-modern > div[style*="position: relative"] > div[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .service-card-modern > div[style*="position: relative"] > div[style*="display: grid"] > div:has(img) {
        order: -1 !important;
        margin: 0 auto 20px auto !important;
    }
    
    .service-card-modern img {
        margin: 0 auto !important;
    }
}


/* MOBIL GORSEL ORTALAMA - EN GUCLU KURALLAR - !IMPORTANT */
@media (max-width: 768px) {
    /* Tum Service Card'larda Grid'i Flexbox Yap */
    .service-card-modern > div[style*="z-index: 2"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }
    
    /* Gorsel Container - Her Zaman Ustte */
    .service-card-modern > div[style*="z-index: 2"] > div[style*="border-radius: 15px"][style*="overflow: hidden"] {
        order: -1 !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Icerik Container - Her Zaman Altta */
    .service-card-modern > div[style*="z-index: 2"] > div:not([style*="border-radius: 15px"]) {
        order: 1 !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .service-card-modern > div[style*="z-index: 2"] {
        gap: 20px !important;
    }
}


/* ========== SERVICE DETAIL PAGES - RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {
    section {
        padding: 60px 0 !important;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.3rem !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero Section */
    section[style*="padding: 100px 0 60px"] {
        padding: 60px 0 40px !important;
    }
    
    h1 {
        font-size: 2.3rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
        margin-bottom: 35px !important;
    }
    
    h3 {
        font-size: 1.35rem !important;
    }
    
    p {
        font-size: 1.1rem !important;
    }
    
    /* Hero Image */
    section[style*="padding: 0"] div[style*="margin: -40px auto 0"] {
        margin: -20px auto 0 !important;
        border-radius: 15px !important;
    }
    
    /* All Sections */
    section {
        padding: 50px 0 !important;
    }
    
    /* Grid Layouts - Single Column */
    div[style*="display: grid"][style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Feature Boxes */
    div[style*="border-radius: 15px"][style*="padding: 35px"] {
        padding: 25px !important;
    }
    
    div[style*="border-radius: 15px"][style*="padding: 40px"] {
        padding: 30px !important;
    }
    
    /* Icons */
    div[style*="width: 60px; height: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }
    
    div[style*="width: 70px; height: 70px"] {
        width: 60px !important;
        height: 60px !important;
    }
    
    svg[style*="width: 30px"] {
        width: 25px !important;
        height: 25px !important;
    }
    
    svg[style*="width: 35px"] {
        width: 30px !important;
        height: 30px !important;
    }
    
    /* Process Steps - Number Badge */
    div[style*="position: absolute; top: -15px"] {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
    
    /* CTA Buttons */
    div[style*="display: flex; gap: 20px; justify-content: center"] {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    a[style*="padding: 18px 40px"] {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 30px !important;
        font-size: 1rem !important;
    }
    
    /* FAQ Items */
    .faq-question-modern {
        padding: 20px !important;
    }
    
    .faq-question-modern h3 {
        font-size: 1.05rem !important;
    }
    
    .faq-answer-modern div {
        padding: 0 20px 20px !important;
    }
    
    .faq-icon-modern {
        width: 20px !important;
        height: 20px !important;
        margin-left: 15px !important;
    }
    
    /* Breadcrumb */
    nav.breadcrumb {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.95rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    section {
        padding: 40px 0 !important;
    }
    
    section[style*="padding: 100px 0 60px"] {
        padding: 50px 0 30px !important;
    }
    
    div[style*="border-radius: 15px"][style*="padding: 25px"] {
        padding: 20px !important;
    }
    
    div[style*="border-radius: 15px"][style*="padding: 30px"] {
        padding: 25px !important;
    }
    
    a[style*="padding: 16px 30px"] {
        padding: 14px 25px !important;
        font-size: 0.95rem !important;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    h1 {
        font-size: 1.7rem !important;
    }
    
    h2 {
        font-size: 1.55rem !important;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
