/* ==========================================================================
   Wandless Group Ltd — Modern Corporate & Portfolio Stylesheet
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-base: #06090e;
    --bg-surface: #0c121d;
    --bg-surface-elevated: #111a29;
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-card-hover: rgba(22, 33, 60, 0.8);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(56, 189, 248, 0.5);
    --border-card: rgba(255, 255, 255, 0.1);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    /* Brand Accents */
    --primary-cyan: #38bdf8;
    --primary-indigo: #6366f1;
    --primary-purple: #a855f7;
    --primary-emerald: #10b981;
    --primary-amber: #f59e0b;
    --primary-rose: #f43f5e;
    
    /* Venture Specific Theme Accents */
    --pokemon-blue: #00f2fe;
    --pokemon-indigo: #4facfe;
    --pokemon-glow: rgba(0, 242, 254, 0.25);
    
    --vinyl-green: #2ecc71;
    --vinyl-gold: #f1c40f;
    --vinyl-glow: rgba(46, 204, 113, 0.25);
    
    --olton-orange: #f97316;
    --olton-amber: #fbbf24;
    --olton-glow: rgba(249, 115, 22, 0.25);

    /* Layout & Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1240px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Ambient Orbs & Overlay */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: -2;
    animation: floatGlow 18s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #38bdf8 0%, #6366f1 70%, transparent 100%);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #10b981 0%, #059669 70%, transparent 100%);
    bottom: 20%;
    left: -150px;
    animation-duration: 22s;
    animation-delay: -5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 70%, transparent 100%);
    top: 50%;
    right: -100px;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 60px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Typography & Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-pill {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-cyan);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Site Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(6, 9, 14, 0.85);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand-emblem {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-link:hover .brand-emblem {
    transform: scale(1.08);
}

.brand-svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--primary-cyan);
    margin-top: 2px;
}

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

.nav-item {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #ffffff;
}

.nav-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.25);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-nav-link.highlight {
    color: var(--primary-cyan);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 6rem 1.5rem 4rem 1.5rem;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 999px;
    color: var(--primary-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: pulseRadar 2s infinite;
}

@keyframes pulseRadar {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
}

.hero-heading {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtext {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 1.25rem 2.5rem;
    gap: 2.5rem;
    backdrop-filter: blur(16px);
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.05rem 2.2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* Ventures Section */
.ventures-section {
    padding: 5rem 0;
    position: relative;
}

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

/* Venture Card Styles */
.venture-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.card-pokemon:hover {
    border-color: var(--pokemon-blue);
    box-shadow: 0 0 35px var(--pokemon-glow), 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.card-vinyl:hover {
    border-color: var(--vinyl-green);
    box-shadow: 0 0 35px var(--vinyl-glow), 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.card-olton:hover {
    border-color: var(--olton-orange);
    box-shadow: 0 0 35px var(--olton-glow), 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.card-status-badge.live {
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--pokemon-blue);
}

.card-status-badge.vinyl-badge {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--vinyl-green);
}

.card-status-badge.olton-badge {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--olton-orange);
}

.radar-ping {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--pokemon-blue);
    box-shadow: 0 0 8px var(--pokemon-blue);
    animation: pulseRadar 2s infinite;
}

.radar-ping.green {
    background-color: var(--vinyl-green);
    box-shadow: 0 0 8px var(--vinyl-green);
}

.radar-ping.orange {
    background-color: var(--olton-orange);
    box-shadow: 0 0 8px var(--olton-orange);
}

.venture-domain {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    font-family: var(--font-heading);
}

/* Big Logos Presentation */
.logo-wrapper {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.brand-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.venture-card:hover .brand-logo {
    transform: scale(1.06);
}

.img-pokemon {
    max-height: 105px;
}

.img-vinyl {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid rgba(46, 204, 113, 0.4);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.25);
}

.img-olton {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.25);
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.venture-name {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.venture-description {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #cbd5e1;
}

.chip i {
    font-size: 0.75rem;
    color: var(--primary-cyan);
}

/* Card Action Buttons */
.card-action-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-launch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    color: #050805;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-launch:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn-launch-pokemon {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #031024;
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.35);
}

.btn-launch-pokemon:hover {
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.6);
}

.btn-launch-vinyl {
    background: linear-gradient(135deg, #f1c40f 0%, #2ecc71 100%);
    color: #051405;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}

.btn-launch-vinyl:hover {
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.6);
}

.btn-launch-olton {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #1f0b00;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-launch-olton:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
}

.btn-subaction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-subaction:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
    color: #ffffff;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(12, 18, 29, 0.5) 0%, rgba(6, 9, 14, 0.8) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Interactive Visual Terminal Box */
.visual-card {
    background: #090e17;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.visual-card-header {
    background: #0f172a;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.terminal-dots span:nth-child(2) { background: #f59e0b; }
.terminal-dots span:nth-child(3) { background: #10b981; }

.terminal-title {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: monospace;
}

.visual-card-body {
    padding: 1.5rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.35rem;
    color: #e2e8f0;
}

.terminal-line.indent { padding-left: 1.25rem; }
.terminal-line.indent-2 { padding-left: 2.5rem; }

.terminal-line.console-output {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.78rem;
}

.cmd-cyan { color: #38bdf8; }
.cmd-yellow { color: #fbbf24; }
.cmd-blue { color: #818cf8; }
.cmd-green { color: #34d399; }
.cmd-purple { color: #c084fc; }

/* Technology & Capabilities Section */
.technology-section {
    padding: 5rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-card-hover);
}

.tech-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.icon-cyan { background: rgba(56, 189, 248, 0.15); color: var(--primary-cyan); border: 1px solid rgba(56, 189, 248, 0.3); }
.icon-purple { background: rgba(168, 85, 247, 0.15); color: var(--primary-purple); border: 1px solid rgba(168, 85, 247, 0.3); }
.icon-green { background: rgba(16, 185, 129, 0.15); color: var(--primary-emerald); border: 1px solid rgba(16, 185, 129, 0.3); }
.icon-orange { background: rgba(249, 115, 22, 0.15); color: var(--olton-orange); border: 1px solid rgba(249, 115, 22, 0.3); }

.tech-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.tech-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 6rem 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(13, 148, 136, 0.25) 100%);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.15);
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.contact-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.contact-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Footer Styles */
.site-footer {
    background: #040609;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

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

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

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

.footer-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col a:hover {
    color: var(--primary-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        width: 100%;
    }
    
    .stat-divider {
        width: 60%;
        height: 1px;
    }
    
    .ventures-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 3rem 1.5rem;
    }
}
