:root {
    --bg-color: #050505;
    /* Obsidian Black */
    --card-bg: rgba(18, 18, 18, 0.7);
    /* Glassy Dark */
    --text-color: #a1a1aa;
    /* Muted Zinc */
    --heading-color: #f4f4f5;
    /* Zinc White */
    --primary-color: #d32f2f;
    /* Deeper Crimson to match new logo */
    --secondary-color: #ffffff;
    --accent-color: #ff5252;
    /* Vibrant highlight red */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

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

/* Subtle Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

.page-wrapper {
    animation: pageFade 1s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.highlight {
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

.h2-elegant {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: 0.02em;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--text-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    background: rgba(5, 5, 5, 0.8);
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    line-height: 1;
    transition: var(--transition);
}

.logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(211, 47, 47, 0.2));
    transition: var(--transition);
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-title .highlight-ltd {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    text-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.6));
    transform: scale(1.05);
}

.logo:hover .logo-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}


.footer .logo-image {
    height: 50px;
}

.footer .logo-title {
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.btn-contact {
    background: var(--heading-color);
    color: var(--bg-color);
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    border: none;
}

.btn-contact:hover,
.btn-contact.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
}

#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
}

.data-stream-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="20" fill="rgba(255,255,255,0.03)" font-family="monospace" font-size="10">10</text><text x="50" y="60" fill="rgba(255,255,255,0.03)" font-family="monospace" font-size="10">01</text></svg>');
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

/* Ambient Background Animation */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: var(--bg-color);
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #d32f2f 0%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #0a3a6b 0%, transparent 70%);
    /* Deep Blue contrast */
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #6a1b9a 0%, transparent 70%);
    /* Deep Purple */
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes floatOrb {

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

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Custom Cursor Removed */
/* body {
    cursor: none;
} */

/* .cursor-dot,
.cursor-outline {
    display: none;
} */

/* Holographic Card Effect */
.card,
.about-card,
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before,
.about-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.card:hover::before,
.about-card:hover::before,
.service-card:hover::before {
    animation: shine 0.75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Glitch Typography Effect */
.glitch {
    position: relative;
    color: var(--heading-color);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    15% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 80px, 0);
    }

    100% {
        clip: rect(70px, 9999px, 30px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 30px, 0);
    }

    5% {
        clip: rect(50px, 9999px, 10px, 0);
    }

    10% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    15% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    20% {
        clip: rect(40px, 9999px, 50px, 0);
    }

    100% {
        clip: rect(90px, 9999px, 10px, 0);
    }
}

/* Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.hero-content {
    z-index: 1;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(227, 18, 43, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(227, 18, 43, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--heading-color);
}

/* Section Common */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.line {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 24px auto;
}


/* Bento Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Split Section Utility */
.split-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.split-icon {
    grid-column: span 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 47, 47, 0.05);
    border-radius: 32px;
    padding: 60px;
    border: 1px solid var(--border-color);
}

.split-content {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    grid-column: span 4;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    background: rgba(20, 20, 20, 0.8);
}

/* Trusted By Ticker */
.trusted-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.trusted-label {
    text-align: center;
    color: var(--text-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 700;
    opacity: 0.7;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.ticker-move {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0.5;
    font-weight: 600;
}

.ticker-item:hover h3 {
    color: var(--heading-color);
    opacity: 1;
    text-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
        /* -50% of width minus half the gap */
    }
}

/* Footer */
.footer {
    padding: 100px 0 30px;
    background: #020202;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-color);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--heading-color);
}

/* Modal Structure */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid var(--border-color);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.modal-title {
    margin-bottom: 20px;
    padding-right: 40px;
}

.modal-body {
    color: var(--text-color);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* About & Services specific */
.about-grid,
.grid-4 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.about-card,
.service-card {
    grid-column: span 4;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.grid-4 .service-card {
    grid-column: span 3;
}

.about-card:hover,
.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    background: rgba(20, 20, 20, 0.8);
}

.about-card i,
.service-card i,
.icon-large {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: block;
}

/* Contact Page specific */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

.contact-info {
    grid-column: span 5;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.contact-form {
    grid-column: span 7;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.form-control {
    width: 100%;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--heading-color);
    font-family: var(--font-main);
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(227, 18, 43, 0.3);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-card,
    .service-card,
    .card {
        grid-column: span 6 !important;
    }

    .grid-4 .service-card {
        grid-column: span 6 !important;
    }

    .contact-info,
    .contact-form {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .about-grid,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    .about-card,
    .service-card,
    .card {
        grid-column: auto !important;
        width: 100% !important;
        padding: 30px 20px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 6px auto;
        background-color: var(--heading-color);
        transition: var(--transition);
    }

    .navbar {
        height: 80px;
    }

    .logo-image {
        height: 45px;
    }

    .logo {
        gap: 10px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        height: calc(100vh - 80px);
        width: 100%;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
        display: flex;
        backdrop-filter: blur(20px);
    }

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

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .ticker-item h3 {
        font-size: 1rem;
    }

    .ticker-move {
        gap: 40px;
    }

    .nav-link {
        font-size: 1.2rem;
        color: var(--heading-color);
    }

    .btn-contact {
        background: var(--primary-color);
        color: #fff;
        margin-top: 20px;
    }

    /* Mobile Overrides for Split Sections */
    .split-section {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 80px !important;
        gap: 20px !important;
    }

    .split-section.reverse-mobile {
        flex-direction: column-reverse !important;
    }

    .split-icon,
    .split-content {
        grid-column: auto !important;
        width: 100% !important;
    }

    .split-icon {
        padding: 40px !important;
    }

    .split-icon i {
        font-size: 5rem !important;
    }

    .split-content h2 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .split-content p {
        font-size: 1rem !important;
    }

    .service-list {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    /* Contact Form Refinements */
    .contact-form {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 80px 20px 60px !important;
        /* Increased top padding to clear navbar and ensure hierarchy */
        margin-top: 60px !important;
        gap: 20px !important;
    }

    .contact-form h3 {
        font-size: 1.8rem !important;
        order: 1 !important;
        /* Explicit ordering to force correct sequence on all devices */
    }

    .contact-form p {
        font-size: 1.1rem !important;
        order: 2 !important;
        margin-bottom: 10px !important;
    }

    .contact-form .btn {
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 18px 20px !important;
        order: 3 !important;
        border-radius: 100px !important;
    }

    /* Disable heavy animations on mobile */
    .glitch::before,
    .glitch::after {
        display: none;
    }
}