/**
 * OnCode Software - Premium Dark Theme Stylesheet
 * Design Language: Stripe + Linear + Vercel (2026-2027 Luxury Aesthetic)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-primary: #050816;
    --bg-secondary: #0D1117;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    
    /* Accent Colors */
    --accent-cyan: #00E5FF;
    --accent-purple: #7B61FF;
    --accent-green: #00FFB3;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --text-muted: #64748B;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    --grad-green: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    --grad-dark: linear-gradient(180deg, #050816 0%, #0D1117 100%);
    --grad-glow: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 60%);
    
    /* Layout Constants */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ----------------------------------
   1. Globals & Base Setup
------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(123, 97, 255, 0.3);
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
    transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Selection highlight */
::selection {
    background-color: rgba(123, 97, 255, 0.3);
    color: #fff;
}

/* Typography Extensions */
.font-mono {
    font-family: 'Space Mono', monospace;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

/* Glassmorphism Generic Card utility */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section background wrapper */
section {
    position: relative;
    padding: 100px 0;
}

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

/* Gradient Glowing Background Elements */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.12) 0%, rgba(0, 229, 255, 0.03) 50%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* Text Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, #FFFFFF 30%, #7B61FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan-purple {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-neon {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----------------------------------
   2. Navigation Bar
------------------------------------- */
.navbar-custom {
    background: rgba(5, 8, 22, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(5, 8, 22, 0.9);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand-custom {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand-custom span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link-custom {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link-custom:hover, 
.navbar-nav .nav-link-custom.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ----------------------------------
   3. Buttons & CTAs
------------------------------------- */
.btn-premium {
    position: relative;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: #050816;
    color: #FFF;
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.25);
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary-outline:hover {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

/* ----------------------------------
   4. Hero & Intro Section
------------------------------------- */
.hero-wrapper {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

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

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

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(123, 97, 255, 0.1);
    border: 1px solid rgba(123, 97, 255, 0.2);
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.05);
}

.hero-title {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 40px;
}

/* Statistics Counter */
.stats-banner {
    position: relative;
    z-index: 5;
    margin-top: 60px;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ----------------------------------
   5. About Us Section
------------------------------------- */
.section-subtitle {
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
}

.about-value-box {
    margin-top: 24px;
}

.value-item {
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
}

.value-icon {
    font-size: 20px;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    flex-shrink: 0;
}

.value-title {
    font-weight: 600;
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

/* About Timeline */
.about-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.about-timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-purple);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px var(--accent-purple);
}

.about-timeline-year {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 14px;
    margin-bottom: 6px;
}

.about-timeline-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.about-timeline-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ----------------------------------
   6. Services Section
------------------------------------- */
.service-card {
    position: relative;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.service-icon {
    font-size: 32px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    transform: translateZ(20px);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--accent-cyan);
}

.service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* ----------------------------------
   7. Featured Projects Section
------------------------------------- */
/* Portfolio Filters */
.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-primary);
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
}

/* Masonry Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.project-item {
    display: block;
    height: 100%;
}

.project-card {
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 240px; /* Fixed uniform height for all project images */
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 22, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-client {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.project-card-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
}

.project-links {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.project-link {
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.project-link:hover {
    color: var(--accent-cyan);
}

/* ----------------------------------
   8. Technology Stack Section
------------------------------------- */
.tech-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.tech-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    min-height: 120px;
}

.tech-box i, .tech-box img {
    font-size: 36px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.tech-box span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tech-box:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.15);
}

.tech-box:hover i {
    color: var(--accent-cyan);
    transform: scale(1.15) translateY(-4px);
}

.tech-box:hover span {
    color: var(--text-primary);
}

/* Marquee / Wall continuous movement */
.tech-slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.tech-slider-container::before,
.tech-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tech-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.tech-slider-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

.tech-track {
    display: inline-flex;
    gap: 24px;
    animation: marquee 40s linear infinite;
}

.tech-track:hover {
    animation-play-state: paused;
}

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

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--text-primary);
}

.marquee-item i {
    font-size: 20px;
    color: var(--accent-cyan);
}

/* ----------------------------------
   9. Team Section
------------------------------------- */
.team-card {
    overflow: hidden;
    position: relative;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.04);
}

.team-socials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
}

.team-card:hover .team-socials-overlay {
    opacity: 1;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 80%;
}

.team-social-links {
    display: flex;
    gap: 12px;
}

.team-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
    text-decoration: none;
}

.team-social-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.team-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--accent-cyan);
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
}

/* ----------------------------------
   10. Testimonials
------------------------------------- */
.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 0 40px 0;
    scrollbar-width: none; /* Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* Safari / Chrome */
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    min-width: 300px;
}

@media (max-width: 991px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

.testimonial-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent-cyan);
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-company {
    font-size: 12px;
    color: var(--accent-cyan);
    font-family: 'Space Mono', monospace;
}

.stars-rating {
    color: #FFC107;
    margin-bottom: 20px;
}

/* ----------------------------------
   11. Process Timeline Section
------------------------------------- */
.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step-num {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
}

.process-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Connective lines between steps in desktop */
@media (min-width: 992px) {
    .process-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: 30px;
        font-size: 24px;
        color: var(--accent-purple);
        opacity: 0.5;
    }
}

/* ----------------------------------
   12. Careers Section
------------------------------------- */
.career-card {
    padding: 30px;
    margin-bottom: 20px;
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    font-family: 'Space Mono', monospace;
}

.career-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.career-details {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: none;
}

.career-requirements {
    margin: 15px 0;
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
}

.career-toggle-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    margin-top: 12px;
}

.career-toggle-btn:hover {
    color: var(--accent-cyan);
}

/* ----------------------------------
   13. Contact Section
------------------------------------- */
.contact-info-panel {
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(12b, 97, 255, 0.08);
    border: 1px solid rgba(12b, 97, 255, 0.15);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Premium Floating Input Form */
.contact-form-panel {
    padding: 40px;
}

.form-group-custom {
    position: relative;
    margin-bottom: 24px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.form-label-custom {
    position: absolute;
    left: 20px;
    top: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-control-custom:focus ~ .form-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: -10px;
    left: 14px;
    font-size: 12px;
    padding: 0 6px;
    background: #050816;
    color: var(--accent-cyan);
    border-radius: 4px;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    margin-top: 30px;
    height: 250px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) grayscale(80%) contrast(120%);
}

/* ----------------------------------
   14. Footer Section
------------------------------------- */
.footer-custom {
    background-color: #02040b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
    position: relative;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 50%, transparent 100%);
}

.footer-logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Mono', monospace;
    color: var(--accent-cyan);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-social-links {
    display: flex;
    gap: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 14px;
    flex-grow: 1;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.newsletter-btn {
    background: var(--grad-primary);
    border: none;
    color: #FFF;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-muted);
}
