/* ==========================================
   ROOT VARIABLES & RESET
   ========================================== */

:root {
    --navy: #0A1F44;
    --dark-navy: #051229;
    --cyan: #00D9FF;
    --light-cyan: #5EEAFF;
    --gold: #FFD700;
    --dark-gold: #FFC107;
    --red: #DC143C;
    --green: #00A651;
    --yellow: #FCD116;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #CCCCCC;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', monospace;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 50%, #0d2647 100%);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* ==========================================
   3D CANVAS BACKGROUND
   ========================================== */

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

/* ==========================================
   AMBIENT CREDENTIALS FLOATING
   ========================================== */

.ambient-credentials {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.credential-particle {
    position: absolute;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    transition: var(--transition-slow);
}

.credential-particle .award-glow {
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    text-shadow: 0 0 30px var(--cyan);
}

.credential-particle.webby .award-glow {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--gold);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.logo:hover {
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.8)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    transform: scale(1.05);
}

.logo-tagline {
    display: flex;
    flex-direction: column;
}

.tagline-text {
    font-size: 0.75rem;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    position: relative;
    padding-left: 12px;
}

.tagline-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.cta-button {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.product-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.product-link:hover::before {
    left: 100%;
}

.product-link:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.product-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: var(--transition);
}

.product-link:hover .product-icon {
    transform: scale(1.1);
    stroke: var(--light-cyan);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    z-index: 10;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 3rem 2rem;
    background: radial-gradient(ellipse at center, rgba(10, 31, 68, 0.4) 0%, transparent 70%);
    backdrop-filter: blur(2px);
    border-radius: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    to {
        left: 100%;
    }
}

.flag-accent {
    font-size: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

.glitch {
    display: block;
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 217, 255, 0.5));
}

.glitch.glitch-active {
    animation: glitch 0.3s;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: 0.5rem;
    color: var(--white);
    margin-top: 0.5rem;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 217, 255, 0.3);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 1);
    margin: 2rem auto 3rem;
    max-width: 800px;
    line-height: 1.8;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    background: rgba(10, 31, 68, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.highlight {
    color: var(--cyan);
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

/* ==========================================
   ACHIEVEMENT SHOWCASE
   ========================================== */

.achievement-showcase {
    margin: 3rem auto;
    max-width: 900px;
    overflow: hidden;
    position: relative;
}

.achievement-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.8), rgba(5, 18, 41, 0.9));
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.achievement-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
    fill: var(--navy);
}

.webby-icon {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.achievement-text {
    text-align: left;
    flex: 1;
}

.achievement-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.achievement-text span {
    font-size: 0.95rem;
    color: var(--light-cyan);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   HERO CTA BUTTON
   ========================================== */

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
    margin-top: 2rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 60px rgba(0, 217, 255, 0.6);
}

.hero-cta .arrow {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: var(--transition);
}

.hero-cta:hover .arrow {
    transform: translateX(5px);
}

.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
}

.hero-cta:active .cta-ripple {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* ==========================================
   SCROLL INDICATOR
   ========================================== */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

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

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--cyan);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    position: relative;
    padding: 8rem 2rem;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 2.5rem;
    background: rgba(10, 31, 68, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.guyana-flag {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.gradient-text {
    background: linear-gradient(135deg, var(--light-cyan), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 1);
    max-width: 600px;
    margin: 0 auto;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.7), rgba(5, 18, 41, 0.8));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.85), rgba(5, 18, 41, 0.95));
    box-shadow: 0 10px 50px rgba(0, 217, 255, 0.3), 0 0 80px rgba(0, 217, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--cyan);
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features span {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--cyan);
    font-weight: 600;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    position: relative;
    padding: 8rem 2rem;
    z-index: 10;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}


.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.contact-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(0, 166, 81, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.7), rgba(5, 18, 41, 0.8));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stat-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.stat-link:hover {
    transform: translateY(-5px) scale(1.02);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.85), rgba(5, 18, 41, 0.95));
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3), 0 0 60px rgba(0, 217, 255, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.guyana-pride {
    margin-top: 2rem;
}

.pride-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 166, 81, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-left: 4px solid var(--gold);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.pride-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pride-text strong {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 215, 0, 0.3);
    display: block;
    margin-bottom: 0.5rem;
}

.pride-text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 1);
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form-container {
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.8), rgba(5, 18, 41, 0.9));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 217, 255, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.form-header p {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
    padding: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--cyan);
    background: rgba(0, 217, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition);
}

.form-group.focused .input-underline {
    width: 100%;
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--cyan);
    stroke-width: 2;
}

.submit-button {
    margin-top: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.button-arrow {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: var(--transition);
}

.submit-button:hover .button-arrow {
    transform: translateX(5px);
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.submit-button:hover .button-glow {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(0, 166, 81, 0.2);
    border: 1px solid var(--green);
    color: var(--green);
}

.form-message.error {
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(5, 18, 41, 0.8);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .tagline-text {
        font-size: 0.65rem;
    }
}

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

    .logo {
        height: 60px;
    }

    .logo-tagline {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .product-link {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
        border-radius: 30px;
    }

    .product-link span {
        display: none;
    }

    .product-icon {
        width: 20px;
        height: 20px;
    }

    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 5rem 1rem 3rem;
        min-height: 100vh;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        margin: 1.5rem auto 2rem;
    }

    .achievement-showcase {
        margin: 2rem auto;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .achievement-text {
        text-align: center;
    }

    .achievement-text strong {
        font-size: 1rem;
        line-height: 1.3;
    }

    .achievement-text span {
        font-size: 0.85rem;
    }

    .section-header {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .section-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 2rem 1.25rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .guyana-flag {
        width: 32px;
        height: 22px;
    }

    .pride-text strong {
        font-size: 1rem;
    }

    .pride-text span {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-info {
        text-align: center;
    }

    .ambient-credentials {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo {
        height: 50px;
    }

    .cta-button {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 4.5rem 0.75rem 2.5rem;
    }

    .hero-content {
        padding: 1.5rem 0.75rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.875rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description br {
        display: none;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .achievement-item {
        padding: 1.25rem 0.875rem;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
    }

    .section-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.875rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-form-container {
        padding: 1.75rem 1rem;
    }

    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

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

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Fade in on scroll */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RECAPTCHA BADGE POSITIONING
   ========================================== */

.grecaptcha-badge {
    z-index: 1000 !important;
    position: fixed !important;
    bottom: 14px !important;
    right: 14px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border-radius: 4px !important;
}

@media (max-width: 767px) {
    .grecaptcha-badge {
        bottom: 10px !important;
        right: 10px !important;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}
