/* NEON THEME - Superdesign Inspired */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neon Color Palette */
    --neon-pink: #FF10F0;
    --neon-blue: #00FFF0;
    --neon-purple: #9D00FF;
    --neon-green: #39FF14;
    --neon-yellow: #FFFF00;
    --neon-orange: #FF6600;
    --dark-bg: #0a0a0a;
    --dark-surface: #141414;
    --dark-card: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', 'Space Mono', monospace, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 240, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 255, 240, 0.03) 3px
        );
}

/* Cyberpunk Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(157, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 108px;
    position: relative;
    z-index: 2;
}

/* Background Overlays - Neon Style */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0.1) 0%, 
        rgba(0, 255, 240, 0.1) 50%, 
        rgba(157, 0, 255, 0.1) 100%);
    z-index: -1;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        var(--neon-pink) 0%, 
        transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.background-overlay-inverted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(315deg, 
        rgba(0, 255, 240, 0.1) 0%, 
        rgba(255, 16, 240, 0.1) 50%, 
        rgba(57, 255, 20, 0.1) 100%);
    z-index: -1;
}

/* Navigation - Neon Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 2px solid var(--neon-pink);
    box-shadow: 
        0 0 20px rgba(255, 16, 240, 0.5),
        inset 0 -2px 10px rgba(255, 16, 240, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-letters {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 900;
    line-height: 0.8;
    color: var(--neon-blue);
    text-shadow: 
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 30px var(--neon-blue);
    animation: neon-flicker 2s infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-text {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.nav-menu a:hover::before {
    width: 100%;
    box-shadow: 0 0 10px var(--neon-pink);
}

/* Sections */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Landing Section - Neon */
.landing-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, 
        rgba(255, 16, 240, 0.1) 0%, 
        transparent 70%);
}

.hero-content {
    text-align: center;
    animation: float-in 1s ease-out;
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, 
        var(--neon-pink) 0%, 
        var(--neon-blue) 50%, 
        var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 16, 240, 0.5));
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 16, 240, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 255, 240, 0.5)); }
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: var(--neon-blue);
    text-shadow: 
        0 0 10px rgba(0, 255, 240, 0.8),
        0 0 20px rgba(0, 255, 240, 0.4);
    letter-spacing: 3px;
}

/* Typography - Neon */
.main-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.main-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-pink);
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px rgba(255, 16, 240, 0.5);
}

.service-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-blue);
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 0 10px var(--neon-blue);
}

.project-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 0 10px var(--neon-green);
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Letter Section - Neon */
.letter-section {
    background: var(--dark-bg);
    position: relative;
}

.letter-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    border: 2px solid var(--neon-purple);
    border-radius: 20px;
    background: rgba(157, 0, 255, 0.05);
    box-shadow: 
        0 0 30px rgba(157, 0, 255, 0.3),
        inset 0 0 30px rgba(157, 0, 255, 0.1);
}

.letter-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.letter-signature {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 16, 240, 0.5);
}

/* Quick Links Section - Neon */
.quicklinks-section {
    background: var(--dark-bg);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.link-card {
    background: var(--dark-card);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0.1) 0%, 
        rgba(0, 255, 240, 0.1) 100%);
}

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

.link-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(255, 16, 240, 0.4),
        inset 0 0 20px rgba(255, 16, 240, 0.1);
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

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

/* Team Section - Neon */
.team-section {
    background: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.member-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
    padding: 3px;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--neon-pink), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-pink));
    border-radius: 15px;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* COO photo already black and white, no filter needed */
.team-member:nth-child(2) .member-photo img {
    filter: none;
}

.team-member:hover .member-photo img {
    filter: grayscale(50%) saturate(1.1);
}

/* COO photo hover state */
.team-member:nth-child(2):hover .member-photo img {
    filter: brightness(1.1);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-member p {
    font-size: 16px;
    color: var(--neon-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

/* Company Information Section - Neon */
.company-section {
    background: var(--dark-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: var(--dark-card);
    border: 2px solid var(--neon-purple);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(157, 0, 255, 0.3),
        inset 0 0 30px rgba(157, 0, 255, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(157, 0, 255, 0.1), 
        transparent);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Grid Layouts */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

/* Cards - Neon Style */
.vision-card, .mission-card {
    position: relative;
    padding: 50px;
    background: var(--dark-card);
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(var(--dark-card), var(--dark-card)), 
                      linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 30px rgba(255, 16, 240, 0.2);
}

.service-card {
    position: relative;
    padding: 40px;
    background: var(--dark-card);
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 255, 240, 0.2),
        inset 0 0 20px rgba(0, 255, 240, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 10px 40px rgba(0, 255, 240, 0.3),
        0 0 60px rgba(0, 255, 240, 0.2),
        inset 0 0 30px rgba(0, 255, 240, 0.1);
    border-color: var(--neon-pink);
}

.project-card {
    background: var(--dark-card);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 0.3),
        inset 0 0 20px rgba(57, 255, 20, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 50px rgba(57, 255, 20, 0.4),
        inset 0 0 30px rgba(57, 255, 20, 0.1);
}

/* Phone Mockup - Neon */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 750px;
    height: 370px;
    background: var(--dark-surface);
    border: 3px solid var(--neon-purple);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 0 50px rgba(157, 0, 255, 0.4),
        inset 0 0 30px rgba(157, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 16, 240, 0.2) 0%, 
        rgba(157, 0, 255, 0.2) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 16, 240, 0.5),
        inset 0 0 20px rgba(255, 16, 240, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 50px rgba(255, 16, 240, 0.7),
        inset 0 0 30px rgba(255, 16, 240, 0.3);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-controls span {
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 240, 0.3);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-blue);
    transition: width 0.3s ease;
}

/* Contact Section - Neon */
.contact-section {
    background: var(--dark-bg);
    min-height: 60vh;
}

.contact-content {
    text-align: center;
}

.contact-email {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.privacy-link {
    font-size: 18px;
    font-weight: 900;
    color: var(--neon-green);
    text-decoration: none;
    border: 2px solid var(--neon-green);
    padding: 15px 40px;
    border-radius: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(57, 255, 20, 0.3),
        inset 0 0 20px rgba(57, 255, 20, 0.1);
}

.privacy-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.privacy-link:hover {
    color: var(--dark-bg);
    text-shadow: none;
    box-shadow: 
        0 0 40px rgba(57, 255, 20, 0.5),
        inset 0 0 20px rgba(57, 255, 20, 0.2);
}

.privacy-link:hover::before {
    left: 0;
}

/* Footer - Neon */
.footer {
    background: var(--dark-surface);
    padding: 40px 0;
    border-top: 2px solid var(--neon-pink);
    box-shadow: 0 -5px 30px rgba(255, 16, 240, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo .logo-letters {
    color: var(--neon-blue);
    text-shadow: 
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        padding: 50px 80px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .phone-frame {
        width: 600px;
        height: 300px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-frame {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-blue);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--neon-pink);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--neon-pink);
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        border-left: 2px solid var(--neon-blue);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    /* Typography adjustments */
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-top: 10px;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .service-title,
    .project-title {
        font-size: 18px;
    }
    
    /* Grid layouts */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .link-card {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Cards adjustments */
    .vision-card,
    .mission-card,
    .service-card,
    .project-card {
        padding: 25px 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    /* Team member photos */
    .member-photo {
        width: 200px;
        height: 200px;
    }
    
    /* Phone mockup */
    .phone-frame {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    /* Contact section */
    .contact-email {
        font-size: 20px;
        word-break: break-all;
    }
    
    /* Letter section */
    .letter-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .letter-signature {
        font-size: 16px;
    }
    
    /* Description text */
    .description,
    .service-description,
    .project-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Remove line breaks on mobile */
    br {
        display: none;
    }
    
    /* Logo adjustments */
    .logo-letters span {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 14px;
        display: none;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .contact-email {
        font-size: 16px;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
    }
    
    .team-member h3 {
        font-size: 18px;
    }
    
    .team-member p {
        font-size: 14px;
    }
}

/* Loading Animation */
@keyframes neon-load {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: neon-load 0.8s ease-out;
}

/* Glitch Effect for Titles */
@keyframes glitch {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink),
            0 0 30px var(--neon-pink);
    }
    25% {
        text-shadow: 
            -2px 0 var(--neon-blue),
            2px 0 var(--neon-green),
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink);
    }
    50% {
        text-shadow: 
            2px 0 var(--neon-purple),
            -2px 0 var(--neon-yellow),
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink);
    }
}

/* Add glitch effect on hover for main titles */
.main-title:hover {
    animation: glitch 0.3s ease-in-out infinite;
}

/* Neon Cursor Trail Effect */
body {
    cursor: crosshair;
}

a, button, .play-button {
    cursor: pointer;
}

/* Overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.menu-overlay.active {
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-pink), var(--neon-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--neon-blue), var(--neon-purple));
}