/* ==========================================================================
   Base Styles & Variables (Light Modern Theme)
   ========================================================================== */
:root {
    /* Colors derived from the logo */
    --primary-color: #00c6ff; /* Cyan */
    --secondary-color: #ff0844; /* Magenta/Pink */
    --accent-color: #8b5cf6; /* Purple */
    --gradient-main: linear-gradient(135deg, #00c6ff 0%, #8b5cf6 50%, #ff0844 100%);
    --gradient-text: linear-gradient(to right, #00c6ff, #8b5cf6, #ff0844);
    
    /* Light Theme Backgrounds */
    --bg-color: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: #ffffff;
    
    /* Text Colors */
    --text-color: #334155;
    --text-heading: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    
    /* Borders & Shadows */
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }
.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* ==========================================================================
   Layout & Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-surface {
    background-color: var(--bg-surface);
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Soft Card Effect */
.soft-card {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.soft-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-heading);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-light {
    background: var(--white);
    color: var(--accent-color);
}

.btn-light:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--accent-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn i {
    margin-right: 0.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.site-logo {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-heading);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section - Unorthodox Editorial
   ========================================================================== */
.hero-editorial {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-surface);
    overflow: hidden;
    padding-top: 90px;
    border-bottom: 1px solid var(--border-color);
}

.hero-marquee {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 150vw;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.marquee-content {
    font-size: 15rem;
    font-weight: 800;
    font-family: var(--font-heading);
    white-space: nowrap;
    color: var(--text-heading);
    animation: scrollMarquee 30s linear infinite;
}

.marquee-content .separator {
    color: var(--primary-color);
    margin: 0 2rem;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-editorial-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-label {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.editorial-title {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: var(--text-heading);
}

.line-1, .line-2, .line-3 {
    display: block;
}

.line-2 {
    padding-left: 10%;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-heading);
}

.line-3 {
    padding-left: 5%;
}

.editorial-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    border-top: 2px solid var(--border-color);
    padding-top: 2rem;
}

.editorial-bottom p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    max-width: 450px;
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-heading);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 1px solid var(--text-heading);
}

.btn-editorial:hover {
    background: transparent;
    color: var(--text-heading);
}

/* Abstract Visual */
.hero-editorial-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-composition {
    position: relative;
    width: 100%;
    height: 100%;
}

.geo-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid var(--text-heading);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.geo-square {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--gradient-main);
    top: 50%;
    left: 50%;
    transform: translate(-30%, -30%) rotate(15deg);
    mix-blend-mode: multiply;
    animation: float-slow 8s infinite alternate ease-in-out;
}

.geo-image-placeholder {
    position: absolute;
    width: 280px;
    height: 380px;
    background: var(--white);
    border: 1px solid var(--border-color);
    top: 50%;
    left: 50%;
    transform: translate(-70%, -60%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.geo-header {
    height: 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
    background: var(--bg-surface);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.geo-body {
    flex: 1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 198, 255, 0.05) 10px,
        rgba(0, 198, 255, 0.05) 20px
    );
    position: relative;
}

.geo-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: scan 3s infinite linear;
}

.geo-tag {
    position: absolute;
    bottom: 20%;
    right: -20%;
    background: var(--text-heading);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.geo-tag .pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

@keyframes float-slow {
    0% { transform: translate(-30%, -30%) rotate(15deg); }
    100% { transform: translate(-35%, -25%) rotate(10deg); }
}

@keyframes pulse-dot {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* ==========================================================================
   Tech Stack Section
   ========================================================================== */
.tech-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tech-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tech-tag i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.tech-tag:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 3.5rem 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-color);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-surface);
    color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-main);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-list {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px var(--border-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.process-card:hover .step-number {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-graphic-light {
    position: relative;
    width: 100%;
    height: 500px;
}

.image-card {
    position: absolute;
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-img {
    width: 80%;
    height: 80%;
    top: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
}

.center-icon {
    font-size: 6rem;
    color: var(--text-heading);
    z-index: 2;
}

.sub-img {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: 0;
    background: var(--white);
    border: 8px solid var(--bg-surface);
}

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

.stat-circle strong {
    display: block;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-circle span {
    font-weight: 600;
    color: var(--text-light);
}

.experience-badge {
    position: absolute;
    top: 50px;
    left: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 4s infinite alternate ease-in-out;
}

.experience-badge i {
    font-size: 2rem;
    color: #ffbd2e;
}

.experience-badge div {
    display: flex;
    flex-direction: column;
}

.experience-badge strong {
    color: var(--text-heading);
}

.experience-badge span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-list strong {
    display: block;
    color: var(--text-heading);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.stats-mini {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-mini strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.stat-mini span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
}

.quote-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-heading);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.client-info h4 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.client-info span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-main);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #0f172a; /* Dark Slate for contrast */
    color: #94a3b8;
    padding-top: 6rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.bg-white-logo {
    background: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
}

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

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

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-item a, .contact-item div {
    color: #94a3b8;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content, .about-content {
        order: 1;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image, .about-image {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-list li {
        text-align: left;
    }
    
    .stats-mini {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        box-shadow: var(--shadow-md);
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .header-contact {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
    
    .main-card {
        width: 100%;
        max-width: 350px;
    }
    
    .el-1, .el-2 {
        display: none; /* Hide floating elements on mobile for cleaner look */
    }
}