/* ================================
   ULTRA-MODERN BLACK & WHITE THEME
   ================================ */

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-dark: #1a1a1a;
    --color-gray: #333333;
    --color-gray-light: #666666;
    --color-gray-lighter: #999999;
    --color-gray-lightest: #e0e0e0;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-gray);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    padding: 1.5rem 0;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white) !important;
    letter-spacing: 1px;
}

.brand-text {
    position: relative;
}

.brand-accent {
    color: var(--color-gray-lighter);
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0f0f0f 75%, #000000 100%);
    color: var(--color-white);
    overflow: hidden;
    min-height: 100vh;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--color-white);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text-animated {
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 25%, #ffffff 50%, #d0d0d0 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    max-width: 1000px;
    margin: 3rem auto 3rem;
}

.hero-stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.hero-stat-item .stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hero-stat-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    margin: 0 auto 10px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 20% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ================================
   BUTTONS
   ================================ */

.btn-primary {
    background: var(--color-white);
    color: var(--color-black) !important;
    border: 2px solid var(--color-white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary {
    background: var(--color-white);
    color: var(--color-black) !important;
    border: 2px solid var(--color-white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--color-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white) !important;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.btn-hero-outline:hover {
    background: var(--color-white);
    color: var(--color-black) !important;
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--color-white);
    color: var(--color-white) !important;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-black) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-black) !important;
    border: 2px solid var(--color-white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-light:hover {
    background: var(--color-black);
    color: var(--color-white) !important;
    border-color: var(--color-white);
    transform: translateY(-3px);
}

/* ================================
   BACKGROUND COLORS
   ================================ */

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

/* ================================
   SECTIONS
   ================================ */

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    max-width: 700px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-black) 0%, var(--color-gray-light) 100%);
    margin: 1rem 0;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-light);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: var(--color-gray);
}

.feature-list i {
    font-size: 1.3rem;
    color: var(--color-black);
    margin-right: 1rem;
}

.about-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
}

.image-placeholder {
    color: var(--color-gray-light);
}

/* ================================
   PROBLEM SECTION
   ================================ */

.problem-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.problem-icon {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.problem-card h4 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--color-gray-lightest);
    margin: 0;
    line-height: 1.7;
}

/* ================================
   SOLUTION SECTION
   ================================ */

.solution-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    height: 100%;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon {
    transform: rotate(360deg) scale(1.1);
}

.solution-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--color-gray-light);
    margin: 0;
    line-height: 1.7;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */

.how-it-works-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-smooth);
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--font-heading);
    line-height: 1;
}

.step-icon {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.step-card h5 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: var(--color-gray-lightest);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   FEATURES SECTION
   ================================ */

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    border-color: var(--color-black);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-box-content h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-box-content p {
    color: var(--color-gray-light);
    margin: 0;
}

/* ================================
   TEAM SECTION
   ================================ */

.team-section {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.team-card h4 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--color-gray-lighter);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-desc {
    color: var(--color-gray-lightest);
    margin: 0;
    font-size: 0.95rem;
}

/* ================================
   MARKET SECTION
   ================================ */

.market-card {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.market-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--color-black);
}

.market-label {
    font-size: 1rem;
    color: var(--color-gray-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.market-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.market-card p {
    color: var(--color-gray-lightest);
    margin: 0;
    font-size: 0.95rem;
}

.market-highlights {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.market-highlights h4 {
    font-size: 1.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.highlight-item i {
    font-size: 1.3rem;
    color: var(--color-black);
}

.highlight-item span {
    color: var(--color-gray);
    font-size: 1rem;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form select {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--color-gray-dark);
    color: var(--color-white);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    display: block;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--color-black);
    color: var(--color-gray-lighter);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 0.5rem 0;
}

.footer-links a {
    color: var(--color-gray-lighter);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1199px) {
    .step-card {
        min-height: 300px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

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

    .hero-stat-item h3 {
        font-size: 1.75rem;
    }

    .step-card {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    .hero-stat-item {
        padding: 1.5rem 1rem;
    }

    .hero-stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-stat-item p {
        font-size: 0.75rem;
    }

    .step-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step-card h5 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .hero-stats {
        margin: 2rem auto;
    }

    .hero-stat-item {
        padding: 1.25rem 0.75rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-info-item {
        padding: 1rem 0;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ================================
   SMOOTH SCROLL
   ================================ */

html {
    scroll-behavior: smooth;
}

/* ================================
   SCROLLBAR STYLING
   ================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-lightest);
}

::-webkit-scrollbar-thumb {
    background: var(--color-black);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray);
}
