/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    --color-primary: #0A2540;
    --color-accent: #F97316;
    --color-bg-light: #F9FAFB;
    --color-bg-dark: #0F172A;
    --color-white: #FFFFFF;
    --color-text-dark: #1F2937;
    --color-text-gray: #6B7280;
    --color-text-light: #9CA3AF;
    --color-border: #E5E7EB;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* ===========================
   Glassmorphism Cards
   =========================== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ===========================
   Container
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

/* ===========================
   Particles Background
   =========================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-primary);
}

.logo-image {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.4);
}

.btn-nav-cta:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, #0E1A2B 0%, var(--color-primary) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.8) 100%);
    animation: gradientPulse 10s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* ===========================
   Trust Badges
   =========================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 6px 20px 0 rgba(249, 115, 22, 0.45);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.btn-pulse {
    animation: pulse 12s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    90%,
    100% {
        transform: scale(1);
    }

    95% {
        transform: scale(1.05);
    }
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ===========================
   Scroll Indicator
   =========================== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    border-left: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    transform: rotate(-45deg);
    opacity: 0.8;
}

/* ===========================
   Capabilities Carousel
   =========================== */
.capabilities {
    padding: 6rem 0;
    background: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

.carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow: hidden;
}

.capability-card {
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.capability-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent), #fb923c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.capability-icon svg {
    width: 32px;
    height: 32px;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
    color: var(--color-accent);
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--color-accent);
    width: 32px;
    border-radius: 6px;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 6rem 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: var(--color-white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-accent), #fb923c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 6rem 0;
    background: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-gray);
}

.core-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.value-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.value-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.value-item span {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.founder-highlight {
    padding: 2.5rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.founder-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-accent);
    box-shadow: var(--shadow-xl);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-highlight h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1rem;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

.founder-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 600;
    word-break: break-all;
}

.founder-email:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.founder-email svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===========================
   Team Section
   =========================== */
.team {
    padding: 6rem 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.team .section-title {
    color: var(--color-white);
}

.team .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    padding: 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.08);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent), #fb923c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.member-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 600;
}

.member-email:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.member-email svg {
    width: 16px;
    height: 16px;
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-us {
    padding: 6rem 0;
    background: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    padding: 2.5rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.metrics-band {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 2.5rem;
    background: rgba(249, 115, 22, 0.05);
    border: 2px dashed rgba(249, 115, 22, 0.3);
    border-radius: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.metric-label {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

/* ===========================
   Careers Section
   =========================== */
.careers {
    padding: 6rem 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.careers .section-title {
    color: var(--color-white);
}

.careers .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.job-listings h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.job-item {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

.job-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), #fb923c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.job-icon svg {
    width: 24px;
    height: 24px;
}

.job-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.apply-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.apply-info h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.apply-info p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.apply-info a {
    color: var(--color-accent);
    text-decoration: underline;
}

.apply-info a:hover {
    color: #fb923c;
}

.apply-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 6rem 0;
    background: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition-smooth);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    padding: 2rem;
}

.contact-detail h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.email-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateX(5px);
}

.email-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-links {
    padding: 2rem;
}

.social-links h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--color-accent);
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--color-primary);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-left,
.footer-center,
.footer-right {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-center {
    text-align: center;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-right a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.footer-right a:hover {
    color: var(--color-accent);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .carousel-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .founder-highlight {
        position: static;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 78px;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
        align-items: flex-start;
        gap: 1.5rem;
    }

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

    .btn-nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .carousel-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .carousel-wrapper {
        padding: 0 1rem;
    }

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

    .metrics-band {
        gap: 2rem;
    }

    .apply-actions {
        flex-direction: column;
    }
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}