:root {
    --primary: #5F43EE;
    --secondary: #4CC9F0;
    --accent-pink: #FF006E;
    --accent-orange: #FFBE0B;
    --accent-green: #3AFAAC;
    --text-main: #1A1C2E;
    --text-muted: #64748b;
    --bg-main: #F4F7FF;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Senior Designer Liquid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--bg-main);
}

/* Cosmic Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(95, 67, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 201, 240, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(255, 190, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(58, 250, 172, 0.12) 0%, transparent 40%);
    filter: blur(80px);
    animation: liquidMesh 20s infinite alternate ease-in-out;
}

@keyframes liquidMesh {
    0% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.1) translate(2%, 3%); }
    66% { transform: scale(0.9) translate(-2%, 5%); }
    100% { transform: scale(1.05) translate(1%, -2%); }
}

/* Floating Organic Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -5%;
    right: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    top: 20%;
    right: 30%;
    opacity: 0.1;
    animation-delay: -7s;
}

.blob-5 {
    width: 350px;
    height: 350px;
    background: var(--accent-orange);
    bottom: 20%;
    left: 10%;
    opacity: 0.08;
    animation-delay: -12s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: translate(5%, 10%) rotate(90deg) scale(1.1); border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
    100% { transform: translate(-5%, -5%) rotate(180deg) scale(0.9); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.container {
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2.2rem;
}

.main-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Buttons with Energetic Animations */
.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(95, 67, 238, 0.2);
    animation: btnGlow 3s infinite alternate;
}

@keyframes btnGlow {
    0% { box-shadow: 0 10px 20px rgba(95, 67, 238, 0.2); }
    100% { box-shadow: 0 15px 40px rgba(95, 67, 238, 0.5); }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 50px rgba(95, 67, 238, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: #fff;
    animation: pulseScale 2s infinite ease-in-out;
}

@keyframes pulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-secondary:hover {
    transform: translateY(-5px) rotate(3deg) scale(1.1) !important;
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.4);
}

/* Text Animations */
h1, h2, h3 {
    transition: var(--transition);
}

.highlight {
    color: var(--accent-pink);
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: var(--transition);
}

.highlight:hover {
    transform: skew(-5deg) scale(1.1);
    color: var(--accent-orange);
}

.page-hero h1 {
    animation: textFloat 3s infinite ease-in-out;
}

@keyframes textFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Page Hero (Shared) */
.page-hero {
    padding: 10rem 0 6rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Language Toggle Button */
.btn-lang {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-lang:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

/* Rest of sections... */

/* God Mode Hero Fix */
.hero-god {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 32rem 0 10rem; /* Pushed down to sit perfectly on the fading mist of the images */
}

.god-title {
    font-size: 5.8rem; /* Reduced size as requested */
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-transform: uppercase;
}

.hero-god-content {
    max-width: 1000px;
    z-index: 10;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.text-glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(95, 67, 238, 0.3));
}

.god-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.btn-god {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 900;
    letter-spacing: 3px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: btnPulseGod 3s infinite;
    display: inline-block;
}

@keyframes btnPulseGod {
    0% { transform: scale(1); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    50% { transform: scale(1.05); box-shadow: 0 30px 60px rgba(95, 67, 238, 0.2); }
    100% { transform: scale(1); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
}

/* Specific Georgian Typography adjustment */
.lang-ka {
    letter-spacing: 0; 
}

.scroll-indicator-fixed {
    position: absolute;
    bottom: 3rem; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    z-index: 20;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% { opacity: 0; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 15px); }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}

/* Rest of sections... */

/* Wave & Background Layers (Senior Designer Silk Look) */
.wave-container {
    width: 100%;
    height: 240px; /* Taller for more elegant curves */
    margin-top: -160px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    line-height: 0;
}

.wave-container.flip {
    transform: rotateX(180deg);
}

.wave-svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: var(--transition);
    animation: waveFloat 10s infinite alternate ease-in-out;
}

@keyframes waveFloat {
    0% { transform: translateY(0) scaleX(1); }
    100% { transform: translateY(15px) scaleX(1.05); }
}

/* Layered Section Look */
.section {
    padding: 10rem 0;
    position: relative;
}

.bg-alt {
    background: var(--bg-main);
    position: relative;
}

.bg-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 67, 238, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

/* Immersive Section Styles (God Mode) */
.section-immersive {
    padding: 15rem 0;
    position: relative;
    overflow: hidden;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.immersive-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10rem;
    align-items: center;
}

.immersive-content {
    position: relative;
    z-index: 5;
}

.section-tag {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 5px;
    margin-bottom: 2rem;
    display: block;
}

.god-title-sub {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
}

.god-desc {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.4;
}

.georgian-bg-text {
    position: absolute;
    top: -20%;
    left: -10%;
    font-size: 25rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    animation: textSlide 60s linear infinite;
}

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

.immersive-visual {
    position: relative;
}

.god-visual-placeholder {
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.god-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.god-img:hover {
    transform: scale(1.02);
}

.visual-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: orbPulse 5s infinite alternate ease-in-out;
}

/* Comparison Section (God Mode) */
.bg-dark-soft {
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(50px);
}

.comparison-god-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comp-box {
    background: rgba(255, 255, 255, 0.4);
    padding: 4rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.highlight-box {
    background: rgba(95, 67, 238, 0.05);
    border: 2px solid var(--primary);
    box-shadow: 0 30px 60px rgba(95, 67, 238, 0.1);
    transform: scale(1.05);
}

.comp-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: var(--primary);
    letter-spacing: -1px;
}

.comp-list, .method-list {
    list-style: none;
}

.comp-list li, .method-list li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

.comp-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4d4d;
    font-weight: 900;
}

.highlight-box .comp-list li::before {
    content: '✓';
    color: #3afaac;
}

.method-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

.immersive-grid.reverse {
    direction: rtl;
}

.immersive-grid.reverse .immersive-content {
    direction: ltr;
}

.accent-orange {
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
}
    text-align: center;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(10deg);
    background: var(--white);
    box-shadow: 
        0 30px 60px rgba(95, 67, 238, 0.15),
        0 0 40px rgba(95, 67, 238, 0.1);
    border-color: var(--primary);
}

.card-image-placeholder {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Neon Wave Accent */
.wave-svg path:first-child {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bg-alt {
    background: rgba(95, 67, 238, 0.03);
}

.learn-more {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.5rem;
    display: block;
    transition: var(--transition);
}

.learn-more:hover {
    transform: translateX(10px);
}

/* CTA Section */
.cta-section {
    padding-bottom: 12rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #4361EE 100%);
    padding: 6rem 4rem;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(95, 67, 238, 0.2);
}

.cta-card h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 6rem 0;
    background: var(--primary);
    color: #fff;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-right: 2.5rem;
    font-weight: 600;
}

.footer-links a:hover { color: #fff; }

/* Logical Scroll Animations (Entry & Exit) */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: 
        opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

/* Entry Animation (Active) */
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Exit Animation (When leaving through the top) */
.reveal.exit {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

/* Contact Page Specific Styles */
.contact-page {
    background: #0f172a;
    color: #fff;
    overflow-x: hidden;
}

.contact-bg-curves {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
}

.contact-bg-curves .curve-1 {
    position: absolute;
    top: -10%; left: -20%;
    width: 80vw; height: 80vw;
    background: radial-gradient(circle, rgba(16,185,129,0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-bg-curves .curve-2 {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 90vw; height: 90vw;
    background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.contact-bg-curves .curve-3 {
    position: absolute;
    top: 20%; right: 20%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(56,189,248,0.2) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.glass-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.05);
}

.glass-form .form-group {
    margin-bottom: 1.5rem;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
    width: 100%;
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(56,189,248,0.5);
    box-shadow: 0 0 20px rgba(56,189,248,0.2);
}

.glass-form select option {
    background: #0f172a;
    color: #fff;
}

.btn-submit-rocket {
    width: 100%;
    padding: 1.2rem;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}

.btn-submit-rocket:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.6);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.support-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.support-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards-grid { grid-template-columns: 1fr; }
}

/* God Mode Footer */
.god-footer {
    position: relative;
    padding: 6rem 0 0 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 10;
}

.god-footer::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%; width: 140%; height: 200%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 105, 180, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(173, 255, 47, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 20%, rgba(138, 43, 226, 0.6) 0%, transparent 40%);
    filter: blur(80px);
    z-index: -2;
    animation: footerFluidAnim 20s infinite alternate ease-in-out;
}

.god-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.5); /* Semi-transparent dark layer for contrast */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: -1;
}

@keyframes footerFluidAnim {
    0% { transform: rotate(0deg) scale(1) translate(0, 0); }
    33% { transform: rotate(3deg) scale(1.1) translate(2%, 5%); }
    66% { transform: rotate(-3deg) scale(0.9) translate(-2%, -2%); }
    100% { transform: rotate(0deg) scale(1) translate(0, 0); }
}

.god-footer-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--secondary);
    opacity: 0.5;
}

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

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

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(95, 67, 238, 0.4);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 40px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-link:hover {
    color: #fff;
    transform: translateX(15px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-item .c-icon {
    font-size: 1.2rem;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}
.contact-item:hover .c-icon {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.2);
}

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

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* Absolute Top Background Image Loop */
.hero-bg-visual-loop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    z-index: 0;
    overflow: hidden;
    /* Precise Math Fade: Images start at 120px and end at 670px.
       The fade starts at 450px and hits 0 opacity exactly at 670px to eliminate any hard edge. */
    mask-image: linear-gradient(to bottom, black 0px, black 450px, transparent 670px, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0px, black 450px, transparent 670px, transparent 100%);
}

.hero-bg-marquee-container {
    width: 100%;
    height: 100%;
    position: relative;
    white-space: nowrap;
}

.hero-bg-marquee-track {
    display: inline-flex;
    gap: 2rem;
    height: 100%;
    align-items: flex-start;
    padding-top: 120px; /* Pushed down more to the center */
    animation: bgMarqueeScroll 40s linear infinite;
}

.hero-bg-marquee-track img {
    height: 550px; /* Made much larger */
    width: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    opacity: 0.9;
}

@keyframes bgMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

@media (max-width: 768px) {
    .hero-god {
        padding: 18rem 0 8rem;
    }
    .hero-bg-visual-loop {
        height: 500px;
    }
    .hero-bg-marquee-track img {
        height: 250px;
    }
}

/* =========================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {
    /* Container Adjustments */
    .container-full {
        padding: 0 1.5rem !important;
    }
    .section-immersive {
        padding: 6rem 0 !important;
    }
    
    /* Layouts to Single Column */
    .immersive-grid, .comparison-god-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }
    .immersive-grid.reverse .immersive-content {
        order: -1; /* Text comes before image on mobile */
    }
    
    /* Massive Typography Fixes */
    .god-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        letter-spacing: -1px !important;
        word-break: break-word;
    }
    .god-title-sub {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        letter-spacing: -1px !important;
        word-break: break-word;
    }
    .god-desc {
        font-size: 1.1rem !important;
        margin: 0 auto 2rem auto !important;
    }
    .georgian-bg-text {
        font-size: 6rem !important;
        top: 10% !important;
        left: 0 !important;
    }
    
    /* Images and Visuals */
    .immersive-visual img, .god-img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    .exam-banner-container.reveal {
        margin-top: 4rem !important;
    }
    
    /* Comparison Boxes */
    .comp-box {
        padding: 2rem !important;
        text-align: left;
    }
    .comp-title {
        font-size: 1.5rem !important;
    }
    
    /* Marquee / Loop Fixes */
    .hero-bg-visual-loop {
        height: 400px !important;
    }
    .hero-bg-marquee-track img {
        height: 200px !important;
    }
    
    /* Navbar Adjustments */
    .navbar .container {
        justify-content: space-between;
    }
    .logo img {
        height: 50px !important;
    }
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        color: #fff !important;
    }
    .nav-links .btn-lang {
        color: #fff !important;
        border-color: #fff !important;
    }
}
