/* ========================================
   CSS VARIABLES - ASMER HIDROLIK
   ======================================== */
:root {
    /* Brand Colors */
    --primary-color: #1a3c6e;
    --primary-dark: #0d2342;
    --accent-color: #FF9800;
    --accent-hover: #e68900;
    --accent-light: #ffb74d;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #666666;
    --text-dark: #2c3e50;
    --border-color: #e0e0e0;
    
    /* Design System */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --border-radius: 8px;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Extended Color Palette */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Responsive font sizes for better readability */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 18px;
    }
}

/* Prevent horizontal overflow for all elements */
* {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 60, 110, 0.1);
}

.header-top {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 0;
    font-size: 16px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact-item {
    color: var(--white);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header-contact-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.header-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-item:hover a {
    color: var(--accent-color);
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social .social-link {
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social .social-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.header-social .social-link.facebook:hover {
    background: #1877f2;
}

.header-social .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.header-social .social-link.linkedin:hover {
    background: #0077b5;
}

.header-social .social-link.whatsapp:hover {
    background: #25d366;
}

.header-main {
    padding: 15px 0;
    background: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.5px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.logo-text span {
    font-size: 16px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 60, 110, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(26, 60, 110, 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(26, 60, 110, 0.1);
    font-weight: 600;
}

.nav-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* ===============================
   DROPDOWN MENU STYLES (ALT ALTA)
   =============================== */

/* Ok simgesi dönüş efekti */
.dropdown-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Ana dropdown menü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 4px 0;
    overflow: hidden;

    /* 🔽 Alt alta dizilim */
    display: flex;
    flex-direction: column;
}

/* Hover ile menüyü göster */
.main-nav li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Menü satırı */
.dropdown-item {
    position: relative;
    display: block; /* 🔽 her satır kendi hizasında */
    width: 100%;
}

/* Satırlar arasında çizgi kaldırıldı */
.dropdown-item {
    margin: 0;
}

/* Menü bağlantısı */
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    width: 100%;
    margin: 0;
    position: relative;
}

/* Dropdown icon */
.dropdown-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Dropdown text */
.dropdown-text {
    flex: 1;
    line-height: 1.4;
}

/* Hover efekti */
.dropdown-link:hover {
    background: rgba(26, 60, 110, 0.05);
    color: var(--primary-color);
}

.dropdown-link:hover .dropdown-icon {
    color: var(--accent-color);
}

/* Ayırıcı çizgi */
.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 4px 0;
}

/* "Tümünü Gör" bağlantısı */
.dropdown-all-link {
    background: rgba(26, 60, 110, 0.02);
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-all-link:hover {
    background: rgba(26, 60, 110, 0.08);
    color: var(--primary-color);
}

.dropdown-all .dropdown-icon {
    color: var(--accent-color);
}

.dropdown-all-link:hover .dropdown-icon {
    color: var(--accent-color);
}




/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-split-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-split-description {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-split-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-split-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-split-buttons .btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.hero-split-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-split-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow);
    font-weight: 600;
    text-shadow: none;
    opacity: 1;
}

.hero-split-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-split-buttons .btn-contact-special {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-split-buttons .btn-contact-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-split-buttons .btn-contact-special:hover::before {
    left: 100%;
}

.hero-split-buttons .btn-contact-special:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-split-buttons .btn-contact-special i {
    color: var(--white);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.08) 0%, rgba(26, 60, 110, 0.15) 100%);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(26, 60, 110, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 60, 110, 0.25);
    position: relative;
    overflow: hidden;
}

/* Hizmet kartları arka plan resimleri */
.service-card:nth-child(1) {
    background-image: url('../images/hizmetler/hizmet-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.service-card:nth-child(1) .service-title,
.service-card:nth-child(1) .service-description,
.service-card:nth-child(1) .service-link {
    color: #ffffff;
}

.service-card:nth-child(2) {
    background-image: url('../images/hizmetler/hizmet-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.service-card:nth-child(2) .service-title,
.service-card:nth-child(2) .service-description,
.service-card:nth-child(2) .service-link {
    color: #ffffff;
}

.service-card:nth-child(3) {
    background-image: url('../images/hizmetler/hizmet-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.service-card:nth-child(3) .service-title,
.service-card:nth-child(3) .service-description,
.service-card:nth-child(3) .service-link {
    color: #ffffff;
}

.service-card:nth-child(4) {
    background-image: url('../images/hizmetler/hizmet-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.service-card:nth-child(4) .service-title,
.service-card:nth-child(4) .service-description,
.service-card:nth-child(4) .service-link {
    color: #ffffff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(26, 60, 110, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(26, 60, 110, 0.4);
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 48px;
    position: relative;
    z-index: 2;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    margin-top: 50px;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.services-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 2px 8px rgba(26, 60, 110, 0.1);
}

.services-cta .btn-outline::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-cta .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 60, 110, 0.2);
}

.services-cta .btn-outline:hover::after {
    transform: translateX(3px);
}

/* ========================================
   BUTTON COMPONENTS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* ========================================
   ADVANCED COMPONENTS
   ======================================== */

/* Badge Component */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--primary-color);
    color: var(--white);
}

.badge-accent {
    background: var(--accent-color);
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Alert Component */
.alert {
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.alert-icon {
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--warning);
    color: var(--warning);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--error);
    color: var(--error);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--info);
    color: var(--info);
}

/* Breadcrumb Component */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) 0;
    font-size: var(--text-sm);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-600);
    transition: color var(--transition-base);
}

.breadcrumb-item:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 600;
}

/* Progress Bar */
.progress {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.progress-bar-accent {
    background: var(--accent-gradient);
}

/* Tabs Component */
.tabs {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-6);
}

.tabs-list {
    display: flex;
    gap: var(--space-2);
}

.tab-button {
    padding: var(--space-4) var(--space-6);
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-base);
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

/* Accordion Component */
.accordion {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    background: var(--white);
    border: none;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-icon {
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: var(--space-6);
    color: var(--gray-700);
    line-height: 1.7;
}

/* Modal Component */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: fadeInDown 0.3s ease-out;
}

.modal-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: var(--text-2xl);
    color: var(--gray-500);
    cursor: pointer;
    transition: color var(--transition-base);
    padding: var(--space-2);
}

.modal-close:hover {
    color: var(--gray-900);
}

.modal-body {
    padding: var(--space-6);
}

.modal-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-3);
}

/* Tooltip Component */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    position: absolute;
    z-index: var(--z-tooltip);
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--gray-900);
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Pagination Component */
.pagination {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    align-items: center;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.pagination-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   SECTION COMPONENTS
   ======================================== */

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.section-subtitle {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.8;
}

/* Feature Section */
.feature-section {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: var(--text-4xl);
    color: var(--white);
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.feature-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: var(--space-20) 0;
    background: var(--primary-gradient);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
    color: var(--accent-color);
}

.stat-label {
    font-size: var(--text-lg);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Section */
.testimonial-section {
    padding: var(--space-20) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: var(--text-4xl);
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-info h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: var(--space-20) 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: var(--space-20) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.contact-item-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.contact-item-content p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   LOADING & SKELETON
   ======================================== */

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--gray-200) 25%,
        var(--gray-300) 50%,
        var(--gray-200) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1em;
    margin-bottom: var(--space-2);
    border-radius: var(--radius-sm);
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
}

.skeleton-card {
    height: 200px;
    border-radius: var(--radius-lg);
}

/* ========================================
   SPECIAL EFFECTS
   ======================================== */

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Glow */
.hover-glow {
    transition: all var(--transition-base);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(15, 76, 129, 0.3);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */

@media (prefers-color-scheme: dark) {
    .dark-mode-auto {
        --white: #1F2937;
        --gray-50: #111827;
        --gray-100: #1F2937;
        --gray-200: #374151;
        --gray-300: #4B5563;
        --gray-800: #F9FAFB;
        --gray-900: #FFFFFF;
    }
}

.dark-mode {
    --white: #1F2937;
    --gray-50: #111827;
    --gray-100: #1F2937;
    --gray-200: #374151;
    --gray-300: #4B5563;
    --gray-800: #F9FAFB;
    --gray-900: #FFFFFF;
}

/* ========================================
   HAMBURGER MENU
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    position: relative;
    z-index: 10002;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Hamburger Lines */
.hamburger-line {
    width: 24px;
    height: 3px;
    background: #333333;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    margin: 2px 0;
}

/* Hamburger Animation - Active State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent-color);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent-color);
}


/* ========================================
   MOBILE MENU
   ======================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 20px;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.mobile-logo-main {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.mobile-logo-sub {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(26, 60, 110, 0.1);
    position: relative;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(26, 60, 110, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.mobile-nav-link.active {
    background: rgba(26, 60, 110, 0.12);
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
}

.mobile-nav-link i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 16px;
}

.mobile-nav-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.mobile-nav-link.active i {
    color: var(--accent-color);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 16px;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(26, 60, 110, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-item {
    border-bottom: 1px solid rgba(26, 60, 110, 0.1);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 52px;
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400;
}

.mobile-dropdown-link:hover {
    background: rgba(26, 60, 110, 0.1);
    color: var(--primary-color);
}

.mobile-dropdown-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
}

.mobile-dropdown-all-link {
    background: rgba(26, 60, 110, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-dropdown-all-link:hover {
    background: rgba(26, 60, 110, 0.15);
}

.mobile-dropdown-divider {
    height: 1px;
    background: rgba(26, 60, 110, 0.2);
    margin: 8px 20px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    background: #f8f9fa;
    padding: 20px;
    border-top: 1px solid rgba(26, 60, 110, 0.1);
}

.mobile-contact-info {
    margin-bottom: 15px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 16px;
}

.mobile-contact-item i {
    width: 16px;
    color: var(--primary-color);
    font-size: 16px;
}

.mobile-contact-item a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: var(--primary-color);
}

.mobile-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.mobile-social-link.facebook {
    background: #1877f2;
}

.mobile-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mobile-social-link.linkedin {
    background: #0077b5;
}

.mobile-social-link.whatsapp {
    background: #25d366;
}

.mobile-social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile Menu Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
}

/* Additional responsive styles for smaller screens */
@media (max-width: 768px) {
    .mobile-menu {
        max-width: 100%;
        width: 100%;
    }
    
    .mobile-menu-header {
        padding: 15px;
        min-height: 70px;
    }
    
    .mobile-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .mobile-logo-main {
        font-size: 16px;
    }
    
    .mobile-logo-sub {
        font-size: 11px;
    }
    
    .mobile-menu-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
    
    .mobile-nav-link {
        padding: 14px 15px;
        font-size: 16px;
    }
    
    .mobile-dropdown-link {
        padding: 10px 15px 10px 45px;
        font-size: 13px;
    }
    
    .mobile-menu-footer {
        padding: 15px;
    }
    
    .mobile-contact-item {
        font-size: 13px;
    }
    
    .mobile-social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-header {
        padding: 12px;
        min-height: 60px;
    }
    
    .mobile-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .mobile-logo-main {
        font-size: 16px;
    }
    
    .mobile-logo-sub {
        font-size: 10px;
    }
    
    .mobile-menu-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 12px;
        right: 12px;
    }
    
    .mobile-nav-link {
        padding: 12px 12px;
        font-size: 16px;
    }
    
    .mobile-dropdown-link {
        padding: 8px 12px 8px 40px;
        font-size: 16px;
    }
    
    .mobile-menu-footer {
        padding: 12px;
    }
    
    .mobile-contact-item {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .mobile-social-link {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-split-title {
        font-size: 32px;
    }
    
    .hero-split-description {
        font-size: 16px;
    }
    
    .hero-split-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-preview {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
}

/* =============================================
   SPLIT HERO SLIDER STYLES
   Modern full-width hero with split layout
   ============================================= */

.hero-split-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--primary-gradient);
    width: 100%;
    max-width: 100%;
}

/* Slide Container */
.hero-split-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-split-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Content Wrapper */
.hero-split-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-20) 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ========================================
   LEFT SIDE - TEXT CONTENT
   ======================================== */

.hero-split-text {
    color: var(--white);
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-text-inner {
    max-width: 600px;
}

/* Eyebrow Text */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-6);
    animation: fadeInDown 0.6s ease-out;
}

.hero-eyebrow i {
    color: var(--accent-color);
}

/* Hero Title */
.hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.hero-actions .btn {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Inline Stats */
.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.stat-inline-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-inline-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-inline-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-inline-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Features Check List */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-lg);
    color: var(--white);
    font-weight: 500;
}

.feature-check-item i {
    color: var(--accent-color);
    font-size: var(--text-xl);
}

/* ========================================
   RIGHT SIDE - VISUAL CONTENT
   ======================================== */

.hero-split-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-visual-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

/* Media Container */
.hero-media-container {
    position: relative;
    width: 400px;
    height: 500px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Elements */
.hero-media-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.decoration-1 {
    width: 420px;
    height: 520px;
    top: -10px;
    left: -10px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    width: 440px;
    height: 540px;
    top: -20px;
    left: -20px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Floating Info Card */
.hero-info-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-width: 220px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.info-card-content {
    flex: 1;
}

.info-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.info-card-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ========================================
   BACKGROUND PATTERN
   ======================================== */

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

/* ========================================
   SLIDER CONTROLS
   ======================================== */

.hero-slider-controls {
    position: absolute;
    bottom: var(--space-12);
    left: var(--space-8);
    display: flex;
    gap: var(--space-4);
    z-index: 10;
    max-width: calc(100vw - var(--space-16));
    box-sizing: border-box;
}

.hero-slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(26, 60, 110, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-lg);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-width: 50px;
    min-height: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
    
.hero-slider-btn:hover {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: var(--space-12);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 10;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-pagination-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    z-index: 1000;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-pagination-dot:hover {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(255, 152, 0, 0.4);
}

.hero-pagination-dot.active {
    background: var(--accent-color);
    border-color: var(--white);
    width: 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
}

/* Progress Bar */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    width: 0%;
    transition: width 5s linear;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.6);
}

.hero-split-slide.active .hero-progress-fill {
    width: 100%;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    right: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    z-index: 10;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 60, 110, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.scroll-icon:hover {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.scroll-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-media-container {
        width: 350px;
        height: 450px;
        max-width: 100%;
    }
    
    .decoration-1 {
        width: 370px;
        height: 470px;
    }
    
    .decoration-2 {
        width: 390px;
        height: 490px;
    }
}

@media (max-width: 1024px) {
    .hero-split-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    text-align: center;
    }
    
    .hero-text-inner {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-description {
        font-size: var(--text-lg);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats-inline {
        justify-content: center;
    }
    
    .hero-features-list {
    align-items: center;
    }
    
    .hero-media-container {
        width: 300px;
        height: 400px;
        max-width: 100%;
        margin: var(--space-8) auto 0;
    }
    
    .hero-info-card {
    position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-6);
    }
    
    .hero-slider-controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: var(--space-8);
    }
}

@media (max-width: 768px) {
    .hero-split-slider {
        min-height: auto;
    }
    
    .hero-split-slide {
        min-height: auto;
    }
    
    .hero-split-content-wrapper {
        padding: var(--space-12) 0;
    }
    
    .hero-slider-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
        min-width: 60px;
        min-height: 60px;
    }
    
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: var(--space-4);
    }
    
    .stat-inline-divider {
        display: none;
    }
    
    .hero-media-container {
        width: 280px;
        height: 350px;
        max-width: 100%;
    }
    
    .decoration-1,
    .decoration-2 {
        display: none;
    }
    
    .hero-slider-pagination {
        bottom: var(--space-6);
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .stat-inline-number {
        font-size: var(--text-3xl);
    }
    
    .hero-media-container {
        width: 100%;
        max-width: 280px;
        height: 320px;
    }
    
    .hero-info-card {
        padding: var(--space-4);
        min-width: auto;
    }
    
    .info-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-card-icon i {
        font-size: var(--text-xl);
    }
    
    .info-card-title {
        font-size: var(--text-base);
    }
}

/* ========================================
   SLIDER/CAROUSEL STYLES
   ======================================== */

/* Video Slider */
.video-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-slider .slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: none;
    padding: 0;
    color: var(--white);
}

.video-slider .slider-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    z-index: -1;
}

/* Image Slider */
.image-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.image-slider .slider-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.image-slider .slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 60, 110, 0.7), rgba(26, 60, 110, 0.3));
    z-index: 1;
}

.image-slider .slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: none;
    padding: 0;
    color: var(--white);
}

/* ========================================
   SLIDER/CAROUSEL STYLES
   ======================================== */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 40px 30px 30px;
}

.slider-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.slider-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.slider-nav.prev {
    left: 20px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.slider-nav.next {
    right: 20px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.slider-nav i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--white);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .slider-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slider .slider-content {
    position: relative;
    z-index: 2;
    background: none;
    text-align: center;
    padding: 0;
}

.hero-slider .slider-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider .slider-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slider .slider-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonial Slider */
.testimonial-slider {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonial-slider .slider-slide {
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 16px;
    color: var(--dark-gray);
}

/* Logo Slider */
.logo-slider {
    padding: 60px 0;
    background: var(--white);
}

.logo-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.logo-slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 60px;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
        justify-content: center;
    width: 200px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.logo-slide img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

/* Slider Animations */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slider Transition Effects */
.slider-slide.slide-in-right {
    animation: slideInFromRight 0.6s ease-out;
}

.slider-slide.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out;
}

.slider-slide.fade-in-scale {
    animation: fadeInScale 0.8s ease-out;
}

.slider-slide.slide-up {
    animation: slideUp 0.7s ease-out;
}

/* Slider Content Animations */
.slider-content.animate-in {
    animation: slideUp 0.8s ease-out 0.3s both;
}

.slider-title.animate-in {
    animation: slideUp 0.8s ease-out 0.5s both;
}

.slider-description.animate-in {
    animation: slideUp 0.8s ease-out 0.7s both;
}

.slider-buttons.animate-in {
    animation: slideUp 0.8s ease-out 0.9s both;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-slide img {
        height: 250px;
    }
    
    .slider-content {
        padding: 20px;
    }
    
    .slider-title {
        font-size: 20px;
    }
    
    .slider-description {
    font-size: 16px;
    }
    
    .hero-slider .slider-title {
        font-size: 32px;
    }
    
    .hero-slider .slider-description {
        font-size: 16px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .logo-slide {
        width: 150px;
        height: 80px;
    }
    
    .logo-slide img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* =============================================
   MODERN ABOUT SECTION STYLES
   ============================================= */

.about-section {
    position: relative;
    padding: var(--space-16) 0;
    background: var(--white);
    overflow: hidden;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

/* ========================================
   LEFT SIDE - VISUAL
   ======================================== */

.about-visual {
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.about-main-image {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder i {
    font-size: 80px;
    margin-bottom: var(--space-6);
    opacity: 0.8;
}

.about-image-placeholder span {
    font-size: var(--text-3xl);
    font-weight: 700;
}

/* Decorative Shapes */
.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-shape {
    position: absolute;
    border-radius: var(--radius-2xl);
    border: 3px solid var(--accent-color);
    opacity: 0.3;
}

.shape-1 {
    width: 560px;
    height: 610px;
    top: -10px;
    left: -10px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 570px;
    height: 620px;
    top: -20px;
    left: -20px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: var(--accent-gradient);
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.badge-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Certification Badge */
.certification-badge {
    position: absolute;
    bottom: var(--space-8);
    left: var(--space-8);
    background: var(--white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.certification-badge i {
    font-size: var(--text-2xl);
    color: var(--accent-color);
}

.certification-badge span {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   RIGHT SIDE - CONTENT
   ======================================== */

.about-content {
    animation: fadeInRight 0.8s ease-out;
}

.about-content-inner {
    max-width: 500px;
}

/* Section Header */
.section-header-left {
    text-align: left;
    margin-bottom: var(--space-6);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-3);
}

.section-subtitle i {
    font-size: var(--text-base);
}

/* About Description */
.about-description {
    margin-bottom: var(--space-8);
}

.about-description p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-4);
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Features List */
.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.feature-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: var(--text-lg);
    color: var(--white);
}

.feature-content h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.feature-content p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin: 0;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.stat-card {
    background: var(--primary-gradient);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: var(--white);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 76, 129, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.9;
    font-weight: 500;
}

/* Action Buttons */
.about-actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* ========================================
   BACKGROUND ELEMENTS
   ======================================== */

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    opacity: 0.03;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */

.mission-vision-section {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.mv-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    transition: all var(--transition-base);
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: var(--text-4xl);
    color: var(--white);
}

.mv-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.mv-description {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .about-main-image,
    .about-image-placeholder {
        max-width: 500px;
        height: 550px;
    }
    
    .shape-1 {
        width: 510px;
        height: 560px;
    }
    
    .shape-2 {
        width: 520px;
        height: 570px;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image-wrapper {
        margin: 0 auto;
    }
    
    .section-header-left {
        text-align: center;
    }
    
    .about-content-inner {
        max-width: 100%;
    }
    
    .about-actions {
        justify-content: center;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: var(--space-16) 0;
    }
    
    .about-main-image,
    .about-image-placeholder {
        max-width: 100%;
        height: 350px;
    }
    
    .shape-1,
    .shape-2 {
        display: none;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-number {
        font-size: var(--text-3xl);
    }
    
    .badge-text {
        font-size: var(--text-xs);
    }
    
    .certification-badge {
        padding: var(--space-3) var(--space-4);
    }
    
    .about-description p {
        font-size: var(--text-base);
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .about-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .about-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-main-image,
    .about-image-placeholder {
        height: 350px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        top: var(--space-4);
        right: var(--space-4);
    }
    
    .badge-number {
        font-size: var(--text-2xl);
    }
    
    .certification-badge {
        bottom: var(--space-4);
        left: var(--space-4);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   MODERN REFERENCES SLIDER STYLES
   ============================================= */

.references-section {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--gray-50);
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-3);
}

.section-subtitle i {
    font-size: var(--text-base);
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    padding: var(--space-6) var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-16);
}

.trust-stat-item {
    text-align: center;
}

.trust-stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.trust-stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.trust-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
    opacity: 0.5;
}

/* References Slider Container */
.references-slider-container {
    position: relative;
    margin: var(--space-12) 0;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: var(--space-8) 0;
}

/* Gradient Overlays */
.slider-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.gradient-left {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.gradient-right {
    right: 0;
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

/* Slider Track */
.references-slider-track {
    display: flex;
    gap: var(--space-8);
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

.references-slider-container:hover .references-slider-track {
    animation-play-state: paused;
}

/* Logo Cards */
.reference-logo-card {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.logo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.reference-logo-card:hover .logo-card-inner {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.reference-logo-img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all var(--transition-base);
}

.reference-logo-card:hover .reference-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Logo Overlay */
.logo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--space-3) var(--space-2);
    transform: translateY(100%);
    transition: all var(--transition-base);
}

.reference-logo-card:hover .logo-card-overlay {
    transform: translateY(0);
}

.logo-company-name {
    font-size: var(--text-xs);
    font-weight: 600;
    text-align: center;
    display: block;
}

/* Features Grid */
.references-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin: var(--space-16) 0;
}

.ref-feature-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.ref-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.ref-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    transition: all var(--transition-base);
}

.ref-feature-item:hover .ref-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.ref-feature-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.ref-feature-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.ref-feature-item p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.references-cta {
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    margin-top: var(--space-16);
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    position: relative;
    z-index: 2;
}

.cta-text h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.cta-text p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    flex-shrink: 0;
}

.cta-buttons .btn {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Background Pattern */
.references-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(15, 76, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* =============================================
   TESTIMONIALS SECTION STYLES
   ============================================= */

.testimonials-preview {
    padding: var(--space-20) 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: var(--text-sm);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: var(--white);
    font-size: var(--text-lg);
}

.author-info h5 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .trust-stats {
        gap: var(--space-6);
        padding: var(--space-4) var(--space-6);
    }
    
    .trust-stat-number {
        font-size: var(--text-2xl);
    }
    
    .references-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .references-section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .section-description {
        font-size: var(--text-base);
    }
    
    .trust-stats {
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-6);
    }
    
    .trust-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .reference-logo-card {
        width: 150px;
        height: 100px;
    }
    
    .references-features {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 480px) {
    .reference-logo-card {
        width: 120px;
        height: 80px;
    }
    
    .references-slider-track {
        gap: var(--space-4);
    }
    
    .slider-gradient {
        width: 50px;
    }
    
    .cta-text h3 {
        font-size: var(--text-2xl);
    }
    
    .cta-text p {
        font-size: var(--text-base);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* =============================================
   MODERN KURUMSAL PAGE STYLES
   ============================================= */

/* Page Hero Modern */
.page-hero-modern {
    position: relative;
    padding: var(--space-24) 0 var(--space-16);
    background: var(--primary-gradient);
    color: var(--white);
    overflow: hidden;
}

.page-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.hero-breadcrumb a:hover {
    opacity: 0.8;
}

.hero-breadcrumb span {
    opacity: 0.6;
}

.page-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* About Company Section - Classic Simple */
.about-company-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.about-company-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-company-content .section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-8);
    text-align: center;
}

.about-company-description {
    text-align: left;
}

.about-company-description p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    text-align: justify;
}

.about-company-description p:last-child {
    margin-bottom: 0;
}

.about-company-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Values Section */
.values-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.value-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    transition: all var(--transition-base);
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(26, 60, 110, 0.3);
}

.value-icon i {
    color: var(--white);
    font-size: var(--text-3xl);
}

.value-item h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.value-item p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-600);
}

/* Contact CTA Section */
.contact-cta {
    padding: var(--space-20) 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-company-grid {
        gap: var(--space-12);
    }
    
    .company-stats-grid {
        gap: var(--space-4);
    }
}

@media (max-width: 992px) {
    .page-hero-modern {
        padding: var(--space-20) 0 var(--space-12);
    }
    
    .page-title {
        font-size: var(--text-4xl);
    }
    
    .page-subtitle {
        font-size: var(--text-lg);
    }
    
    .about-company-section {
        padding: var(--space-12) 0;
    }
    
    .about-company-content .section-title {
        font-size: var(--text-2xl);
    }
    
    .about-company-description p {
        font-size: var(--text-base);
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-6);
    }
    
    .contact-cta {
        padding: var(--space-16) 0;
    }
    
    .cta-text h2 {
        font-size: var(--text-3xl);
    }
    
    .cta-text p {
        font-size: var(--text-lg);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero-modern {
        padding: var(--space-16) 0 var(--space-8);
    }
    
    .page-title {
        font-size: var(--text-3xl);
    }
    
    .page-subtitle {
        font-size: var(--text-base);
    }
    
    .about-company-section {
        padding: var(--space-12) 0;
    }
    
    .about-company-content {
        padding: 0 var(--space-4);
    }
    
    .about-company-content .section-title {
        font-size: var(--text-xl);
    }
    
    .about-company-description p {
        font-size: var(--text-sm);
        text-align: left;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .value-item {
        padding: var(--space-6);
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: var(--text-2xl);
    }
    
    .contact-cta {
        padding: var(--space-12) 0;
    }
    
    .cta-text h2 {
        font-size: var(--text-2xl);
    }
    
    .cta-text p {
        font-size: var(--text-base);
    }
}

/* =============================================
   MODERN REFERENCES PAGE STYLES
   ============================================= */

/* Trust Stats Section */
.trust-stats-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.trust-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trust-stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-stat-item .stat-icon i {
    color: var(--white);
    font-size: var(--text-2xl);
}

.trust-stat-item .stat-info {
    flex: 1;
}

.trust-stat-item .stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.trust-stat-item .stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 600;
}

/* References Grid Section */
.references-grid-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.reference-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.reference-card:hover::before {
    transform: scaleX(1);
}

.reference-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.reference-card:hover .reference-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 60, 110, 0.2);
}

.reference-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.company-initials {
    font-size: var(--text-2xl);
    font-weight: 800;
}

.reference-content {
    text-align: center;
}

.company-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.reference-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.reference-description {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.reference-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.reference-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.reference-status.completed {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.reference-status i {
    font-size: var(--text-sm);
}

.reference-website {
    margin: var(--space-3) 0;
}

.reference-website a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: var(--transition);
}

.reference-website a:hover {
    color: var(--accent-color);
    transform: translateX(2px);
}

.reference-website a i {
    font-size: var(--text-xs);
}

.no-references {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-16);
    color: var(--gray-500);
}

.no-references-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    color: var(--gray-300);
}

.no-references h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--gray-600);
}

.no-references p {
    font-size: var(--text-base);
    color: var(--gray-500);
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-popup.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: var(--space-4);
}

.popup-content h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.popup-content p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.popup-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    font-size: var(--text-lg);
    color: var(--gray-400);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

/* Form Alert Styles */
.alert {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-messages.success .alert {
    animation: slideInDown 0.3s ease;
}

.form-messages.error .alert {
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-color);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
    justify-content: center;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: var(--text-lg);
}

.testimonial-text {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-lg);
}

.author-info h5 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* References CTA Section */
.references-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #1a3c6e 0%, #2d5aa0 50%, #1a3c6e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.references-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.references-cta .cta-content-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 1;
}

.references-cta .cta-text h3 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.references-cta .cta-text p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.references-cta .cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.references-cta .cta-buttons .btn {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }
}

@media (max-width: 992px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .trust-stat-item {
        padding: var(--space-4);
    }
    
    .trust-stat-item .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-stat-item .stat-icon i {
        font-size: var(--text-xl);
    }
    
    .trust-stat-item .stat-number {
        font-size: var(--text-2xl);
    }
    
    .references-grid-section {
        padding: var(--space-20) 0;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .testimonials-section {
        padding: var(--space-20) 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .references-cta {
        padding: var(--space-16) 0;
    }
    
    .references-cta .cta-content-wrapper {
        padding: 0 var(--space-4);
    }
    
    .references-cta .cta-text h3 {
        font-size: var(--text-3xl);
    }
    
    .references-cta .cta-text p {
        font-size: var(--text-lg);
    }
    
    .references-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .references-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .trust-stats-section {
        padding: var(--space-12) 0;
    }
    
    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .trust-stat-item {
        padding: var(--space-3);
    }
    
    .trust-stat-item .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .trust-stat-item .stat-icon i {
        font-size: var(--text-lg);
    }
    
    .trust-stat-item .stat-number {
        font-size: var(--text-xl);
    }
    
    .trust-stat-item .stat-label {
        font-size: var(--text-xs);
    }
    
    .references-grid-section {
        padding: var(--space-16) 0;
    }
    
    .reference-card {
        padding: var(--space-6);
    }
    
    .reference-logo {
        width: 60px;
        height: 60px;
    }
    
    .company-name {
        font-size: var(--text-lg);
    }
    
    .testimonials-section {
        padding: var(--space-16) 0;
    }
    
    .testimonial-card {
        padding: var(--space-6);
    }
    
    .testimonial-text {
        font-size: var(--text-base);
    }
    
    .references-cta {
        padding: var(--space-12) 0;
    }
    
    .references-cta .cta-content-wrapper {
        padding: 0 var(--space-3);
    }
    
    .references-cta .cta-text h3 {
        font-size: var(--text-2xl);
    }
    
    .references-cta .cta-text p {
        font-size: var(--text-base);
    }
}

/* =============================================
   ABOUT COMPANY SECTION - VERSION 3 KURUMSAL
   ============================================= */

/* About Company Section Styles */
.about-company-section {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.about-company-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-3);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-company-text {
    margin: var(--space-10) 0;
}

.about-text-content {
    font-size: var(--text-lg);
    line-height: 2;
    color: var(--gray-700);
    text-align: justify;
    margin: 0;
    padding: var(--space-10);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent-color);
}

.about-text-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-company-cta {
    margin-top: var(--space-10);
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-text-content {
        font-size: var(--text-base);
        padding: var(--space-8);
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .about-text-content {
        font-size: var(--text-base);
        line-height: 1.8;
        padding: var(--space-6);
        text-align: left;
        border-left-width: 4px;
    }
    
    .about-company-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-company-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .about-text-content {
        font-size: var(--text-sm);
        padding: var(--space-4);
    }
}

/* =============================================
   MODERN SERVICES PAGE STYLES
   ============================================= */

/* Services Grid Section */
.services-grid-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: var(--space-12);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(26, 60, 110, 0.3);
}

.service-icon i {
    font-size: var(--text-3xl);
    color: var(--white);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.service-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-base);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: var(--space-3);
}

.service-link i {
    font-size: var(--text-sm);
    transition: transform var(--transition-base);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.process-step {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-4) auto var(--space-6);
    transition: all var(--transition-base);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 60, 110, 0.3);
}

.step-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.process-step h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.process-step p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.feature-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.feature-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.feature-item h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.feature-item p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    padding: var(--space-20) 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.services-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta .cta-text h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-cta .cta-text p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.services-cta .cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .cta-actions .btn {
    min-width: 180px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-6);
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-6);
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-6);
    }
}

@media (max-width: 992px) {
    .services-grid-section {
        padding: var(--space-20) 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .process-section {
        padding: var(--space-20) 0;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .why-choose-section {
        padding: var(--space-20) 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .services-cta {
        padding: var(--space-16) 0;
    }
    
    .services-cta .cta-text h2 {
        font-size: var(--text-3xl);
    }
    
    .services-cta .cta-text p {
        font-size: var(--text-lg);
    }
    
    .services-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: var(--space-16) 0;
    }
    
    .service-card {
        padding: var(--space-6);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: var(--text-2xl);
    }
    
    .service-title {
        font-size: var(--text-lg);
    }
    
    .process-section {
        padding: var(--space-16) 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .process-step {
        padding: var(--space-4);
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: var(--text-xl);
    }
    
    .process-step h3 {
        font-size: var(--text-lg);
    }
    
    .why-choose-section {
        padding: var(--space-16) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .feature-item {
        padding: var(--space-6);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: var(--text-xl);
    }
    
    .feature-item h3 {
        font-size: var(--text-lg);
    }
    
    .services-cta {
        padding: var(--space-12) 0;
    }
    
    .services-cta .cta-text h2 {
        font-size: var(--text-2xl);
    }
    
    .services-cta .cta-text p {
        font-size: var(--text-base);
    }
}

/* =============================================
   MODERN SERVICE DETAIL PAGE STYLES
   ============================================= */

/* Service Detail Section */
.service-detail-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

/* Service Detail Content */
.service-detail-content {
    min-width: 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: var(--text-3xl);
    color: var(--white);
}

.service-detail-info h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.service-detail-info p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin: 0;
}

.service-detail-body {
    padding: var(--space-8);
}

.service-content-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--gray-700);
}

.service-content-text h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin: var(--space-8) 0 var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--primary-color);
}

.service-content-text p {
    margin-bottom: var(--space-6);
}

.service-content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list i {
    color: var(--accent-color);
    font-size: var(--text-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Tech Features Grid */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin: var(--space-6) 0;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.tech-feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tech-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-feature-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.tech-feature-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.tech-feature-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin: var(--space-6) 0;
}

.advantage-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    transition: all var(--transition-base);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.advantage-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.advantage-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Service Stats Grid */
.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-6);
    margin: var(--space-8) 0;
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.service-stat-item {
    text-align: center;
    padding: var(--space-4);
}

.service-stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.service-stat-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Detail Sidebar */
.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.sidebar-card-header {
    padding: var(--space-6);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-card-header h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.sidebar-card-header p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.sidebar-card-body {
    padding: var(--space-6);
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: var(--text-base);
    color: var(--white);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.contact-info-content a,
.contact-info-content span {
    font-size: var(--text-sm);
    color: var(--gray-600);
    text-decoration: none;
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

/* Sidebar Actions */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Related Services List */
.related-services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.related-service-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Related service items arka plan resimleri */
.related-service-item:nth-child(1) {
    background-image: url('../images/hizmetler/hizmet-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.related-service-item:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.related-service-item:nth-child(1) h4,
.related-service-item:nth-child(1) p,
.related-service-item:nth-child(1) a {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.related-service-item:nth-child(2) {
    background-image: url('../images/hizmetler/hizmet-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.related-service-item:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.related-service-item:nth-child(2) h4,
.related-service-item:nth-child(2) p,
.related-service-item:nth-child(2) a {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.related-service-item:nth-child(3) {
    background-image: url('../images/hizmetler/hizmet-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.related-service-item:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.85) 0%, rgba(26, 60, 110, 0.75) 100%);
    z-index: 1;
}

.related-service-item:nth-child(3) h4,
.related-service-item:nth-child(3) p,
.related-service-item:nth-child(3) a {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.related-service-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Arka plan resimli versiyonlar için hover efekti */
.related-service-item:nth-child(1):hover::after,
.related-service-item:nth-child(2):hover::after,
.related-service-item:nth-child(3):hover::after {
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.9) 0%, rgba(26, 60, 110, 0.8) 100%);
}

.related-service-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.related-service-icon i {
    font-size: var(--text-base);
    color: var(--white);
}

.related-service-content {
    flex: 1;
}

.related-service-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.related-service-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.related-service-content h4 a:hover {
    color: var(--primary-color);
}

.related-service-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-detail-grid {
        gap: var(--space-8);
    }
    
    .tech-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--space-4);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-4);
    }
}

@media (max-width: 992px) {
    .service-detail-section {
        padding: var(--space-20) 0;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-detail-icon i {
        font-size: var(--text-2xl);
    }
    
    .service-detail-info h2 {
        font-size: var(--text-xl);
    }
    
    .service-detail-body {
        padding: var(--space-6);
    }
    
    .tech-features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .service-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: var(--space-16) 0;
    }
    
    .service-detail-header {
        padding: var(--space-6);
    }
    
    .service-detail-body {
        padding: var(--space-4);
    }
    
    .service-content-text h3 {
        font-size: var(--text-lg);
        margin: var(--space-6) 0 var(--space-3);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .service-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: var(--space-4);
    }
    
    .service-stat-number {
        font-size: var(--text-2xl);
    }
    
    .sidebar-card-header {
        padding: var(--space-4);
    }
    
    .sidebar-card-body {
        padding: var(--space-4);
    }
    
    .contact-info-item {
        padding: var(--space-2);
    }
    
    .contact-info-icon {
        width: 35px;
        height: 35px;
    }
    
    .related-service-item {
        padding: var(--space-3);
    }
    
    .related-service-icon {
        width: 35px;
        height: 35px;
    }
}

/* =============================================
   MODERN CONTACT PAGE STYLES
   ============================================= */

/* Contact Main Section */
.contact-main-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form {
    margin-top: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--text-dark);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.error-message {
    display: block;
    color: var(--error);
    font-size: var(--text-sm);
    margin-top: var(--space-1);
}

.form-messages {
    margin-top: var(--space-4);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
}

.form-messages.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-messages.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
}

.contact-info-grid {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-info-card .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .contact-icon i {
    color: var(--white);
    font-size: var(--text-lg);
}

.contact-info-card .contact-details h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.contact-info-card .contact-details p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-info-card .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info-card .contact-details a:hover {
    color: var(--primary-dark);
}

/* Quick Contact Section */
.quick-contact-section {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.quick-contact-section h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    text-align: center;
}

.quick-contact-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    min-width: 80px;
}

.quick-btn i {
    font-size: var(--text-xl);
}

.quick-btn span {
    font-size: var(--text-sm);
    font-weight: 600;
}

.quick-btn.phone {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.quick-btn.phone:hover {
    background: var(--success);
    color: var(--white);
    transform: translateY(-2px);
}

.quick-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.quick-btn.whatsapp:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-2px);
}

.quick-btn.email {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.quick-btn.email:hover {
    background: var(--info);
    color: var(--white);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.map-container {
    margin-top: var(--space-12);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    font-size: var(--text-lg);
    color: var(--primary-color);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: var(--space-4);
}

.faq-answer p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: var(--space-20) 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta .cta-text h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-cta .cta-text p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.contact-cta .cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .cta-actions .btn {
    min-width: 180px;
}

/* Footer CTA Section Specific Styles */
.contact-cta .cta-actions .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    text-shadow: none;
}

.contact-cta .cta-actions .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta .cta-actions .btn-accent {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.contact-cta .cta-actions .btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-main-grid {
        gap: var(--space-12);
    }
}

@media (max-width: 992px) {
    .contact-main-section {
        padding: var(--space-20) 0;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .contact-form-wrapper {
        padding: var(--space-6);
    }
    
    .contact-info-wrapper {
        padding: var(--space-6);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .quick-contact-buttons {
        flex-wrap: wrap;
    }
    
    .map-section {
        padding: var(--space-20) 0;
    }
    
    .faq-section {
        padding: var(--space-20) 0;
    }
    
    .contact-cta {
        padding: var(--space-16) 0;
    }
    
    .contact-cta .cta-text h2 {
        font-size: var(--text-3xl);
    }
    
    .contact-cta .cta-text p {
        font-size: var(--text-lg);
    }
    
    .contact-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: var(--space-16) 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: var(--space-4);
    }
    
    .contact-info-card {
        padding: var(--space-3);
    }
    
    .contact-info-card .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-info-card .contact-icon i {
        font-size: var(--text-base);
    }
    
    .contact-info-card .contact-details h3 {
        font-size: var(--text-base);
    }
    
    .contact-info-card .contact-details p {
        font-size: var(--text-sm);
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        justify-content: center;
    }
    
    .map-section {
        padding: var(--space-16) 0;
    }
    
    .faq-section {
        padding: var(--space-16) 0;
    }
    
    .faq-question {
        padding: var(--space-4);
    }
    
    .faq-question h3 {
        font-size: var(--text-base);
    }
    
    .faq-answer {
        padding: 0 var(--space-4) var(--space-4);
    }
    
    .faq-item.active .faq-answer {
        padding-top: var(--space-3);
    }
    
    .contact-cta {
        padding: var(--space-12) 0;
    }
    
    .contact-cta .cta-text h2 {
        font-size: var(--text-2xl);
    }
    
    .contact-cta .cta-text p {
        font-size: var(--text-base);
    }
}

/* =============================================
   MODERN FOOTER STYLES
   ============================================= */

/* Newsletter Section */
.footer-newsletter {
    background: var(--primary-gradient);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.newsletter-icon i {
    font-size: var(--text-3xl);
    color: var(--white);
}

.newsletter-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.newsletter-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.newsletter-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.newsletter-form {
    flex-shrink: 0;
    max-width: 400px;
    width: 100%;
}

.newsletter-input-wrapper {
    display: flex;
    gap: var(--space-3);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    color: var(--gray-900);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--gray-500);
}

.newsletter-form .btn {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.newsletter-message {
    margin-top: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: center;
    display: none;
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Main Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    position: relative;
}

.footer-main {
    padding: var(--space-20) 0 var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-12);
}

/* Company Info Column */
.footer-about {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: var(--space-6);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.logo-sub {
    font-size: var(--text-lg);
    color: var(--accent-color);
    font-weight: 500;
}

.footer-description {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-8);
}

/* Quality Badges */
.footer-badges {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-item i {
    color: var(--accent-color);
    font-size: var(--text-lg);
}

.badge-item span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
}

/* Social Media */
.footer-social {
    margin-top: var(--space-8);
}

.social-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: var(--text-lg);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.youtube {
    background: #ff0000;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-column-title i {
    color: var(--accent-color);
    font-size: var(--text-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-400);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    position: relative;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links li a i {
    color: var(--accent-color);
    font-size: var(--text-sm);
    width: 16px;
    flex-shrink: 0;
}

/* Contact Info - Simple Version */
.footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-simple-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
}

.contact-simple-item i {
    color: var(--accent-color);
    font-size: var(--text-base);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-simple-item span {
    color: var(--gray-400);
    font-size: var(--text-sm);
    line-height: 1.5;
    flex: 1;
}

.contact-simple-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-simple-item a:hover {
    color: var(--accent-hover);
}

/* Legacy Contact Info (keeping for other uses) */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: var(--text-base);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.contact-details span {
    color: var(--gray-400);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-details a:hover {
    color: var(--accent-hover);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8) 0;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--gray-400);
}

.footer-copyright strong {
    color: var(--white);
}

.footer-tagline {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-top: var(--space-1);
    font-style: italic;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Back to Top Button (Footer) */
.back-to-top-footer {
    position: absolute;
    top: -25px;
    right: var(--space-8);
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all var(--transition-base);
    z-index: 10;
}

.back-to-top-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.back-to-top-footer i {
    font-size: var(--text-lg);
}

.back-to-top-footer span {
    font-size: var(--text-xs);
    font-weight: 600;
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */

.floating-actions {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    z-index: var(--z-fixed);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-2xl);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn-text {
    position: absolute;
    right: 70px;
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.floating-btn-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--gray-900);
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Phone Button */
.phone-btn {
    background: var(--accent-gradient);
}

.phone-btn:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
}

/* Back to Top Button */
.top-btn {
    background: var(--primary-gradient);
}

.top-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Pulse Animation for Floating Buttons */
@keyframes pulse-floating {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

.floating-btn {
    animation: pulse-floating 2s ease-in-out infinite;
}

/* ========================================
   FOOTER RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-10);
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text {
        flex-direction: column;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: var(--space-10) 0;
    }
    
    .newsletter-title {
        font-size: var(--text-2xl);
    }
    
    .newsletter-description {
        font-size: var(--text-base);
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .footer-main {
        padding: var(--space-16) 0 var(--space-10);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-badges {
        flex-wrap: wrap;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .floating-actions {
        bottom: var(--space-6);
        right: var(--space-6);
        max-width: calc(100vw - var(--space-12));
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: var(--text-xl);
    }
    
    .floating-btn-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-icon i {
        font-size: var(--text-2xl);
    }
    
    .newsletter-title {
        font-size: var(--text-xl);
    }
    
    .newsletter-description {
        font-size: var(--text-sm);
    }
    
    .logo-main {
        font-size: var(--text-3xl);
    }
    
    .logo-sub {
        font-size: var(--text-base);
    }
    
    .footer-badges {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .floating-actions {
        bottom: var(--space-4);
        right: var(--space-4);
        max-width: calc(100vw - var(--space-8));
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .back-to-top-footer {
        width: 45px;
        height: 45px;
        top: -22px;
    }
    
    .back-to-top-footer i {
        font-size: var(--text-base);
    }
    
    .back-to-top-footer span {
        display: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktop: 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Desktop: 1024px - 1439px */
@media (max-width: 1439px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet: 768px - 1023px */
@media (max-width: 1023px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile: 640px - 767px */
@media (max-width: 767px) {
    .features-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
}

/* Small Mobile: < 640px */
@media (max-width: 639px) {
    :root {
        --space-20: 3rem;
        --space-24: 4rem;
    }
    
    .btn-lg {
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration for animations */
.animate-fadeIn,
.animate-fadeInUp,
.animate-slideInRight,
.float,
.pulse {
    will-change: transform, opacity;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
    opacity: 0;
        transform: translateX(-20px);
}
    to {
    opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
    opacity: 0;
        transform: scale(0.9);
}
    to {
    opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

/* Animation Classes */
.animate-fadeIn { animation: fadeIn 0.5s ease-out; }
.animate-fadeInDown { animation: fadeInDown 0.5s ease-out; }
.animate-fadeInUp { animation: fadeInUp 0.5s ease-out; }
.animate-slideInRight { animation: slideInRight 0.5s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.5s ease-out; }
.animate-scaleIn { animation: scaleIn 0.3s ease-out; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }

/* ========================================
   END OF CORPORATE CSS FRAMEWORK
   ======================================== */