:root {
    --primary-color: #FF6600;
    --primary-glob: #FFDBB0;
    --secondary-color: #FF8533;
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-light: #ffffff;
    --text-grey: #b3b3b3;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background Glows */
.bg-glow-1, .bg-glow-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: float 10s infinite ease-in-out;
}

.bg-glow-1 { top: -200px; left: -100px; }
.bg-glow-2 { bottom: -200px; right: -100px; animation-delay: 5s; background: radial-gradient(circle, rgba(255, 133, 51, 0.1) 0%, rgba(0,0,0,0) 70%); }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: white;
}

h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #ffae70);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 { font-size: 2.8rem; margin-bottom: 50px; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 15px; }

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-top: -30px;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { 
    height: 50px; 
    transition: height 0.4s ease;
}

.header.scrolled .logo img {
    height: 40px;
}

.nav-list { display: flex; gap: 40px; align-items: center; }

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover { color: white; }
.nav-link:hover::after { width: 100%; }

.nav-link.btn-primary { 
    padding: 10px 25px; 
    color: white; 
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}
.nav-link.btn-primary::after { 
    width: 0; 
}
.nav-link.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.5);
}

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 2px; margin: 6px 0; background-color: white; transition: var(--transition); }

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.3;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.subheadline {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.highlight-item i { color: var(--primary-color); }

.cta-tagline {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* General Section Styles */
.section { padding: 120px 0; }

/* About Section - Split Layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-visual:hover .about-img {
    transform: scale(1.05);
}

.visual-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
}

.visual-overlay-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-overlay-card p {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 30px;
}

.about-text-block p {
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.mission-row {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.m-icon {
    width: 50px; height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; display: flex; flex-shrink: 0;
    color: white;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.mission-row h5 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
}

.mission-row p { margin: 0; font-size: 0.95rem; }

/* Minimal Focus List */
.focus-minimal { margin-top: 40px; }
.focus-minimal h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.f-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.f-tag i { color: var(--primary-color); }

.f-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.f-tag:hover i { color: white; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.3);
}

.service-card:hover::before { opacity: 1; }

.icon-box {
    width: 70px; height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotate(5deg);
}

/* Why Electric Section - Bento Grid */
.why-electric {
    background: linear-gradient(to bottom, transparent, rgba(255, 102, 0, 0.02));
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-box.large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(0,0,0,0.4));
    justify-content: center;
}

.bento-box.wide {
    grid-column: span 3;
    grid-auto-rows: 180px; /* Overridden if needed but grid-row: span 1 is default */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 102, 0, 0.15);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bento-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 12px;
}

.bento-box.large h3 { font-size: 2.2rem; }

.bento-box p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.bento-box.wide p { max-width: 60%; }

.bento-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    transition: var(--transition);
}

.bento-box:hover .bento-icon {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.8;
}

.bento-box.large .bento-icon {
    font-size: 5rem;
    bottom: 30px;
    top: auto;
}

.bento-box.wide .bento-icon {
    position: static;
    font-size: 3rem;
    opacity: 0.5;
}

/* Impact */
.impact { position: relative; }
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.impact-item i {
    font-size: 3rem;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.impact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.impact-statement {
    text-align: center;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Partnerships */
.partnership-content {
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.collaboration-areas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.collaboration-areas span {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

/* Contact Section Overhaul */
.contact-box {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    backdrop-filter: blur(20px);
}

/* Left Side - Visual */
.contact-visual {
    flex: 1;
    min-width: 350px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(0,0,0,0.4));
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('assets/pattern-dot.png'); /* Fallback or texture */
    opacity: 0.1;
    z-index: 1;
}

.contact-visual-content { position: relative; z-index: 2; }

.contact-visual h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--primary-glob));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-sub {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.info-item strong { display: block; color: white; margin-bottom: 4px; font-size: 0.95rem; }
.info-item p { color: var(--text-grey); font-size: 0.9rem; margin: 0; }

.social-connect p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sc-links { display: flex; gap: 15px; }
.sc-links a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.sc-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.visual-circle {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Right Side - Form */
.contact-form-area {
    flex: 1.2;
    padding: 60px;
    min-width: 350px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 18px;
}

/* Form Styles with Floating Labels */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

input, textarea {
    width: 100%;
    padding: 25px 20px 10px; /* Increased padding for height and label space */
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

textarea { resize: vertical; min-height: 150px; }

input:focus, textarea:focus {
    border-color: var(--primary-color);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--text-grey);
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 1rem;
}

/* Floating Label Logic */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #020202;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    opacity: 0.9;
    height: 45px;
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-grey);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #555;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: white;
}

/* Animations */
.animate-up, .animate-left, .animate-right, .animate-scale {
    opacity: 0;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.animate-up { transform: translateY(40px); }
.animate-left { transform: translateX(-40px); }
.animate-right { transform: translateX(40px); }
.animate-scale { transform: scale(0.95); }

.animate-up.visible, 
.animate-left.visible, 
.animate-right.visible, 
.animate-scale.visible { 
    opacity: 1; 
    transform: translate(0) scale(1); 
}

/* Stagger delays for children */
.stagger-child > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-child > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-child > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-child > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-child > *:nth-child(6) { transition-delay: 0.5s; }
/* Electric Pulse Border Animation */
@keyframes electric-pulse {
    0% { border-color: rgba(255, 255, 255, 0.05); box-shadow: 0 0 0 rgba(255, 102, 0, 0); }
    50% { border-color: var(--primary-color); box-shadow: 0 0 20px rgba(255, 102, 0, 0.4); }
    100% { border-color: rgba(255, 255, 255, 0.05); box-shadow: 0 0 0 rgba(255, 102, 0, 0); }
}

.bento-box {
    /* Existing bento-box styles... adding animation */
    animation: electric-pulse 4s infinite ease-in-out;
}

.bento-box:nth-child(2) { animation-delay: 1s; }
.bento-box:nth-child(3) { animation-delay: 2s; }
.bento-box:nth-child(4) { animation-delay: 3s; }

/* Electric Button Accent */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    transform: scale(0.5);
}

.btn-primary:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Animations... (preserving existing visible class) */
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero { padding-top: 100px; text-align: center; justify-content: center; }
    .hero-content { margin: 0 auto; }
    .highlights { justify-content: center; }
    
    .nav-list {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        height: 100vh;
        justify-content: center;
        transition: 0.4s;
    }
    
    .nav-list.active { right: 0; }
    .hamburger { display: block; z-index: 1001; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .about-grid, .contact-wrapper, .footer-grid { grid-template-columns: 1fr; }
    /* Better Mobile Typography & Spacing */
    h1 { font-size: 2.5rem; line-height: 1.2; }
    h2 { font-size: 2rem; margin-bottom: 30px; }
    .hero { min-height: 80vh; padding-top: 100px; text-align: center; }
    .subheadline { font-size: 1rem; margin-bottom: 30px; }
    .highlights { flex-direction: column; align-items: center; gap: 15px; }
    .highlight-item { font-size: 0.9rem; }

    /* Nav links spacing on mobile */
    .nav-list { gap: 25px; padding: 40px; }
    .nav-link { font-size: 1.2rem; }

    /* Fix About Visual Overlay on Mobile */
    .visual-overlay-card {
        position: relative;
        bottom: 0; left: 0;
        width: 100%;
        margin-top: -40px;
        border-radius: 20px;
        transform: translateY(20px);
    }
    
    .about-visual { border-radius: 30px; }

    /* Impact grid fix for odd items */
    .impact-grid { grid-template-columns: 1fr; gap: 20px; }
    .impact-item h3 { font-size: 2.5rem; }

    /* Footer adjustments */
    .footer-col { text-align: center; }
    .footer-desc { margin: 0 auto 25px; text-align: center; }
    .footer-contact li { display: flex; justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-logo { margin: 0 auto 20px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; gap: 10px; }

    /* Mobile Contact Box */
    .contact-box { flex-direction: column; }
    .contact-visual {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 50px 20px;
        min-width: 0;
        text-align: center;
    }
    .contact-form-area { padding: 40px 20px; min-width: 0; }
    .contact-visual h3 { font-size: 1.8rem; }
    .info-item { justify-content: flex-start; text-align: left; max-width: 300px; margin: 0 auto 25px; }
    .sc-links { justify-content: center; }
    .visual-circle { display: none; }

    /* Mobile About Split */
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { min-height: 300px; }
    .section-title.left-align { text-align: center; }
    .about-text-block { text-align: left; }
    
    .mvv-grid { grid-template-columns: 1fr; }
    .focus-card { width: 100%; max-width: none; }

    /* Mobile Bento Grid */
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 15px; }
    .bento-box.large, .bento-box.wide { grid-column: span 1; grid-row: span 1; }
    .bento-box.wide { flex-direction: column; align-items: flex-start; gap: 20px; }
    .bento-box.wide p { max-width: 100%; }
    .bento-box.large h3 { font-size: 1.8rem; }



}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
}

.toast.visible {
    transform: translateX(0);
}

.toast.error {
    border-left: 4px solid #ff4b2b;
}

.toast.error i {
    color: #ff4b2b;
}

.toast i {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .toast-container {
        top: 20px;
        right: 20px;
        left: 20px;
    }
    .toast {
        width: 100%;
    }
}

