/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --corporate-950: #020617;
    --corporate-900: #0f172a;
    --corporate-800: #1e293b;
    --accent: #2563eb;
    --gold: #fbbf24;
    --white: #f8fafc;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-600: #475569;
    --slate-800: #1e293b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: var(--corporate-950);
    color: var(--white);
    overflow-x: hidden;
    direction: rtl;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

p {
    line-height: 1.7;
    color: var(--slate-400);
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(to left, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-nav {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background-color: var(--accent);
    padding: 0 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-700);
    background-color: transparent;
    padding: 0 2rem;
    font-weight: 700;
    color: var(--slate-300);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--slate-800);
    color: white;
    border-color: var(--slate-600);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.nav-logo h1 {
    font-size: 1.25rem;
    color: white;
}

.nav-logo p {
    font-size: 0.625rem;
    color: #93c5fd;
    opacity: 0.8;
    margin-top: 0.125rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links button {
    background: none;
    border: none;
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-links button:hover {
    color: white;
}

.cta-btn {
    display: none;
    background-color: white;
    color: var(--corporate-950);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    background-color: #f0f9ff;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: var(--corporate-950);
    padding-top: 7rem;
    padding-right: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu button {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.mobile-menu .mobile-cta {
    width: 100%;
    background-color: var(--accent);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
    border: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: var(--corporate-950);
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(at 40% 20%, hsla(228,100%,74%,0.1) 0px, transparent 50%), 
                radial-gradient(at 80% 0%, hsla(189,100%,56%,0.1) 0px, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--accent);
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

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

.hero h1 {
    font-size: 2.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 3rem;
}

.features {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features i {
    color: #10b981;
}

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.visual-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 2s infinite;
    pointer-events: none;
}

.visual-floating {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 50%;
    filter: blur(24px);
    animation: bounce 2s infinite;
}

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

.visual-image {
    position: relative;
    z-index: 10;
    padding: 0.75rem;
    border-radius: 1.5rem;
    transition: transform 0.7s;
}

.visual-image:hover {
    transform: rotate(0deg);
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.floating-badge {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    background-color: var(--corporate-900);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    animation: floatUp 1.2s ease-out;
}

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

.badge-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.floating-badge p:first-of-type {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.status {
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--corporate-900);
    position: relative;
}

.section-header {
    max-width: 64rem;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-subtitle {
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-header h2 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: background-color 0.3s;
    height: 100%;
}

.feature-card:hover {
    background-color: var(--corporate-800);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background-color: #3b82f6;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background-color: var(--corporate-950);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5rem;
}

.vision, .mission {
    display: flex;
    gap: 1rem;
}

.vision-icon, .mission-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon {
    background-color: rgba(99, 102, 241, 0.1);
    color: #818cf8;
}

.mission-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.vision h3, .mission h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-value {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 800;
    direction: ltr;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: var(--slate-500);
    font-size: 0.875rem;
}

/* Compensation Section */
.compensation {
    padding: 6rem 0;
    background-color: var(--corporate-950);
    position: relative;
    overflow: hidden;
}

.comp-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.comp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1.5rem;
}

.comp-card {
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--slate-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comp-card:hover {
    background-color: rgba(15, 23, 42, 1);
    border-color: var(--slate-600);
}

.comp-card.featured {
    background: linear-gradient(to bottom, var(--corporate-800), var(--corporate-900));
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
    position: relative;
    transform: translateY(0);
}

.featured-badge {
    position: absolute;
    top: -1rem;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
    white-space: nowrap;
    z-index: 20;
}

.comp-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.comp-card .comp-icon {
    background-color: var(--slate-800);
    color: var(--slate-300);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.comp-card.featured .comp-icon {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.comp-card:last-child .comp-icon {
    background-color: rgba(76, 29, 149, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.comp-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.comp-subtitle {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.comp-card.featured .comp-subtitle {
    color: rgba(191, 219, 254, 0.7);
}

.comp-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-800);
}

.price {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
}

.currency {
    font-size: 1.25rem;
    color: var(--slate-500);
}

.comp-card.featured .currency {
    color: rgba(191, 219, 254, 0.5);
}

.price-desc {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.comp-features {
    list-style: none;
    margin-top: auto;
}

.comp-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-300);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.comp-features i {
    color: #3b82f6;
    flex-shrink: 0;
}

.comp-card.featured .comp-features li {
    color: white;
}

.comp-card.featured .comp-features i {
    background-color: rgba(59, 130, 246, 0.2);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.comp-card:last-child .comp-features i {
    color: #a78bfa;
}

/* Apply Section */
.apply {
    padding: 6rem 0;
    background-color: var(--corporate-900);
    position: relative;
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.steps-container {
    padding-top: 2rem;
}

.steps-container h2 {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .steps-container h2 {
        font-size: 2.5rem;
    }
}

.steps-line {
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    right: 1.25rem;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, transparent);
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 2.5rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--corporate-900);
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.step h4 {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

.action-card {
    position: sticky;
    top: 7rem;
    background-color: var(--corporate-800);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.7s;
    pointer-events: none;
}

.action-card:hover::before {
    opacity: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.card-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card-header p {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
    margin: 0 auto;
}

.card-phone {
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.card-phone > p {
    font-size: 0.625rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.phone-number {
    font-size: 2rem;
    color: white;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-family: ui-monospace, monospace;
    direction: ltr;
    user-select: all;
}

@media (min-width: 768px) {
    .phone-number {
        font-size: 2.25rem;
    }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background-color: #3b82f6;
    color: white;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    margin-bottom: 2rem;
    text-decoration: none;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.whatsapp-btn:hover {
    background-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-4px);
}

.whatsapp-btn i {
    font-size: 1.375rem;
}

.warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background-color: rgba(239, 68, 68, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.1);
    position: relative;
    z-index: 10;
}

.warning i {
    color: #f87171;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning p {
    font-size: 0.75rem;
    color: rgba(254, 226, 226, 0.8);
    line-height: 1.6;
    text-align: justify;
}

/* Footer */
.footer {
    background-color: var(--corporate-950);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--slate-900);
}

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

.footer-col-wide h2 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col-wide p {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: var(--slate-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    color: white;
}

.social-links a:nth-child(1):hover {
    background-color: #3b5998;
}

.social-links a:nth-child(2):hover {
    background-color: #25d366;
}

.social-links a:nth-child(3):hover {
    background-color: #ff0050;
}

.footer-col h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-900);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--slate-600);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--slate-400);
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-links, .cta-btn {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vision-mission {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
    
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .comp-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .comp-card.featured {
        transform: translateY(-1.5rem);
    }
    
    .apply-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        align-items: flex-start;
        text-align: right;
    }
    
    .hero h1 {
        font-size: 3.75rem;
    }
}