
:root {
    /* Primary Colors */
    --primary-900: #0c1e3d;
    --primary-800: #1a2f4f;
    --primary-700: #284361;
    --primary-600: #365773;
    --primary-500: #4a7ba7;
    --primary-400: #6b9dc9;
    --primary-300: #8dbfeb;
    --primary-200: #b8d7f5;
    --primary-100: #e3f2ff;
    
    /* Accent Colors */
    --accent-600: #d97706;
    --accent-500: #f59e0b;
    --accent-400: #fbbf24;
    --accent-300: #fcd34d;
    
    /* Neutral Colors */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --container-padding: 20px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- SİNEK ANİMASYONU --- */
#mosquito-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.mosquito {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    opacity: 0.4;
    animation: mosquitoFly 15s linear infinite;
    pointer-events: none;
}

.mosquito::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 1px;
    background: #1a1a1a;
    left: -3px;
    top: 3px;
    transform: rotate(-45deg);
}

.mosquito::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 1px;
    background: #1a1a1a;
    right: -3px;
    top: 3px;
    transform: rotate(45deg);
}

@keyframes mosquitoFly {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    10% {
        transform: translate(100px, -50px) rotate(45deg);
        opacity: 0.4;
    }
    20% {
        transform: translate(150px, 50px) rotate(-30deg);
        opacity: 0.3;
    }
    30% {
        transform: translate(80px, 100px) rotate(60deg);
        opacity: 0.5;
    }
    40% {
        transform: translate(-50px, 80px) rotate(-45deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(-100px, -20px) rotate(90deg);
        opacity: 0.4;
    }
    60% {
        transform: translate(50px, -100px) rotate(-60deg);
        opacity: 0.2;
    }
    70% {
        transform: translate(120px, 60px) rotate(30deg);
        opacity: 0.5;
    }
    80% {
        transform: translate(-80px, -60px) rotate(-90deg);
        opacity: 0.3;
    }
    90% {
        transform: translate(30px, 40px) rotate(120deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, 0) rotate(180deg);
        opacity: 0.2;
    }
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- HEADER --- */
.header-corporate {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition-base);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-800);
    font-family: var(--font-primary);
}

.brand-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-500);
    transition: width var(--transition-base);
}

.nav-item:hover {
    color: var(--primary-600);
}

.nav-item:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* --- BUTTONS --- */
.btn-corporate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
}

.btn-corporate.primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-corporate.primary:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-corporate.secondary {
    background: white;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
}

.btn-corporate.secondary:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.btn-corporate.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-corporate.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-corporate.large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-corporate.full-width {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero-corporate {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 87, 115, 0.95) 0%, rgba(74, 123, 167, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    opacity: 0.3;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-400);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-2xl);
}

.visual-card.card-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?w=800&q=80');
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.visual-card.card-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?w=800&q=80');
    z-index: 2;
    animation: float 6s ease-in-out infinite 2s;
}

.visual-card.card-3 {
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=800&q=80');
    z-index: 1;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* --- FEATURES BAND --- */
.features-band {
    background: white;
    padding: 60px 0;
    box-shadow: var(--shadow-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
}

.feature-box i {
    font-size: 48px;
    color: var(--accent-500);
    margin-bottom: 16px;
    display: block;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.feature-box p {
    font-size: 14px;
    color: var(--gray-600);
}

/* --- SECTION STYLING --- */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    color: var(--primary-700);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* --- SLIDER STYLING --- */
.product-showcase,
.reviews-section {
    padding: 100px 0;
}

.slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.product-slider,
.review-slider {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform var(--transition-slow);
}

.product-slide {
    min-width: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-slide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.slide-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.slide-content {
    padding: 24px;
}

.slide-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.slide-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.slide-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* --- SERVICES GRID --- */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-corporate-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-corporate-card:hover {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-600);
    margin-bottom: 20px;
}

.service-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-600);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.service-corporate-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-corporate-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.service-price-tag .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-700);
}

.service-price-tag .unit {
    font-size: 14px;
    color: var(--gray-500);
}

.service-card-footer {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-corporate-card:hover .learn-more {
    gap: 12px;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
}

.about-feature-item i {
    color: var(--success);
    font-size: 20px;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-2xl);
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-primary);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-top: 8px;
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    background: var(--gray-100);
}

.review-card {
    min-width: 400px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--accent-400);
    font-size: 18px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-size: 20px;
}

.author-info h5 {
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* --- REGIONS SECTION --- */
.regions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
    color: white;
}

.regions-section .section-title {
    color: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.region-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-base);
    color: white;
}

.region-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.region-card i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: var(--accent-400);
}

.region-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.region-card span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- PAGE HERO (Detail Pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
    padding: 60px 0;
    color: white;
}

.breadcrumb-corporate {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb-corporate a:hover {
    color: var(--accent-300);
}

.breadcrumb-corporate .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-corporate .current {
    color: var(--accent-300);
    font-weight: 600;
}

.page-title-corporate {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: white;
}

.page-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* --- DETAIL LAYOUT --- */
.detail-layout-corporate {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 80px 0;
}

/* --- ARTICLE CONTENT --- */
.dynamic-article {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.article-intro {
    margin-bottom: 48px;
}

.article-main-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary-800);
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.8;
}

.service-detail-section,
.tech-specs-section,
.process-section,
.pricing-section,
.pet-safety-section,
.location-links-section,
.conclusion-section {
    margin-bottom: 48px;
}

.dynamic-article h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary-700);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dynamic-article h2 i {
    color: var(--accent-500);
}

.dynamic-article p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--success);
}

.feature-item i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
}

.info-highlight {
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
    border-left: 4px solid var(--primary-600);
    padding: 32px;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.info-highlight h3 {
    font-size: 20px;
    color: var(--primary-800);
    margin-bottom: 16px;
}

.info-highlight ul {
    list-style: none;
}

.info-highlight ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-700);
}

.info-highlight ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-600);
    font-weight: bold;
}

.process-steps {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.step:hover {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

.price-box {
    background: white;
    border: 2px solid var(--accent-300);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.price-box h3 {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.price-range {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-600);
    font-family: var(--font-primary);
}

.price-range span {
    font-size: 20px;
    color: var(--gray-500);
}

.price-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-btn {
    flex: 1;
    min-width: 200px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-base);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-btn.primary:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* --- SIDEBAR --- */
.sidebar-corporate {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.sidebar-card.contact-card {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border: none;
}

.sidebar-card.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.contact-card .card-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.card-header i {
    font-size: 24px;
    color: var(--primary-600);
}

.contact-card .card-header i {
    color: var(--accent-300);
}

.card-header h3 {
    font-size: 18px;
    color: var(--gray-900);
}

.contact-card .card-header h3 {
    color: white;
}

.contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-info-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.info-item i {
    color: var(--accent-300);
}

.location-list-corporate {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.location-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-size: 14px;
    font-weight: 500;
}

.location-link:hover {
    background: var(--primary-600);
    color: white;
    transform: translateX(4px);
}

.location-link i {
    font-size: 12px;
}

.services-list-corporate {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.service-link:hover {
    background: white;
    border-color: var(--primary-500);
    box-shadow: var(--shadow-md);
}

.service-link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-600);
    flex-shrink: 0;
}

.service-link-content {
    flex-grow: 1;
}

.service-link-content h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.price-tag {
    font-size: 12px;
    color: var(--gray-500);
}

.service-link > i {
    color: var(--primary-500);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.service-link:hover > i {
    opacity: 1;
    transform: translateX(0);
}

/* --- FOOTER --- */
.footer-corporate {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray-400);
}

.footer-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-rating .stars {
    color: var(--accent-400);
    font-size: 16px;
}

.footer-rating span {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-col h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-400);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--accent-500);
    margin-top: 2px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-bottom p {
    margin: 4px 0;
}

/* --- FLOATING ACTIONS --- */
.float-action {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-2xl);
    z-index: 999;
    transition: all var(--transition-base);
}

.float-action:hover {
    transform: scale(1.1);
}

.float-action.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    bottom: 100px;
    right: 24px;
}

.float-action.phone {
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    bottom: 30px;
    right: 24px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .detail-layout-corporate {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-grid,
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-corporate {
        padding: 80px 0 60px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-corporate-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-wrapper {
        padding: 0 40px;
    }
    
    .product-slide,
    .review-card {
        min-width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dynamic-article {
        padding: 32px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 16px;
    }
    
    .brand-sub {
        font-size: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-corporate {
        width: 100%;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* --- LOADING & ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease-in-out;
}

.animate-slide {
    animation: slideUp 0.6s ease-in-out;
}