/* Core Variables Based on MD */
:root {
    /* Primary Colors */
    --clr-charcoal: #17191B;
    --clr-deep-charcoal: #0F1113;
    --clr-orange: #F56618;
    --clr-stone: #A98B68;
    --clr-white: #FFFFFF;
    --clr-offwhite: #F7F6F3;

    /* Supporting Colors */
    --clr-light-stone: #E8E2D9;
    --clr-soft-grey: #D7D5D1;
    --clr-text-grey: #6B6A67;
    --clr-dark-grey: #333538;

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Spacing */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-96: 96px;
    --space-120: 120px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--clr-offwhite);
    color: var(--clr-dark-grey);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-24);
}

.section {
    padding: var(--space-120) 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-32);
}

.bg-offwhite {
    background-color: var(--clr-white);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    color: var(--clr-charcoal);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.125rem;
    color: var(--clr-text-grey);
    max-width: 600px;
    margin-bottom: var(--space-32);
}

.text-center .section-text {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) var(--space-32);
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-orange);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: #d15613;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-charcoal);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--clr-charcoal);
    color: var(--clr-charcoal);
}

.btn-outline-dark:hover {
    background-color: var(--clr-charcoal);
    color: var(--clr-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-24) 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: var(--space-16) 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.header.scrolled .logo-text,
.header.scrolled .nav-link {
    color: var(--clr-charcoal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Image Logo Swap on Scroll */
.logo {
    display: block;
}

.logo-scrolled {
    display: none;
}

.header.scrolled .logo-default {
    display: none;
}

.header.scrolled .logo-scrolled {
    display: block;
}

.nav-list {
    display: flex;
    gap: 36px; /* Gap between 32px and 38px */
}

.nav-link {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 15px; /* Between 15px and 16px */
    letter-spacing: -0.01em;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-orange) !important;
}

.header-action {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--clr-white);
    margin-bottom: 5px;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--clr-charcoal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    padding-top: var(--space-96);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 19, 0.7) 0%, rgba(15, 17, 19, 0.2) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    padding: 0 5%; /* Adjusts spacing from left edge */
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--clr-stone);
    margin-bottom: var(--space-32);
}

.hero-title {
    font-size: 3.75rem;
    color: var(--clr-white);
    margin-bottom: var(--space-32);
    letter-spacing: -0.03em;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--clr-soft-grey);
    max-width: 500px;
    margin-bottom: var(--space-64);
}

.hero-buttons {
    display: flex;
    gap: var(--space-16);
}

/* Metrics Section */
.metrics {
    background-color: var(--clr-deep-charcoal);
    padding: var(--space-64) 0;
    position: relative;
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: var(--space-48) 0;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: var(--space-24);
    padding: 0 var(--space-32);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.metric-item:first-child {
    border-left: none;
    padding-left: 0;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(245, 102, 24, 0.1);
    color: var(--clr-orange);
    transition: var(--transition);
    flex-shrink: 0;
}

.metric-item:hover .metric-icon {
    background-color: var(--clr-orange);
    color: var(--clr-white);
}

.metric-icon svg {
    width: 24px;
    height: 24px;
}

.metric-number {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--clr-stone);
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
    line-height: 1.1;
    white-space: nowrap;
}

.metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-soft-grey);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--clr-light-stone);
    background-image: url('../Images/about.png');
    background-size: cover;
    background-position: center;
}

/* ===== Companies Section ===== */
#companies-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f8 40%, #f5f6fa 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.text-accent {
    color: var(--clr-orange);
}

/* Decorative Dots */
.companies-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
}

.companies-dots-right {
    top: 60px;
    right: 60px;
}

.companies-dots-left {
    bottom: 80px;
    left: 40px;
}

/* Card Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: var(--space-64);
}

/* Card Base */
.company-card {
    display: flex;
    flex-direction: column;
    padding: 40px 32px 36px;
    border-radius: 24px;
    background-color: var(--clr-white);
    border: 2px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(245, 102, 24, 0.2);
}

/* Featured Card */
.company-card-featured {
    border-color: rgba(245, 102, 24, 0.25);
    box-shadow: 0 6px 30px rgba(245, 102, 24, 0.06);
}

/* Logo */
.company-card-logo {
    height: 72px;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-32);
}

.company-card-logo img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
}

/* Placeholder for coming soon */
.company-card-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 2px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.15);
}

/* Name */
.company-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    margin-bottom: 6px;
}

/* Tag / Category */
.company-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-orange);
    margin-bottom: var(--space-16);
}

/* Description */
.company-card-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--clr-text-grey);
    margin-bottom: var(--space-32);
    flex-grow: 1;
}

/* Link */
.company-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    margin-top: auto;
    transition: color 0.3s ease;
}

.company-card-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.company-card:hover .company-card-link {
    color: var(--clr-orange);
}

.company-card:hover .company-card-link span {
    transform: translateX(5px);
}

/* Coming Soon Card */
.company-card-soon {
    border-style: dashed;
    border-color: rgba(0,0,0,0.08);
    background-color: rgba(255,255,255,0.5);
}

.company-card-soon .company-card-name {
    color: rgba(0,0,0,0.3);
}

.company-card-soon .company-card-tag {
    color: rgba(0,0,0,0.2);
}

.company-card-soon .company-card-desc {
    color: rgba(0,0,0,0.2);
}

.company-card-link-soon {
    color: rgba(0,0,0,0.2) !important;
}

/* What We Do */
.what-we-do {
    background-color: var(--clr-charcoal);
    color: var(--clr-white);
}

.what-we-do .section-title {
    color: var(--clr-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-64);
    margin-top: var(--space-64);
}

.feature-card {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-24);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-top-color: var(--clr-orange);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--clr-orange);
    background-color: rgba(249, 115, 22, 0.1); /* Soft orange background */
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--clr-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

.feature-title {
    color: var(--clr-stone);
    font-size: 1.5rem;
}

.feature-text {
    color: var(--clr-soft-grey);
}

/* ===== Premium CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background-color: var(--clr-white);
}

.cta-card {
    background: linear-gradient(135deg, #1a1c23 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 64px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle glowing orb inside the CTA card */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 95, 239, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-action {
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: var(--clr-orange);
    color: #fff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
    color: #fff;
}

/* Responsive adjustments for CTA */
@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 48px 40px;
        gap: 32px;
    }
    .cta-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 576px) {
    .cta-card {
        padding: 40px 24px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-text {
        font-size: 1rem;
    }
}

/* ===== 404 Error Page ===== */
.error-section {
    padding: 80px 0 100px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-charcoal);
}

.error-image-wrapper {
    margin-bottom: 40px;
}

.error-img {
    max-width: 100%;
    width: 650px;
    height: auto;
    object-fit: contain;
}

.error-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.error-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

.error-action .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.error-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .error-img { width: 450px; }
    .error-title { font-size: 2rem; }
}

/* ===== Coming Soon Page ===== */
.cs-main {
    padding: 60px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cs-content {
    flex: 1;
    max-width: 550px;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 24px;
    border: 1px solid #f1f5f9;
}
.cs-badge .dot {
    width: 8px;
    height: 8px;
    background: #5d5fef;
    border-radius: 50%;
    margin-right: 10px;
}

.cs-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--clr-charcoal);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cs-title .highlight {
    color: #5d5fef;
}

.cs-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cs-countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.cd-box {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    text-align: center;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cd-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #5d5fef;
    line-height: 1;
    margin-bottom: 8px;
}

.cd-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.1em;
}

.cs-notify-form {
    display: flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    border: 1px solid #f1f5f9;
}

.cs-notify-form .input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #94a3b8;
}

.cs-notify-form input {
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: var(--clr-charcoal);
    background: transparent;
}

.cs-notify-form input::placeholder {
    color: #94a3b8;
}

.cs-notify-btn {
    background: #5d5fef;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(93, 95, 239, 0.3);
}

.cs-notify-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(93, 95, 239, 0.4);
}

.cs-privacy {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cs-img {
    max-width: 100%;
    width: 750px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.08));
}

.cs-features {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    border-top: 1px solid rgba(93, 95, 239, 0.1);
    padding-top: 40px;
}

.cs-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cs-feature-icon {
    width: 50px;
    height: 50px;
    background: #f8f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #5d5fef;
    box-shadow: 0 4px 15px rgba(93, 95, 239, 0.1);
    border: 1px solid rgba(93, 95, 239, 0.2);
}

.cs-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    margin-bottom: 4px;
}

.cs-feature-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    .cs-container { flex-direction: column-reverse; text-align: center; }
    .cs-image-wrapper { justify-content: center; margin-bottom: 40px; }
    .cs-countdown { justify-content: center; }
    .cs-features { flex-direction: column; align-items: center; gap: 30px; margin-top: 60px; }
    .cs-badge { margin: 0 auto 24px; }
    .cs-notify-form { max-width: 100%; }
    .cs-title { font-size: 3.5rem; }
}

@media (max-width: 576px) {
    .cs-title { font-size: 2.5rem; }
    .cs-countdown { gap: 10px; flex-wrap: wrap; }
    .cd-box { min-width: 75px; padding: 12px; }
    .cd-num { font-size: 1.8rem; }
    .cs-notify-form { flex-direction: column; padding: 16px; }
    .cs-notify-form .input-wrapper { margin-bottom: 16px; padding: 0; }
}

/* ===== Contact Options Modal ===== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
}

.contact-modal-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-modal-close:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    padding-right: 30px;
}

.modal-text {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-options-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-option-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.contact-option-card:hover {
    border-color: var(--clr-orange);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.email-icon { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.phone-icon { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.form-icon  { background-color: rgba(249, 115, 22, 0.1); color: var(--clr-orange); }

.contact-option-card:hover .option-icon {
    background-color: var(--clr-orange);
    color: #ffffff;
}

.option-details h4 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.option-details span {
    color: #64748b;
    font-size: 0.85rem;
}

.option-arrow {
    margin-left: auto;
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    opacity: 0;
}

.contact-option-card:hover .option-arrow {
    color: var(--clr-orange);
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 576px) {
    .contact-modal-content {
        padding: 32px 24px;
        width: 95%;
    }
}

/* ===== New Light Elegant Footer ===== */
.footer {
    background-color: var(--clr-white);
    color: var(--clr-text-grey);
    padding-top: 0; /* Removed padding to let top strip fill it */
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Top Strip */
.footer-top-strip {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 70px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 60px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
}

.footer-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-strip-left {
    max-width: 420px;
}

.footer-strip-left .logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-strip-left .logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--clr-charcoal) 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--clr-text-grey);
    margin-bottom: 28px;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.06);
    background-color: #ffffff;
    color: var(--clr-charcoal);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--clr-orange);
    background-color: var(--clr-orange);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(245, 102, 24, 0.2);
    transform: translateY(-2px);
}

/* Newsletter */
.footer-newsletter h5 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.footer-newsletter p {
    font-size: 0.95rem;
    color: var(--clr-text-grey);
    margin-bottom: 20px;
    max-width: 320px;
    line-height: 1.5;
}

.newsletter-form {
    position: relative;
    max-width: 340px;
}

.newsletter-form input {
    width: 100%;
    padding: 16px 56px 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    font-size: 0.95rem;
    color: var(--clr-charcoal);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    box-shadow: 0 4px 20px rgba(245, 102, 24, 0.15);
    border-color: rgba(245, 102, 24, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    width: 48px;
    border: none;
    background-color: var(--clr-orange);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d15613;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(245, 102, 24, 0.3);
}

/* Main Columns Grid (5 Columns) */
.footer-main-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--clr-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--clr-text-grey);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-orange);
}

.footer-view-all {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-orange);
    transition: opacity 0.3s ease;
}

.footer-view-all:hover {
    opacity: 0.8;
}

/* Contact Column */
.footer-contact-col .contact-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(245, 102, 24, 0.1);
    color: var(--clr-orange);
    flex-shrink: 0;
}

.footer-contact-list a, .footer-contact-list address {
    font-size: 0.9rem;
    color: var(--clr-charcoal);
    font-style: normal;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 6px;
}

.footer-contact-list a:hover {
    color: var(--clr-orange);
}

/* Companies Banner Section */
.footer-companies-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.banner-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-heading {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--clr-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.banner-logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.banner-company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-company img {
    height: 32px;
    object-fit: contain;
}

.banner-company-text {
    display: flex;
    flex-direction: column;
}

.banner-company-text .name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-charcoal);
}

.banner-company-text .tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--clr-orange);
    letter-spacing: 0.05em;
}

/* Join Card */
.join-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    max-width: 340px;
}

.join-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(245, 102, 24, 0.1);
    color: var(--clr-orange);
    flex-shrink: 0;
}

.join-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    margin-bottom: 4px;
}

.join-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--clr-text-grey);
    margin-bottom: 12px;
}

.join-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-orange);
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--clr-text-grey);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    color: var(--clr-text-grey);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--clr-charcoal);
}

.footer-legal .separator {
    color: rgba(0,0,0,0.2);
}

.footer-made-with .heart {
    color: var(--clr-orange);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: var(--space-48);
    }
    .metric-item:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
    
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--clr-charcoal);
        padding: var(--space-96) var(--space-32);
        transition: var(--transition);
        z-index: 999;
    }
    .nav.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
    }
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    .hero-title {
        font-size: 2.5rem; /* Will keep 2.5rem for mobile or maybe 2.25rem */
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .header-action .btn {
        display: none;
    }
    .metrics-container {
        grid-template-columns: 1fr;
        row-gap: var(--space-32);
    }
    .metric-item {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    .companies-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-16);
        text-align: center;
    }
}
