:root {
    /* Colors */
    --brand: #1B0E54;
    --brand-400: #2d1a78;
    --brand-50: #f0edff;
    --brand-600: #3B22A8;
    --accent: #00C2FF;
    --bg: #F9FAFB;
    --card: #FFFFFF;
    --muted: #6B7280;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --brand-gradient: linear-gradient(135deg, #1B0E54 0%, #0A0420 100%);
    --brand-red: #D10A16;
    
    /* Fonts */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

html {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
}



/* ==================== PREMIUM NAVBAR ==================== */
.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--brand-gradient);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(27, 14, 84, 0.15);
    transition: all 0.3s ease;
}

/* Navbar Scroll States */
.premium-navbar.scroll-down {
    transform: translateY(-100%);
}

.premium-navbar.scroll-up {
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(27, 14, 84, 0.2);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-logo img {
    display: block;
    transition: transform 0.2s ease;
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    position: relative;
    transition: none;
}

/* Alt çizgi animasyonu */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: white !important;
}

.nav-link svg {
    transition: transform 0.2s ease;
    stroke: white;
}

.nav-link:hover svg {
    stroke: var(--accent);
}

.nav-item.has-mega-menu:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Fix navbar button colors */
.navbar-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
}

.navbar-cta:hover {
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 1.5rem; /* Görünmez hover alanı */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hover alanını genişletmek için görünmez köprü */
.has-mega-menu::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 1.5rem;
    background: transparent;
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu-content {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    min-width: 600px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--bg);
}

.mega-menu-item:hover {
    background: var(--brand);
    transform: translateX(4px);
    .mega-menu-icon {
        color: white;.service-cta
    }
}

.mega-menu-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.mega-menu-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 0.25rem 0;
    transition: color 0.2s ease;
}

.mega-menu-item p {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
    transition: color 0.2s ease;
}

.mega-menu-item:hover h4,
.mega-menu-item:hover p {
    color: white;
}

/* ==================== PREMIUM FOOTER ==================== */
.premium-footer {
    background: var(--brand-gradient);
    color: white;
    padding-top: 4rem;
    border-top: 1px solid #d10a16;
}

.footer-main {
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-contact-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-phone-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-phone-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-phone-number:hover {
    color: var(--accent);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    background: var(--brand);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 14, 84, 0.90) 0%, rgba(27, 14, 84, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding-left: 3rem;
}

.hero-content-inner {
    max-width: 650px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.4);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: none;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--accent);
    border-color: var(--accent);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ==================== PREMIUM FULL SCREEN HERO SLIDER ==================== */
.premium-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    max-height: 1080px;
    overflow: hidden;
    background: var(--brand);
    margin-top: -80px; /* Navbar yüksekliğini kompanse et */
    padding-top: 80px; /* Navbar için padding */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient - sen görsel ekleyince bu üzerinde olacak */
    background-image: linear-gradient(135deg, #1B0E54 0%, #3B22A8 50%, #5E3DB8 100%);
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(132deg, 
    rgba(27, 14, 84, 0.72) 0%, 
    rgba(59, 34, 168, 0.05) 50%, 
    rgba(27, 14, 84, 0.10) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Navbar için ekstra boşluk */
}

.hero-content-wrapper {
    max-width: 900px;
    padding: 4rem 0;
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(0, 194, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 194, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 194, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.3);
}

.hero-badge i {
    font-size: 1.25rem;
}

/* Hero Heading */
.hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-heading-accent {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero {
    padding: 1.375rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #00D4FF 100%);
    color: var(--brand);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-4px);
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 20px 60px var(--brand);
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
}

.hero-stat-item {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 194, 255, 0.4);
    transform: translateY(-8px);
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent) 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    background: rgba(0, 194, 255, 0.2);
    border-color: var(--accent);
}

/* Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    outline: none;
}

.hero-nav-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--brand);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 3rem;
}

.hero-next {
    right: 3rem;
}

/* Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    outline: none;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--accent);
    border-color: var(--accent);
}

/* ==================== PREMIUM SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header .badge {
    margin-bottom: 1rem;
    animation: fadeInDown 0.6s ease;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.section-header p {
    font-size: 1.125rem;
    color: #b7bcc8c4;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #d10a16;
    margin: 2rem auto 0;
}

/* ==================== PREMIUM ICON GRID ==================== */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.icon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.05) 0%, rgba(27, 14, 84, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.icon-item:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(0, 194, 255, 0.15);
    transform: translateY(-8px);
}

.icon-item:hover::before {
    opacity: 1;
}

.icon-item-icon {
    font-size: 3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

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

.icon-item-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand);
    margin: 0;
    position: relative;
    z-index: 1;
}

.icon-item-desc {
    font-size: 0.9375rem;
    color: var(--muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==================== PREMIUM LOCATION LIST ==================== */
.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 3rem 0;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 2px solid #E5E7EB;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 194, 255, 0.15);
    transform: translateX(4px);
}

.location-icon {
    font-size: 1.75rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.location-item:hover .location-icon {
    transform: scale(1.15);
}

.location-name {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--brand);
}

/* ==================== PREMIUM SECTOR GRID ==================== */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

/* ==================== PRODUCT CATEGORY CARDS ==================== */
.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 14, 84, 0.2) !important;
}

.product-category-card:hover .category-bg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-category-card {
        height: 350px !important;
    }
}

/* ==================== PREMIUM LEAD FORM ==================== */
.lead-form-section {
    background: linear-gradient(135deg, var(--bg) 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.lead-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lead-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-form-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead-form-content .badge {
    margin-bottom: 1rem;
}

.lead-form-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.lead-form-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.lead-form-feature i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.lead-form-feature-content {
    flex: 1;
}

.lead-form-feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.25rem;
}

.lead-form-feature-desc {
    font-size: 0.9375rem;
    color: var(--muted);
}

.lead-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(27, 14, 84, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.lead-form-card:hover {
    border-color: var(--accent);
    box-shadow: 0 24px 72px rgba(0, 194, 255, 0.15);
}

@media (max-width: 1024px) {
    .lead-form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==================== PREMIUM CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: white;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ==================== RESPONSIVE ENHANCEMENTS ==================== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .lead-form-content h2 {
        font-size: 1.875rem;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .cta-banner p {
        font-size: 1.0625rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    /* Hero adjustments for tablets */
    .premium-hero-slider {
        min-height: 700px;
        max-height: 900px;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-nav-arrow {
        width: 54px;
        height: 54px;
        font-size: 1.25rem;
    }
    
    .hero-prev {
        left: 2rem;
    }
    
    .hero-next {
        right: 2rem;
    }
    
    .lead-form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(27, 14, 84, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        max-height: calc(100vh - 70px);
        opacity: 1;
        overflow-y: auto;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 1rem 0;
        justify-content: space-between;
    }
    
    .navbar-cta {
        width: 100%;
        margin-top: 1rem;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        margin-top: 0;
    }
    
    .mega-menu-content {
        min-width: auto;
        padding: 1rem;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .has-mega-menu .mega-menu {
        max-height: 0;
        overflow: hidden;
    }
    
    .has-mega-menu.active .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        margin-top: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slider-arrows {
        padding: 0 1rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Premium Hero Slider - Mobile */
    .premium-hero-slider {
        min-height: 600px;
        max-height: 100vh;
        margin-top: -70px;
        padding-top: 70px;
    }
    
    .hero-slide-content {
        padding-top: 70px;
    }
    
    .hero-content-wrapper {
        padding: 2rem 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .hero-nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .hero-prev {
        left: 1rem;
    }
    
    .hero-next {
        right: 1rem;
    }
    
    .hero-dots {
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
    }
    
    .hero-scroll-indicator {
        bottom: 2rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .lead-form-content h2 {
        font-size: 1.875rem;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .cta-banner p {
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.4rem 0.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Premium Hero Slider - Small Mobile */
    .premium-hero-slider {
        min-height: 550px;
    }
    
    .hero-heading {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.625rem 1.25rem;
    }
    
    .btn-hero {
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .hero-nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 0.5rem;
    }
    
    .hero-next {
        right: 0.5rem;
    }
    
    .hero-dots {
        bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 30px;
    }
}

/* Animations */
@keyframes animate-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in-up {
    animation: animate-fade-in-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-bounce {
    animation: animate-bounce 2s ease-in-out infinite;
}
