/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --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);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-gradient);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.header:hover::after {
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.1;
    border-radius: 4px;
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section - Enhanced Design with proper layering */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    perspective: 1000px;
    isolation: isolate;
}

/* FullHD (1920x1080) optimization */
@media (min-width: 1920px) and (min-height: 1080px) {
    .hero-content-wrapper {
        padding: 100px 32px 120px;
    }
}

/* 1440p optimization */
@media (min-width: 2560px) and (min-height: 1440px) {
    .hero-content-wrapper {
        padding: 120px 40px 140px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
    }
}

/* 4K optimization */
@media (min-width: 3840px) {
    .hero-content-wrapper {
        padding: 140px 60px 160px;
        max-width: 1600px;
    }
}

/* Landscape tablets and small laptops */
@media (min-width: 768px) and (max-width: 1366px) and (max-height: 1024px) {
    .hero-content-wrapper {
        padding: 60px 24px 100px;
    }
}

/* Ultra-wide screens */
@media (min-width: 2560px) and (max-width: 3440px) {
    .hero-content-wrapper {
        max-width: 1400px;
    }
}

/* Very small height screens - ensure content fits */
@media (max-height: 600px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content-wrapper {
        padding: 40px 20px 80px;
        min-height: 600px;
    }
    
    .running-text-container {
        padding: 10px 0;
    }
    
    .hero-badge {
        margin-bottom: 12px;
        padding: 8px 16px;
    }
    
    .hero-title {
        margin-bottom: 12px;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .hero-subtitle {
        margin-bottom: 16px;
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
    
    .hero-features {
        margin-bottom: 16px;
        gap: 8px;
    }
    
    .hero-feature {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .hero-actions {
        margin-bottom: 16px;
        gap: 8px;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .running-text-container {
        padding: 10px 0;
    }
    
    .running-text-item {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

/* Large desktop screens (1920px+) */
@media (min-width: 1920px) {
    .hero-content-wrapper {
        padding-top: 90px;
        padding-bottom: 110px;
    }
}

/* Standard desktop (1366px - 1919px) */
@media (min-width: 1366px) and (max-width: 1919px) {
    .hero-content-wrapper {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}

/* Z-index hierarchy:
   0: Background layers
   1: Decorative elements
   2: Slider container
   3: Content wrapper
   4: Running text
*/

/* Background Layers */
.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-bg-layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-bg-layer-2 {
    background: radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.hero-bg-layer-3 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    animation: pulse 15s ease-in-out infinite;
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0.1;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-duration: 15s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.decorative-line {
    position: absolute;
    background: var(--accent-gradient);
    opacity: 0.2;
    border-radius: 2px;
}

.line-1 {
    width: 2px;
    height: 200px;
    top: 20%;
    left: 15%;
    animation: float 12s ease-in-out infinite;
}

.line-2 {
    width: 200px;
    height: 2px;
    bottom: 30%;
    right: 20%;
    animation: float 15s ease-in-out infinite reverse;
}

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
    filter: brightness(0.7) contrast(1.1);
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-slide.active .hero-image {
    transform: scale(1);
    filter: brightness(0.8) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 42, 0.75) 0%, 
        rgba(30, 41, 59, 0.65) 40%,
        rgba(59, 130, 246, 0.25) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0.5;
}

/* Content Wrapper - Using 8px grid system */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 800px;
    z-index: 3;
    margin-bottom: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Badge - 8px spacing */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
    transition: var(--transition);
}

@media (max-height: 900px) {
    .hero-badge {
        margin-bottom: 20px;
    }
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-icon {
    font-size: 1.125rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Title - Proper spacing */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

@media (max-height: 900px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 16px;
    }
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite, fadeInUp 1s ease;
}

.title-line-1 {
    animation-delay: 0.2s;
    margin-bottom: 8px;
}

.title-line-2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

/* Subtitle - 8px spacing */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

@media (max-height: 900px) {
    .hero-subtitle {
        margin-bottom: 20px;
        font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    }
}

/* Features - 8px grid spacing */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.5s both;
}

@media (max-height: 900px) {
    .hero-features {
        margin-bottom: 20px;
        gap: 12px;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

/* Actions - 8px spacing */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    margin-bottom: 0;
}

@media (max-height: 900px) {
    .hero-actions {
        gap: 12px;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Running Text Banner - Replaces stats */
.hero-running-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.running-text-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.running-text-track {
    display: flex;
    gap: 60px;
    animation: running-text 40s linear infinite;
    white-space: nowrap;
}

.running-text-item {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.running-text-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.running-text-item::before {
    content: '●';
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.6));
}

@keyframes running-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Adjust running text for different screen sizes */
@media (max-width: 1400px) {
    .running-text-track {
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    .running-text-track {
        gap: 40px;
    }
    
    .running-text-item {
        font-size: 0.95rem;
        padding: 8px 20px;
    }
}

@media (max-height: 900px) {
    .hero-content-wrapper {
        padding-bottom: 100px;
    }
    
    .running-text-container {
        padding: 16px 0;
    }
    
    .running-text-item {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

@media (max-height: 800px) {
    .hero-content-wrapper {
        padding-bottom: 90px;
    }
    
    .running-text-container {
        padding: 12px 0;
    }
    
    .running-text-item {
        font-size: 0.85rem;
        padding: 6px 18px;
    }
}

@media (max-width: 768px) {
    .running-text-track {
        gap: 30px;
        animation-duration: 35s;
    }
    
    .running-text-item {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
}

@media (max-width: 568px) {
    .running-text-track {
        gap: 24px;
        animation-duration: 30s;
    }
    
    .running-text-item {
        font-size: 0.8rem;
        padding: 5px 14px;
    }
    
    .running-text-item::before {
        margin-right: 8px;
        font-size: 0.4rem;
    }
}





/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Ensure images stay within bounds */
    transform-origin: center center;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.service-card:hover .service-icon::after {
    opacity: 0.2;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.95) contrast(1.05);
    transform-origin: center center;
    max-width: 100%;
    max-height: 100%;
}

.service-card:hover .service-icon img {
    filter: brightness(1.05) contrast(1.1);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.3;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid transparent;
    /* Ensure image stays within bounds */
    transform-origin: center center;
    background: var(--accent-gradient);
    padding: 4px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: var(--transition);
    transform-origin: center center;
    max-width: 100%;
    max-height: 100%;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Solutions Section */
.solutions-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.solutions-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.accordion-item.active::before {
    transform: scaleY(1);
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    transform: translateX(5px);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    position: relative;
}

.accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    width: calc(100% - 4rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.accordion-item.active .accordion-header::after {
    opacity: 0;
}

.accordion-header:hover {
    transform: translateX(5px);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content {
    padding: 0 2rem;
}

.accordion-content p {
    padding: 1.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.accordion-content ul {
    padding: 0 0 1.5rem 2rem;
    color: var(--text-light);
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

/* Expertise Section */
.expertise-section {
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
    z-index: 0;
}

.expertise-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 1;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.expertise-section .container {
    position: relative;
    z-index: 1;
}

.expertise-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.expertise-item h3 {
    color: var(--primary-color);
}

.expertise-item p {
    color: var(--text-light);
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(40px);
    transition: var(--transition);
    transform: translate(50%, -50%);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.expertise-item:hover::before {
    opacity: 0.2;
    transform: translate(30%, -30%);
}

.expertise-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Approach Section */
.approach-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.9) 100%);
    z-index: 0;
}

.approach-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.2;
    z-index: 1;
}

.approach-section .container {
    position: relative;
    z-index: 1;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.approach-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
    transform: scale(0);
}

.approach-step:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.approach-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.approach-step:hover .step-number {
    transform: scale(1.2) rotate(5deg);
}

.approach-step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Resources Section */
.resources-section {
    position: relative;
    overflow: hidden;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.resource-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 16px;
    border-top: 4px solid transparent;
    background-image: linear-gradient(white, white), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.resource-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    /* Ensure images stay within bounds */
    transform-origin: center center;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform-origin: center center;
    max-width: 100%;
    max-height: 100%;
}

.resource-card:hover .resource-image img {
    transform: scale(1.1);
}

.resource-card > h3,
.resource-card > p {
    padding: 0 2rem;
}

.resource-card > h3 {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.resource-card > p {
    padding-bottom: 2rem;
}

.resource-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.resource-card:hover::after {
    width: 100%;
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.92) 0%, rgba(226, 232, 240, 0.88) 100%);
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(100px);
    z-index: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-item a:hover {
    color: #2563eb;
    transform: translateX(5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.contact-form:focus-within::before {
    opacity: 0.1;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    background-image: linear-gradient(white, white), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.form-group:focus-within::after {
    width: 100%;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a {
    position: relative;
    transition: var(--transition);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Consent Banner - Google Consent Mode v2 */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    z-index: 10000;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    display: none;
    border-top: 2px solid rgba(59, 130, 246, 0.3);
    animation: slideUp 0.4s ease-out;
}

.cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-consent-header h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.cookie-consent-header p {
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cookie-consent-link {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.cookie-consent-link a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-consent-link a:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

/* Cookie Preferences Panel */
.cookie-preferences-panel {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Cookie Buttons */
.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-link {
    background: transparent;
    color: var(--white);
    text-decoration: underline;
    padding: 0.875rem 1rem;
}

.cookie-btn-link:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        padding: 1.5rem;
    }
    
    .cookie-consent-header h3 {
        font-size: 1.25rem;
    }
    
    .cookie-consent-header p {
        font-size: 0.9rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-preferences-panel {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(30px, -30px) rotate(90deg); 
    }
    50% { 
        transform: translate(-20px, 20px) rotate(180deg); 
    }
    75% { 
        transform: translate(20px, 30px) rotate(270deg); 
    }
}

/* Decorative Lines */
.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

/* Additional decorative elements */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50% 0 0 0;
    opacity: 0;
    transition: var(--transition);
    transform: translate(50%, 50%);
}

.service-card:hover::after {
    opacity: 0.1;
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section Tablet */
    .hero-section {
        min-height: 600px;
        height: 100vh;
    }

    .hero-content-wrapper {
        padding: 60px 24px 100px;
        height: 100%;
    }

    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .title-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-feature {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .running-text-container {
        padding: 14px 0;
    }
    
    .running-text-item {
        font-size: 0.85rem;
        padding: 6px 18px;
    }


    .decorative-circle {
        display: none;
    }

    .decorative-line {
        display: none;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .expertise-grid,
    .approach-content,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 568px) {
    .hero-section {
        min-height: 500px;
        height: 100vh;
    }

    .hero-content-wrapper {
        padding: 40px 16px 80px;
        height: 100%;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .title-line {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .running-text-container {
        padding: 10px 0;
    }
    
    .running-text-item {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .running-text-container {
        padding: 8px 0;
    }
    
    .running-text-item {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    /* Disable fixed background on mobile */
    .expertise-section,
    .approach-section,
    .contact-section {
        background-attachment: scroll;
    }

    section {
        padding: 3rem 0;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 2rem 0;
    min-height: 70vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policy-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-content a {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.thanks-content a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}


