:root {
    --color-primary: #FFC107;
    --color-primary-dark: #FF9800;
    --color-primary-light: #FFECB3;
    --color-secondary: #0D47A1;
    --color-accent: #1565C0;
    --color-bg: #FFFFFF;
    --color-bg-light: #F8FAFC;
    --color-bg-dark: #0F172A;
    --color-text-main: #1E293B;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: all 0.2s ease;
    --transition-mid: all 0.3s ease;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --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-card: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-logo, .hero-title {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Utility */
.text-center { text-align: center; }
.text-white { color: var(--color-text-light); }
.mt-1 { margin-top: 1rem; }

/* Layout & Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem; /* Slightly tighter for mobile */
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 3rem 0; /* Reduced for mobile */
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.hidden { display: none !important; }

.bg-light { background-color: var(--color-bg-light); }
.bg-dark { background-color: var(--color-bg-dark); }

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr; /* Default mobile-first */
}

@media (min-width: 768px) {
    .grid {
        gap: 2.5rem;
    }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    background: rgba(15, 76, 129, 0.1);
    color: var(--color-primary);
}
.badge-accent {
    background: rgba(230, 57, 70, 0.1);
    color: var(--color-accent);
}
.badge-blue { background: rgba(15, 76, 129, 0.1); color: var(--color-primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-mid);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 6px -1px rgba(255, 193, 7, 0.4);
    border: none;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 193, 7, 0.5);
}

.btn-yellow {
    background: linear-gradient(135deg, #FFD54F, #FFC107, #FF9800);
    color: #422006; /* Dark brown/black for contrast */
    border: none;
    box-shadow: 0 10px 20px -5px rgba(255, 193, 7, 0.5);
    font-weight: 800;
}

.btn-yellow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(255, 152, 0, 0.5);
    color: #422006;
}

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

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-card);
}

.solid-border {
    border: 1px solid #E2E8F0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff; /* Solid white as requested */
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #ffffff;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-container {
    height: 70px;
}

.brand-logo {
    font-size: 1.85rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

/* 'tech' = yellow, 'Abel' (logo-accent) overrides to blue */
.brand-logo > span {
    color: #FFC107;
    font-weight: 900;
}

.logo-accent {
    color: #1565C0;
}

/* Nav Links Container */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

/* Base Link Style */
.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #1565C0;
    background: rgba(21, 101, 192, 0.05);
}

/* Active Link State - Premium Pill Effect */
.nav-link.active-page {
    color: white !important;
    background: linear-gradient(135deg, #1565C0, #1E88E5) !important;
    box-shadow: 0 8px 16px -4px rgba(21, 101, 192, 0.3);
    transform: translateY(-1px);
    font-weight: 800;
}

.nav-link::after {
    display: none;
}

.nav-link.active-page::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none; /* Hidden on Desktop */
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #1565C0; /* Brighter Blue for visibility */
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 5000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    font-size: 2.2rem;
    padding: 0;
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.2);
}

.mobile-toggle:hover {
    background: #0d47a1;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(21, 101, 192, 0.3);
}

.mobile-toggle.active {
    background: #ef4444; /* Red when menu is open */
    border-color: #fca5a5;
}

/* nav-btn-special oval shape */
.nav-btn-special .btn {
    border-radius: 100px !important;
    padding: 0.75rem 2rem;
}

/* Mobile Menu Logic */
@media (max-width: 1100px) {
    .mobile-toggle {
        display: flex; /* Show on Mobile */
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 1.5rem 2rem;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1100;
        overflow-y: auto;
        gap: 0.75rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
}


/* Perfect Language Picker UI */
.lang-overlay-active {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: overlayFade 0.4s ease-out;
}

.lang-modal-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 3.5rem 2.5rem;
    border-radius: 48px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    border: 1px solid rgba(255,255,255,0.4);
}

.modal-indicator {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #E2E8F0;
    border-radius: 10px;
}

.lang-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lang-option-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem;
    background: white;
    border: 1px solid #F1F5F9;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.lang-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1565C0, #1E40AF);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lang-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lang-name {
    font-weight: 800;
    color: #0F172A;
    font-size: 1.15rem;
    font-family: 'Outfit';
}

.lang-desc {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
}

.lang-option-btn ion-icon {
    font-size: 1.25rem;
    color: #CBD5E1;
    transition: transform 0.3s;
}

.lang-option-btn:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #1565C0;
    box-shadow: 0 15px 35px rgba(21, 101, 192, 0.1);
}

.lang-option-btn:hover .lang-icon {
    transform: rotate(-5deg);
}

.lang-option-btn:hover ion-icon {
    transform: translateX(5px);
    color: #1565C0;
}

@keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-modal-in {
    animation: modalScaleIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.9) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.floating-controls-container {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.floating-controls-container > * {
    pointer-events: auto;
}

.lang-switcher-fixed {
    /* Styles handled by container */
}

.lang-toggle-btn {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2); /* Soft shadow */
    cursor: pointer;
    font-weight: 800;
    color: #422006;
    border: 3px solid white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
}

.lang-toggle-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.4);
}

/* Useful Colorful Utilities */
.bg-colorful-gradient {
    background: var(--gradient-colorful);
    color: white;
}

.bg-vibrant {
    background: radial-gradient(circle at top left, rgba(26, 115, 232, 0.08) 0%, transparent 40%),
                radial-gradient(circle at bottom right, rgba(234, 67, 53, 0.08) 0%, transparent 40%),
                radial-gradient(circle at center, rgba(251, 188, 4, 0.08) 0%, transparent 40%);
    background-color: #ffffff;
}

.bg-mesh {
    background-color: #ffffff;
    background-image: radial-gradient(at 0% 0%, rgba(26, 115, 232, 0.05) 0px, transparent 50%),
                      radial-gradient(at 50% 0%, rgba(251, 188, 4, 0.05) 0px, transparent 50%),
                      radial-gradient(at 100% 0%, rgba(234, 67, 53, 0.05) 0px, transparent 50%);
}

.services-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary-light) #f1f5f9;
}

.services-horizontal::-webkit-scrollbar { height: 6px; }
.services-horizontal::-webkit-scrollbar-track { background: #f1f5f9; }
.services-horizontal::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 10px; }

.service-card-compact {
    flex: 0 0 280px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0D47A1 0%, #1A237E 100%);
    color: white;
    overflow: hidden;
    text-align: center; /* Centered for mobile */
}

@media (min-width: 992px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 6rem;
        min-height: 80vh;
        text-align: left; /* Left aligned for desktop */
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(251, 188, 4, 0.2) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(234, 67, 53, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.hero-title {
    font-size: 2.25rem; /* Smaller for mobile */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title span {
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #E2E8F0;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr; /* Stacked for mobile */
    gap: 1rem;
}

@media (min-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.stat-card {
    padding: 1.5rem;
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255,255,255,0.2);
    color: white;
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.stat-card p {
    font-size: 0.875rem;
    color: #CBD5E1;
}

/* Tracker Section */
.tracker-section {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 3rem;
}

.tracker-card {
    padding: 2rem;
    text-align: center;
}

.tracker-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.tracker-header p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.input-group input {
    padding: 1rem;
    border: 1px solid #CBD5E1;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.2);
}

.tracker-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F1F5F9;
    border-radius: var(--border-radius-sm);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-diagnosis { background: #FEF3C7; color: #D97706; }
.status-parts { background: #E0E7FF; color: #4338CA; }
.status-ready { background: #DCFCE7; color: #15803D; }

.hidden { display: none !important; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Service Cards */
.services-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-mid);
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    background: rgba(15, 76, 129, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.list-styled {
    list-style: none;
    margin-bottom: 1.5rem;
}

.list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.list-styled li ion-icon {
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Guide Cards */
.guide-grid {
    grid-template-columns: 1fr;
}

.guide-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
}

.guide-header {
    background: var(--color-primary-light);
    color: white;
    padding: 1.5rem;
}

.guide-body {
    padding: 1.5rem;
}

.brand-row {
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
}
.brand-row:last-child {
    border-bottom: none;
}

.brand-row h4 {
    color: var(--color-primary-dark);
    font-size: 1.125rem;
}

.brand-tags {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: #F1F5F9;
    color: var(--color-text-main);
    border-radius: 4px;
    font-weight: 600;
}

/* Booking Forms */
.booking-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.benefits-list li ion-icon {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.form-light {
    background: white;
    color: var(--color-text-main);
    padding: 2.5rem;
}

.form-light h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #CBD5E1;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

/* Education Cards */
.education-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .education-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.edu-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-mid);
}
.edu-card:hover { transform: translateY(-5px); }

.edu-img {
    height: 200px;
    background-color: #E2E8F0;
    position: relative;
    background-size: cover;
    background-position: center;
}
.edu-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
}
.edu-content {
    padding: 1.5rem;
}
.edu-content h3 { margin-bottom: 0.5rem; }
.edu-content p { color: var(--color-text-muted); font-size: 0.95rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; line-clamp: 3; overflow: hidden; }

/* About Us Layout */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.ceo-bio { color: var(--color-text-main); font-size: 1.125rem; margin-bottom: 2rem; border-left: 4px solid var(--color-primary); padding-left: 1.5rem; background: rgba(26, 115, 232, 0.05); }

.technicians-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tech-img { 
    transition: transform 0.5s ease;
}

.tech-card:hover .tech-img {
    transform: scale(1.1);
}

.social-impact { padding: 2.5rem; }
.impact-item {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}
.impact-item:last-child { border-bottom: none; padding-bottom: 0; }
.impact-item img {
    width: 100%; height: 160px; object-fit: cover; border-radius: var(--border-radius-sm); margin-bottom: 1rem;
}
.impact-item h4 { color: var(--color-primary-dark); }
.impact-item p { font-size: 0.95rem; color: var(--color-text-muted); }

/* Footer */
/* Premium Footer Redesign */
.footer {
    background: #0F172A; /* Midnight Slate */
    color: #94A3B8; /* Slate 400 for text */
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle background glow effect */
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand p {
    margin-top: 1.5rem;
    line-height: 1.8;
    max-width: 320px;
}

.footer-logo {
    color: white !important;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Outfit';
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .logo-accent {
    color: var(--color-primary); /* Use the Amber/Yellow as accent */
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-icon {
    font-size: 1.4rem;
    color: #F8FAFC;
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--color-primary);
    color: #0F172A;
    transform: translateY(-8px) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.2);
}

.footer-links h4, .footer-contact h4 {
    color: #F8FAFC;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Outfit';
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 10px;
}

.footer-links a {
    display: block;
    margin-bottom: 1rem;
    color: #94A3B8;
    font-weight: 500;
    transition: all 0.3s;
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact ion-icon {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.dev-shoutout a {
    color: var(--color-primary) !important;
    font-weight: 800;
    transition: opacity 0.3s;
}

.dev-shoutout a:hover {
    opacity: 0.7;
}

.alert.success {
    background: #DCFCE7;
    color: #15803D;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    text-align: center;
}

/* Tablet & Desktop Layouts (Building Up) */
@media (min-width: 768px) {
    .hero-actions { flex-direction: row; }
    .input-group { flex-direction: row; }
    .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .hero-content { flex-direction: row; justify-content: space-between; align-items: center; }
    .hero-text { flex: 1; margin-bottom: 0; }
    .hero-stats { flex-direction: column; width: 250px; }
    
    .tracker-card { padding: 3rem; }
    .input-group { max-width: 600px; }
    .input-group input { width: 100%; }
    
    .about-grid { grid-template-columns: 3fr 2fr; }
}

/* Animations & Micro-Interactions */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.fade-in {
    animation: slideDown 0.8s ease-out forwards;
}

/* Stepper Styles */
.stepper-container {
    width: 100%;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E2E8F0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 4px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-muted);
    transition: all 0.4s ease;
    margin-bottom: 1rem;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    transition: all 0.4s ease;
}

.step.active .step-icon {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

.step.active .step-label {
    color: var(--color-primary-dark);
}

.step.current .step-icon {
    border-color: var(--color-primary);
    background: white;
    color: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(15, 76, 129, 0.1);
}

.step.active::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -50%;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    z-index: -1;
}

.step:first-child::after {
    display: none;
}

@media (max-width: 600px) {
    .stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .stepper::before {
        left: 25px;
        top: 0;
        width: 4px;
        height: 100%;
    }
    .step {
        flex-direction: row;
        gap: 1.5rem;
    }
    .step::after {
        left: 25px;
        top: -100%;
        width: 4px !important;
        height: 100% !important;
    }
    .step-icon { margin-bottom: 0; }
}

/* Filter Buttons */
.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 1px solid #E2E8F0;
    background: white;
    color: var(--color-text-muted);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: white;
    color: var(--color-text-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #F1F5F9;
}

/* Language Picker UI */
#lang-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-grid {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.lang-modal {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    color: var(--color-text-main);
}

.lang-btn:hover {
    border-color: var(--color-primary);
    background: rgba(255, 193, 7, 0.05);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

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

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1; 
    transform: translateY(0);
}

/* ==========================================================================
   Partner Promotion Section - Ultra Animated Premium Design
   ========================================================================== */
.partner-promo {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    z-index: 1;
}

/* Dynamic Animated Background Layers */
.partner-promo::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 40%, rgba(21, 101, 192, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 80% 60%, rgba(255, 193, 7, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(142, 36, 170, 0.2) 0%, transparent 50%);
    z-index: -2;
    animation: fluidRotate 25s infinite linear;
    mix-blend-mode: screen;
}

.partner-promo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
    z-index: -1;
    animation: driftBackground 40s linear infinite;
}

@keyframes fluidRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes driftBackground {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

/* Floating Particles */
.promo-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.promo-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(2px);
    animation: floatUp infinite ease-in-out alternate;
}
.promo-particle:nth-child(1) { width: 10px; height: 10px; top: 80%; left: 10%; animation-duration: 4s; opacity: 0.3; }
.promo-particle:nth-child(2) { width: 15px; height: 15px; top: 60%; left: 85%; animation-duration: 5s; animation-delay: 1s; opacity: 0.4; }
.promo-particle:nth-child(3) { width: 8px; height: 8px; top: 30%; left: 70%; animation-duration: 3.5s; opacity: 0.2; }
.promo-particle:nth-child(4) { width: 20px; height: 20px; top: 90%; left: 40%; animation-duration: 6s; opacity: 0.15; filter: blur(4px); }

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.2); }
}

/* Promo Card Container */
.promo-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 25px 80px -10px rgba(0, 0, 0, 0.5), 
                inset 0 0 40px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Animated Border Glow setup */
.promo-container::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmerSwipe 4s infinite;
}

@keyframes shimmerSwipe {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    50% { left: 200%; opacity: 0; }
    100% { left: 200%; opacity: 0; }
}

.promo-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 100px -15px rgba(255, 193, 7, 0.2), 
                0 0 0 2px rgba(255, 193, 7, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Content Text Styling */
.promo-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

.promo-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Outfit', sans-serif;
    /* Animated Gradient Text */
    background: linear-gradient(to right, #FFC107, #FF9800, #4FC3F7, #FFC107);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 6s ease infinite;
}

@keyframes gradientTextFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-content p {
    font-size: 1.25rem;
    color: #E2E8F0;
    margin-bottom: 0;
    max-width: 600px;
    line-height: 1.7;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Call to Action Wrapper */
.promo-action {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

/* Supercharged Button Animation */
.btn-promo {
    position: relative;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #1E293B;
    padding: 1.6rem 3.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4), 
                0 0 0 0 rgba(255, 152, 0, 0.7);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    animation: pulseRing 2s infinite;
}

.btn-promo::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

@keyframes pulseRing {
    0% { box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4), 0 0 0 0 rgba(255, 152, 0, 0.7); }
    70% { box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0); }
    100% { box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4), 0 0 0 0 rgba(255, 152, 0, 0); }
}

.btn-promo ion-icon {
    font-size: 2rem;
    transition: transform 0.3s;
    animation: jiggleIcon 2s infinite;
}

@keyframes jiggleIcon {
    0%, 100% { transform: translateY(0); }
    10% { transform: translateY(-5px); }
    20% { transform: translateY(0); }
    30% { transform: translateY(-3px); }
    40% { transform: translateY(0); }
}

.btn-promo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 152, 0, 0.6);
    background: linear-gradient(135deg, #FF9800, #FFC107);
    color: #0F172A;
}

.btn-promo:hover ion-icon {
    transform: translateX(5px) scale(1.2);
    animation: none;
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
        gap: 3rem;
    }
    
    .promo-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .promo-content h2 {
        font-size: 2.2rem;
    }
    .btn-promo {
        width: 100%;
        justify-content: center;
        padding: 1.4rem 2rem;
    }
}
