
/* ========================================
   Table of Contents:
   1. CSS Variables & Reset
   2. Typography
   3. Layout & Container
   4. Header & Navigation (Sticky)
   5. Floating Elements
   6. Buttons
   7. Hero Section (Centered)
   8. Slideshow
   9. Partners Strip
   10. About Section
   11. Services Section
   12. Contact Section
   13. Footer
   14. Policy Pages (Cookies & Privacy)
   15. Modals
   16. Cookie Popup
   17. Loader & Progress
   18. Animations
   19. Media Queries (Mobile First)
   ======================================== */

/* ========================================
   1. CSS Variables & Reset
   ======================================== */
:root {
    /* Primary Colors - Logo Blue */
    --primary: #2a4bff;
    --primary-dark: #1a3ae0;
    --primary-light: #4f6eff;
    --primary-soft: #eef2ff;
    
    /* Accent Color - Used Sparingly */
    --accent: #ff7403;
    --accent-dark: #e56600;
    
    /* Neutral Colors */
    --white: #ffffff;
    --dark: #0a0a12;
    --dark-surface: #12121c;
    --dark-card: #1a1a28;
    
    /* Grayscale */
    --gray-50: #f8faff;
    --gray-100: #f0f2f9;
    --gray-200: #e5e7f0;
    --gray-300: #d1d5e0;
    --gray-400: #9ca3b5;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-dark: #2d3748;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Font Sizes - Mobile First */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    
    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 3rem;     /* 48px */
    --spacing-2xl: 4rem;    /* 64px */
    --spacing-3xl: 6rem;    /* 96px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px 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.15);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.25);
    
    /* Z-index */
    --z-negative: -1;
    --z-normal: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-modal: 1000;
    --z-toast: 10000;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--text-base);
    position: relative;
}

/* ========================================
   2. Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Gradient Text */
.gradient-text {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   3. Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    position: relative;
    z-index: var(--z-normal);
}

/* Section Headers - Centered */
.section-header-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-xs);
    background: var(--primary-soft);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(42, 75, 255, 0.2);
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: var(--spacing-sm) auto 0;
    border-radius: var(--radius-full);
}

/* ========================================
   4. Header & Navigation (Sticky)
   ======================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 75, 255, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.sticky {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-xl);
    font-weight: 800;
    font-family: var(--font-secondary);
    color: var(--gray-900);
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo-name {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-name span {
    color: var(--primary);
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: var(--z-sticky);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    gap: var(--spacing-sm);
}

.nav-menu.active .nav-link {
    display: block;
    padding: var(--spacing-xs) 0;
}

/* ========================================
   5. Floating Elements
   ======================================== */
.floating-tech-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    opacity: 0.08;
    transform: rotate(45deg);
    animation: float-diamond 20s infinite alternate;
}

.floating-diamond:nth-child(1) {
    top: 8%;
    right: 10%;
    width: 80px;
    height: 80px;
    opacity: 0.06;
}

.floating-diamond:nth-child(2) {
    bottom: 15%;
    left: 20%;
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

.floating-diamond:nth-child(3) {
    top: 40%;
    right: 30%;
    width: 120px;
    height: 120px;
    opacity: 0.04;
}

.floating-diamond:nth-child(4) {
    top: 70%;
    left: 10%;
    width: 60px;
    height: 60px;
    opacity: 0.08;
}

.floating-diamond:nth-child(5) {
    bottom: 30%;
    right: 15%;
    width: 90px;
    height: 90px;
    opacity: 0.05;
}

@keyframes float-diamond {
    0% {
        transform: rotate(45deg) translate(0, 0);
    }
    100% {
        transform: rotate(45deg) translate(30px, 30px);
    }
}

/* ========================================
   6. Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: 40px 12px 40px 12px;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: var(--text-xs);
    transition: transform 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-xs);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   7. Hero Section (Centered)
   ======================================== */
.hero {
    padding: var(--spacing-xl) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--text-3xl);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

/* ========================================
   8. Slideshow
   ======================================== */
.hero-slideshow {
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: 60px 20px 60px 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    width: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    border-radius: 40px 10px 40px 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
}

.slide-primary {
    background: linear-gradient(135deg, var(--primary-dark), #1a2a6c);
}

.slide-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.slide-dark {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
}

.slide-mixed {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.slide-content i {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
}

.slide-content h3 {
    font-size: var(--text-xl);
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    font-size: var(--text-sm);
}

.slide-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: var(--white);
    color: var(--primary);
}

/* Slideshow Navigation */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: var(--text-sm);
}

.slide-arrow:hover {
    background: var(--white);
    color: var(--primary);
}

.slide-arrow.prev {
    left: 10px;
}

.slide-arrow.next {
    right: 10px;
}

.slideshow-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-sm);
}

.nav-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    width: 25px;
    border-radius: var(--radius-full);
}

/* ========================================
   9. Partners Strip
   ======================================== */
.partners {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
}

.partner-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--text-lg);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.partner-item i {
    font-size: var(--text-2xl);
    color: var(--primary);
}

.partner-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   10. About Section
   ======================================== */
.about-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.about-lead {
    font-size: var(--text-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    color: var(--gray-700);
}

.about-highlight {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xl);
    font-size: var(--text-xl);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Vision Card */
.vision-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 50px 15px 50px 15px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.vision-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.vision-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.vision-card p {
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
}

.vision-tagline {
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: var(--spacing-md);
    color: var(--gray-800);
    font-weight: 500;
}

/* Kickstart Card */
.kickstart-card {
    background: linear-gradient(135deg, var(--primary-soft), var(--white));
    padding: var(--spacing-lg);
    border-radius: 50px 15px 50px 15px;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-md);
}

.kickstart-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.kickstart-card p {
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
}

.kickstart-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    color: var(--gray-800);
    font-size: var(--text-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary);
    font-size: var(--text-sm);
}

.kickstart-note {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-top: var(--spacing-md);
    border: 1px solid var(--border-light);
}

.kickstart-note i {
    color: var(--primary);
    font-size: var(--text-xl);
}

.kickstart-note p {
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.value-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    margin: 0;
}

/* ========================================
   11. Services Section
   ======================================== */
.services-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.service-showcase-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 30px 60px 30px 60px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-showcase-card:hover .service-showcase-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(5deg) scale(1.05);
}

.service-showcase-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    border-radius: 30% 70% 30% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.service-showcase-content {
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.service-showcase-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-900);
}

.service-showcase-card p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary);
    border-radius: 30px 6px 30px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
    text-decoration: none;
    position: relative;
    z-index: 5;
}

.read-more-btn i {
    font-size: var(--text-xs);
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 75, 255, 0.2);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.service-showcase-card .read-more-btn {
    pointer-events: auto;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 60px 15px 60px 15px;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    color: var(--white);
    margin-top: var(--spacing-xl);
}

.services-cta h3 {
    color: var(--white);
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-xs);
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-size: var(--text-base);
}

.services-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.services-cta .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ========================================
   12. Contact Section
   ======================================== */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    background: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: 60px 15px 60px 15px;
    border: 1px solid var(--border-light);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-soft);
    border-radius: 30% 70% 30% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text span {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-text a,
.contact-text p {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.4;
}

.contact-text a:hover {
    color: var(--primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    font-size: var(--text-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 40px;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.form-group i {
    position: absolute;
    left: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: var(--text-sm);
    pointer-events: none;
}

.form-group textarea ~ i {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    border: 2px solid var(--border-light);
    border-radius: 30px 6px 30px 6px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--gray-900);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    padding-right: 2rem;
}

.form-group textarea {
    padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 75, 255, 0.1);
}

.form-group input:focus ~ i,
.form-group select:focus ~ i,
.form-group textarea:focus ~ i {
    color: var(--primary-dark);
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.checkbox input {
    width: auto;
    margin: 0;
    accent-color: var(--primary);
}

.checkbox label {
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* Form Status */
.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   13. Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    color: var(--gray-400);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--gray-400);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--gray-500);
    font-size: var(--text-sm);
}

.footer-bottom p {
    margin: 0;
}

/* ========================================
   14. Policy Pages (Cookies & Privacy)
   ======================================== */
.page-header {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-soft), var(--white));
    text-align: center;
}

.page-header-content h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-900);
}

.page-header-content p {
    color: var(--gray-600);
    font-size: var(--text-base);
    margin: 0;
}

.policy-content {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: var(--spacing-2xl);
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: var(--text-2xl);
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--primary-soft);
}

.policy-section h3 {
    font-size: var(--text-xl);
    color: var(--gray-800);
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.policy-section p {
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.policy-section ul,
.policy-section ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
    color: var(--gray-700);
}

.policy-section li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.policy-section a {
    color: var(--primary);
    text-decoration: underline;
}

.policy-section a:hover {
    color: var(--primary-dark);
}

/* Cookie Table */
.cookie-table {
    margin: var(--spacing-lg) 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row.header {
    background: var(--primary-soft);
    font-weight: 700;
    color: var(--gray-900);
}

.contact-details {
    background: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    margin: var(--spacing-md) 0;
}

.contact-details p {
    margin-bottom: var(--spacing-xs);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.policy-footer {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    font-style: italic;
    color: var(--gray-600);
}

/* ========================================
   15. Modals
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    max-width: 500px;
    width: 90%;
    padding: var(--spacing-xl);
    border-radius: 70px 15px 70px 15px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid var(--primary);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-xl);
    color: var(--gray-700);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.modal-content p {
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.modal-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.modal-content li {
    margin-bottom: var(--spacing-xs);
    color: var(--gray-700);
}

/* ========================================
   16. Cookie Popup
   ======================================== */
.cookie-popup {
    position: fixed;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    max-width: 500px;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 50px 12px 50px 12px;
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-toast);
    transform: translateY(200%);
    transition: transform 0.4s ease;
    border-left: 6px solid var(--primary);
    margin: 0 auto;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content p {
    margin-bottom: var(--spacing-md);
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.reject {
    background: var(--gray-200);
    color: var(--gray-800);
}

.cookie-btn.reject:hover {
    background: var(--gray-300);
}

/* ========================================
   17. Loader & Progress
   ======================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-toast);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

.loader-text {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    width: 0%;
    z-index: var(--z-sticky);
    transition: width 0.1s ease;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 40% 60% 40% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: var(--z-sticky);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: #20b859;
    color: var(--white);
}

/* ========================================
   18. Media Queries - Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
    /* Typography */
    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
    h3 { font-size: var(--text-3xl); }
    
    .section-title {
        font-size: var(--text-4xl);
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    /* Navigation */
    .navbar {
        height: 80px;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    /* Logo */
    .logo-img {
        height: 50px;
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-slideshow {
        padding: var(--spacing-md);
    }
    
    .slideshow-container {
        aspect-ratio: 16/9;
    }
    
    .slide-content i {
        font-size: 3.5rem;
    }
    
    .slide-content h3 {
        font-size: var(--text-2xl);
    }
    
    /* About Grid */
    .about-grid {
        flex-direction: row;
    }
    
    .kickstart-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services */
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact */
    .contact-wrapper {
        flex-direction: row;
        padding: var(--spacing-xl);
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-form-wrapper {
        flex: 1.5;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Cookie Table */
    .cookie-row {
        grid-template-columns: 1fr 2fr 1fr;
        gap: var(--spacing-md);
    }
    
    /* Cookie Popup */
    .cookie-popup {
        left: var(--spacing-lg);
        right: auto;
        margin: 0;
    }
}

/* ========================================
   19. Media Queries - Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    /* Hero */
    .hero-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        flex: 1;
    }
    
    .hero-description {
        margin-left: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-slideshow {
        flex: 1;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Services */
    .services-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    /* Policy Pages */
    .policy-section h2 {
        font-size: var(--text-3xl);
    }
}

/* ========================================
   20. Media Queries - Large Desktop (1280px+)
   ======================================== */
@media (min-width: 1280px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-description {
        font-size: var(--text-xl);
    }
    
    .section-title {
        font-size: var(--text-5xl);
    }
}

/* ========================================
   21. Print Styles
   ======================================== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .cookie-popup,
    .floating-tech-elements,
    .hero-buttons,
    .btn,
    .modal-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ========================================
   22. Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   23. Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}