:root {
    --bg-dark: #0a0b10; /* Deep charcoal/black */
    --color-primary: #dfff00; /* Vibrant lime/yellow */
    --color-primary-hover: #c4e600;
    --color-accent: #ff4b2b; /* Vibrant fiery orange/red for modern energetic look */
    --color-electric: #0ea5e9; /* Deep electric blue */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --page-bg: var(--bg-dark);
    --panel-dark: rgba(10, 11, 16, 0.6);
    --btn-dark: rgba(10, 11, 16, 0.95);
}


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

html {
    scroll-behavior: smooth;
    background-color: var(--page-bg);
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

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

.text-gradient {
    background: linear-gradient(90deg, var(--text-main) 0%, var(--text-muted) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted) !important; }
.text-dark { color: var(--bg-dark) !important; }
.text-sm { font-size: 0.875rem !important; }

.bg-primary { background-color: var(--color-primary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }
.p-0 { padding: 0 !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.w-full { width: 100% !important; }
.justify-center { justify-content: center !important; }

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Ambient Backgrounds */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-blue {
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-electric) 0%, transparent 60%);
}

.glow-yellow {
    bottom: -30%;
    left: -20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(223, 255, 0, 0.15) 0%, transparent 60%);
    animation-delay: -5s;
}

.glow-blue-secondary {
    top: 30%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 60%);
    animation-delay: -10s;
}

.glow-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter 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;
    mix-blend-mode: overlay;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.2); }
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel-dark {
    background: var(--panel-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.glass-card:hover::before {
    left: 200%;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

/* New Modern Buttons (Pill + Circle) */
.btn-pill, .btn-pill-primary {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
}

.btn-pill .btn-text {
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    color: var(--text-main);
    background: transparent;
    transition: var(--transition);
}

.btn-pill .btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1.25rem;
    transition: var(--transition);
}

.btn-pill:hover .btn-text {
    color: var(--color-primary);
}

.btn-pill:hover .btn-icon {
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(223, 255, 0, 0.5);
}

/* Primary btn-pill */
.btn-pill-primary .btn-text {
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.125rem;
    height: 56px;
    display: flex;
    align-items: center;
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}

.btn-pill-primary .btn-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-primary-hover);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.btn-pill-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(223, 255, 0, 0.3);
}

.btn-pill-primary:hover .btn-icon {
    transform: rotate(45deg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 1.5rem;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 9999px; /* Pill */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-logo {
    height: 120px; /* Increased from 90px */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15)) drop-shadow(0 0 15px rgba(223, 255, 0, 0.2));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 160px; /* Increased from 120px */
}

.nav-links {
    display: flex;
    gap: 3rem; /* Increased gap to balance larger text */
}

.nav-links a {
    color: var(--text-muted);
    font-size: 1.15rem; /* Increased from 0.95rem */
    font-weight: 600;   /* Increased from 500 */
    position: relative;
    transition: var(--transition); /* Add smooth transition for hover */
}

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

.nav-action {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.glass-card-translucent {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}

.glass-badge {
    background: rgba(223, 255, 0, 0.1);
    border: 1px solid rgba(223, 255, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Static Hero Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3; /* Subtle background opacity */
}

.video-overlay, .services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--page-bg) 0%,
        transparent 20%,
        transparent 80%,
        var(--page-bg) 100%
    );
}

.services-overlay {
    /* Slightly harsher fade so cards remain perfectly legible */
    background: linear-gradient(
        to bottom,
        var(--page-bg) 5%,
        var(--panel-dark) 20%,
        var(--panel-dark) 80%,
        var(--page-bg) 95%
    );
}

.hero-graphics {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* The Angled Shape Background */
.abstract-shape {
    position: absolute;
    width: 80%;
    height: 100%;
    right: 0;
    transform: scale(0.85);
    transform-origin: center right;
}

.shape-inner {
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff7b00 100%);
    border-radius: 40px;
    transform: skew(-15deg) rotate(5deg);
    position: absolute;
    top: 10%;
    right: -10%;
    box-shadow: 0 0 60px rgba(255, 75, 43, 0.3);
    overflow: hidden;
}

.shape-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), transparent 50%);
    transform: rotate(30deg);
}

.hero-portrait {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 130%;
    height: 130%;
    object-fit: cover; /* Keeps image proportions nice */
    object-position: top center;
    /* Reverses the skew(-15deg) rotate(5deg) of the parent */
    transform: rotate(-5deg) skewX(15deg);
    z-index: 5;
    /* Blend mode so if it's not perfectly transparent, it matches the premium aesthetic and interacts with the orange gradient. Normal blend mode is generally best but we can add a slight opacity. */
    opacity: 0.95;
}

.shape-outline {
    width: 90%;
    height: 90%;
    border: 2px solid var(--color-primary);
    border-radius: 40px;
    transform: skew(-15deg) translate(-20px, 40px);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}


/* Services */
.glass-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px; /* Slightly taller for breathing room */
    gap: 1.5rem;
    margin-top: 2rem;
}

.bento-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(223, 255, 0, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(223, 255, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(223, 255, 0, 0.02);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card > :not(.bento-bg-image):not(.bento-bg-overlay):not(.bento-graphic):not(.bento-arrow) {
    position: relative;
    z-index: 3; /* Keep content above the radial gradient and overlays */
}

/* Background Image and Overlay */
.bento-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 85%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 85%);
}

.bento-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(10, 11, 16, 0.98) 0%, rgba(10, 11, 16, 0.5) 50%, rgba(10, 11, 16, 0.1) 100%);
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-bg-image {
    transform: scale(1.08); /* Slow luxurious zoom */
}

.bento-card:hover .bento-bg-overlay {
    background: linear-gradient(to top, rgba(10, 11, 16, 0.98) 0%, rgba(10, 11, 16, 0.6) 50%, rgba(10, 11, 16, 0.4) 100%);
}

/* Special formatting for Compliance Card image so it's not hidden by text */
.compliance-card .bento-bg-image {
    object-fit: contain;
    width: 60%;
    height: 60%;
    top: 1.5rem;
    left: auto;
    right: 1.5rem;
    bottom: auto;
    z-index: 2; /* Sit above the dark overlay so it is bright and clearly visible */
    opacity: 0.85; /* Slight fade to match UI */
    border-radius: 8px; /* Smooth corners if it's a raw image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Pop out effect */
    -webkit-mask-image: none;
    mask-image: none;
}

.compliance-card:hover .bento-bg-image {
    transform: scale(1.15) rotate(2deg) translateY(-5px);
    opacity: 1;
}
.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(223, 255, 0, 0.2);
    color: var(--bg-dark); /* Ensure any text icons are dark against primary color */
}

.bento-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 700;
}

.bento-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.bento-cell-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
}

.bento-cell-large .bento-content h3 {
    font-size: 2.25rem;
}

.bento-cell-large .bento-content p {
    font-size: 1.15rem;
    max-width: 85%;
}

.bento-cell-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-cell-wide .bento-content h3 {
    font-size: 1.75rem;
}

.bento-cell-standard {
    grid-column: span 1;
    grid-row: span 1;
}

/* Graphics and Arrows */
.bento-graphic {
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.04;
    font-size: 12rem;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0; /* behind everything */
}

.bento-card:hover .bento-graphic {
    opacity: 0.08;
    transform: scale(1.15) rotate(10deg);
}

.bento-arrow {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s ease;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .bento-cell-large {
        grid-column: span 2;
        grid-row: span 1; /* revert to wide-behavior on tablet */
    }
    .bento-cell-large .bento-content h3 {
        font-size: 1.75rem;
    }
    .bento-cell-large .bento-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-cell-large, .bento-cell-wide, .bento-cell-standard {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-arrow {
        display: none; /* Hide on mobile to simplify layout */
    }
    .bento-card {
        padding: 2rem;
        min-height: 220px;
    }
}

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

.stars {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.glow-border {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-info {
    padding: 4rem;
}

.icon-glass {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    margin-right: 1.25rem;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-form-container {
    padding: 4rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(223, 255, 0, 0.1);
}

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

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.8rem;
}

.glass-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.glass-form select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

/* Footer */
.glass-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 0 2rem;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

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

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; }

.hover-glow {
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.hover-glow:hover {
    color: var(--color-primary) !important;
    text-shadow: 0 0 10px rgba(223, 255, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 5rem;
    }
    
    .hero-text { text-align: center; }
    
    .hero-actions {
        justify-content: center;
    }
    
    .abstract-shape {
        position: relative;
        width: 440px;
        height: 600px;
        right: auto;
        opacity: 0.8;
        transform: scale(0.65);
        transform-origin: center;
    }

    .hero-graphics {
        height: 450px;
        overflow: hidden;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-action .btn-pill { display: none; }
    
    .mobile-menu-toggle { display: flex; }
    
    .nav-container { border-radius: 16px; padding: 1rem; }
    
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    
    .contact-info, .contact-form-container { padding: 2rem; }
    
    .abstract-shape { transform: scale(0.45); }
    .hero-graphics { height: 300px; }
}

/* =========================================
   Magic UI Animations and Components
   ========================================= */

/* Magic UI Aura Text */
.aura-text {
    background: linear-gradient(
        to right,
        var(--text-main) 10%,
        var(--color-primary) 30%,
        var(--color-accent) 50%,
        var(--color-electric) 70%,
        var(--text-main) 90%
    );
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aura-shine 6s linear infinite;
}

@keyframes aura-shine {
    to { background-position: 200% center; }
}

/* Magic UI Shimmer Button */
.magic-shimmer-btn {
    position: relative;
    display: inline-flex;
    padding: 2px; /* Border thickness for the shimmer effect */
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(223, 255, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.magic-shimmer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(223, 255, 0, 0.3);
}

.magic-shimmer-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    padding-bottom: 200%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent 0 280deg, var(--color-primary) 360deg);
    animation: spin-shimmer 2.5s linear infinite;
    z-index: 0;
}

.magic-shimmer-btn .btn-content {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: var(--btn-dark); /* Background matching theme */
    border-radius: 9999px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.magic-shimmer-btn.btn-lg .btn-content {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.magic-shimmer-btn .btn-icon {
    background-color: var(--color-primary);
    color: var(--bg-dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
}

.magic-shimmer-btn.btn-lg .btn-icon {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
}

.magic-shimmer-btn:hover .btn-icon {
    transform: rotate(45deg);
    background-color: var(--text-main);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.magic-shimmer-btn .shimmer-overlay {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: magic-slide 2.5s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes spin-shimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes magic-slide {
    100% { transform: translateX(100%); }
}
