:root {
    /* Color Palette - Cyber Dark */
    --bg-deep: #030712;
    --bg-card: #0f172a;
    --bg-glass: rgba(15, 23, 42, 0.6);

    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #ec4899;
    --secondary-glow: rgba(236, 72, 153, 0.5);
    --accent: #06b6d4;
    --accent-gold: #f59e0b;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --gradient-main: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    --gradient-text: linear-gradient(90deg, #818cf8, #f472b6);

    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 20px rgba(99, 102, 241, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-muted);
    background-color: var(--bg-deep);
    overflow-x: hidden;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 5px;
    border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* Adjusted for Serif */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    text-transform: none;
}

h1 {
    font-size: 5rem;
}

/* ~80px */
h2 {
    font-size: 3.5rem;
}

/* ~56px */
h3 {
    font-size: 2.5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header & Navigation --- */
header {
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-neon);
}

.logo-text {
    font-family: 'PT Serif', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.cta-button {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.cta-button:hover::after {
    left: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}


/* --- Hero Section --- */
.hero {
    padding: 200px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    filter: blur(60px);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.top-rated-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 13px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-main);
}

.hero-visual {
    flex: 1;
    position: relative;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    padding: 24px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.floating-card h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.floating-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-1 {
    top: 0;
    right: 0;
    width: 220px;
    border-top: 2px solid var(--primary);
}

.card-2 {
    top: 160px;
    right: 200px;
    width: 200px;
    animation-delay: 2s;
    border-top: 2px solid var(--secondary);
}

.card-3 {
    bottom: 40px;
    right: 40px;
    width: 240px;
    animation-delay: 4s;
    border-top: 2px solid var(--accent);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* --- Live Data Section (Dark Table) --- */
.live-data-section {
    padding: 100px 0;
    background: var(--bg-deep);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 24px 18px 55px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.search-icon-input {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

.table-card {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.table-wrapper {
    overflow-x: auto;
    max-height: 600px;
}

table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #1e293b;
    color: var(--text-main);
    padding: 20px 24px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}

/* Colorful Headers adapted for Dark Mode */
thead th:nth-child(4n+1) {
    color: #818cf8;
}

thead th:nth-child(4n+2) {
    color: #34d399;
}

thead th:nth-child(4n+3) {
    color: #f472b6;
}

thead th:nth-child(4n+4) {
    color: #fbbf24;
}

tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 15px;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.loading-state,
.no-results {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.hidden {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Reviews Section --- */
.reviews-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-deep);
    overflow: hidden;
    /* Hide scrollbar */
}

.sticky-wrapper {
    /* No longer sticky */
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 60px;
    text-align: center;
}

.reviews-viewport {
    width: 100%;
    overflow-x: hidden;
    padding: 20px 0;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 40px;
    width: max-content;
    align-items: center;
    /* Auto Animation */
    animation: scroll-left 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves halfway (assuming forced duplication) */
    }
}

.review-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    width: 400px;
    flex-shrink: 0;
    opacity: 1;
    /* Always visible */
    transform: scale(1);
    filter: blur(0);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 22px;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.star {
    color: #fbbf24;
    font-size: 18px;
}

.client-info h4 {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 5px;
}

.client-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 14px;
}

.review-content {
    margin-bottom: 20px;
}

.review-quote {
    font-style: italic;
    color: #cbd5e1;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
    font-size: 15px;
}

.read-more-btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
    transition: all 0.2s ease;
}

.read-more-btn:hover {
    color: #22d3ee;
    border-bottom-color: var(--accent);
}

.review-industry {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

/* --- Services (Glass Cards) --- */
section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-glass);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-main);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}

.service-1 .service-icon {
    color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.service-2 .service-icon {
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.service-3 .service-icon {
    color: var(--accent);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.service-card p {
    color: var(--text-muted);
}

/* --- Data Points (Dark on Dark) --- */
.data-points {
    background: #0B101E;
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 80px auto;
}

.data-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.data-content {
    position: relative;
    z-index: 2;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.data-item {
    text-align: center;
}

.data-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.data-label {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Process --- */
.process-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border-light);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.step-content {
    padding-top: 15px;
}

.step-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.step-content p {
    color: var(--text-muted);
}

/* --- Tools Slider (CSS Only) --- */
.tools-slider {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tool-item {
    text-align: center;
    width: 120px;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.tool-item:hover .tool-icon {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    transform: rotate(5deg);
}

/* --- Contact --- */
.contact-section {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 80px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-deep);
    border: 1px solid var(--border-light);
    padding: 18px;
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    filter: grayscale(1) invert(1) contrast(1.2);
    /* Dark mode map */
    opacity: 0.7;
}

/* --- Footer --- */
footer {
    background: #020617;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.signature {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 991px) {

    /* --- General Layout --- */
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    /* --- Navigation --- */
    nav {
        padding: 10px 0;
    }

    .nav-links {
        display: none !important;
        /* Force hide on mobile unless active */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px 0;
        border-bottom: 2px solid var(--primary);
        gap: 10px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 20px;
        color: var(--text-main);
    }

    .mobile-menu {
        display: block !important;
        font-size: 28px;
        z-index: 1001;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    header .cta-button {
        display: none !important;
    }

    /* --- Hero Section --- */
    .hero {
        padding: 140px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        height: auto;
    }

    .floating-card {
        position: relative;
        inset: auto !important;
        margin: 0 auto;
        transform: none !important;
        animation: none !important;
        width: 100% !important;
        max-width: 340px;
        text-align: left;
    }

    /* --- Reviews --- */
    .review-card {
        width: 280px;
        padding: 20px;
    }

    .reviews-track {
        gap: 15px;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    /* --- Data Points --- */
    .data-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .data-points {
        padding: 40px 20px;
        margin: 40px 15px;
        border-radius: 24px;
    }

    .data-number {
        font-size: 36px;
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    /* --- Process --- */
    .process-line {
        left: 25px;
    }

    .process-step {
        gap: 15px;
        margin-bottom: 40px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    /* --- Contact Form --- */
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-form .cta-button {
        display: block !important;
        width: 100%;
        border-radius: 12px;
        padding: 16px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}