/* style.css - WebX Agency Stylesheet */

/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 26, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --accent-primary: #00d9ff;
    --accent-secondary: #7700ff;
    --accent-tertiary: #ff00cc;
    --neon-glow: 0 0 15px var(--accent-primary);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --gradient-text: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --border-radius: 12px;
}

[data-theme="light"] {
    --bg-primary: #f8f9ff;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.8);
    --text-primary: #12121a;
    --text-secondary: #5a5a6e;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: var(--transition);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--accent-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: var(--neon-glow);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    top: -16px;
    left: -16px;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: transform 0.6s ease, width 0.3s, height 0.3s;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.logo-neon {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow);
}

.logo-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--glass-border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(30deg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(119, 0, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.logo-3d {
    font-size: 8rem;
    font-weight: 900;
    display: flex;
    gap: 5px;
    perspective: 1000px;
}

.logo-3d span {
    display: inline-block;
    transform-style: preserve-3d;
    animation: tilt 10s infinite alternate;
}

.logo-3d .neon-letter {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow);
    animation: glow 2s infinite alternate;
}

@keyframes tilt {
    0% {
        transform: rotateX(0) rotateY(0);
    }
    100% {
        transform: rotateX(10deg) rotateY(10deg);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px var(--accent-primary);
    }
    100% {
        text-shadow: 0 0 20px var(--accent-primary), 0 0 30px var(--accent-primary);
    }
}

.logo-glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===== WHY CHOOSE US ===== */
.why-us .cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.card:hover::before {
    opacity: 0.1;
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.card-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
}

.card:hover .card-glow {
    opacity: 0.2;
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* ===== PROJECTS SLIDER ===== */
.projects-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.project-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 500px;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.project-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-view {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-view:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: var(--neon-glow);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* ===== REVIEWS ===== */
.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    display: none;
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-content {
    position: relative;
}

.review-quote {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.review-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.review-author p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

/* ===== TECH STACK ===== */
.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tech-logo i {
    font-size: 3.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tech-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tech-logo:hover i,
.tech-logo:hover span {
    color: var(--accent-primary);
    transform: translateY(-5px);
}

.tech-logo:hover i {
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta .btn-primary {
    background: white;
    color: var(--accent-secondary);
}

.cta .btn-primary:hover {
    background: var(--bg-primary);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== PARTICLE BACKGROUND ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .logo-3d {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
        border-top: 1px solid var(--glass-border);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        max-width: 100%;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-3d {
        font-size: 4rem;
    }
    
    .project-card {
        height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TYPEWRITER EFFECT ===== */
.typewriter-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--accent-primary);
    white-space: nowrap;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-primary); }
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(119, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.trusted-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.brands-carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: slideLeft 30s linear infinite;
    will-change: transform;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex: 0 0 180px;
    height: 120px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    min-width: 0;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.brand-logo:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.brand-logo:hover::before {
    opacity: 0.1;
}

.brand-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.brand-logo:hover .brand-icon {
    color: var(--accent-primary);
    transform: scale(1.2);
}

.brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.brand-logo:hover .brand-name {
    color: var(--text-primary);
}

.brand-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.brand-logo:hover .brand-glow {
    opacity: 0.2;
}

/* Gradient fades for edges */
.fade-left, .fade-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

/* Pause animation on hover */
.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

.trusted-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0 40px;
}

.trusted-stat {
    text-align: center;
}

.trusted-stat .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.trusted-stat .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trusted-quote {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    position: relative;
}

.trusted-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.3;
    font-family: serif;
}

.quote-author {
    color: var(--accent-primary);
    font-weight: 600;
    font-style: normal;
}

/* Brand-specific colors on hover */
.brand-logo[data-brand="google"]:hover .brand-icon {
    color: #4285F4;
}

.brand-logo[data-brand="aws"]:hover .brand-icon {
    color: #FF9900;
}

.brand-logo[data-brand="openai"]:hover .brand-icon {
    color: #10A37F;
}

.brand-logo[data-brand="deloitte"]:hover .brand-icon {
    color: #86BC25;
}

.brand-logo[data-brand="canva"]:hover .brand-icon {
    color: #00C4CC;
}

.brand-logo[data-brand="github"]:hover .brand-icon {
    color: #FFFFFF;
}

.brand-logo[data-brand="lovable"]:hover .brand-icon {
    color: #FF6B8B;
}

.brand-logo[data-brand="spotify"]:hover .brand-icon {
    color: #1DB954;
}

.brand-logo[data-brand="figma"]:hover .brand-icon {
    color: #F24E1E;
}

.brand-logo[data-brand="slack"]:hover .brand-icon {
    color: #4A154B;
}

/* Responsive styles for trusted section */
@media (max-width: 992px) {
    .brand-logo {
        flex: 0 0 150px;
        height: 100px;
    }
    
    .trusted-stats {
        gap: 40px;
    }
    
    .trusted-stat .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        flex: 0 0 130px;
        height: 90px;
        padding: 15px;
    }
    
    .brand-icon {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 0.8rem;
    }
    
    .fade-left, .fade-right {
        width: 50px;
    }
    
    .trusted-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .trusted-quote {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .brands-track {
        gap: 20px;
    }
    
    .brand-logo {
        flex: 0 0 110px;
        height: 80px;
    }
    
    .fade-left, .fade-right {
        width: 30px;
    }
}

/* ===== PNG LOGO STYLES ===== */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    padding: 10px 0;
}

.logo-image {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
    position: relative;
    z-index: 2;
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--accent-primary));
}

/* For light theme */
[data-theme="light"] .logo-image {
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.8)) brightness(0.9);
}

/* Glow effects for PNG logo */
.logo-glow-png {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.logo:hover .logo-glow-png {
    opacity: 0.8;
    filter: blur(20px);
    width: 70px;
    height: 70px;
}

.logo-glow-pulse-png {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: logo-pulse 3s infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        opacity: 0.3;
        width: 60px;
        height: 60px;
    }
    50% {
        opacity: 0.6;
        width: 65px;
        height: 65px;
    }
}

/* Screen reader text for accessibility */
.logo-text-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px; /* Smaller on mobile */
    }
    
    .logo-glow-png,
    .logo-glow-pulse-png {
        width: 50px;
        height: 50px;
    }
    
    .logo:hover .logo-glow-png {
        width: 55px;
        height: 55px;
    }
}

/* Navbar scrolled state adjustments */
.navbar.scrolled .logo-image {
    height: 45px; /* Slightly smaller when navbar is scrolled */
}

.navbar.scrolled .logo-glow-png,
.navbar.scrolled .logo-glow-pulse-png {
    width: 55px;
    height: 55px;
}

//next//
/* ===== FOOTER PNG LOGO STYLES ===== */
.footer-logo {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.footer-logo-image {
    height: 150px; /* Adjust based on your logo size */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px var(--accent-primary));
}

/* Footer logo glow effect */
.footer-logo-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.3;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-glow {
    opacity: 0.5;
    filter: blur(18px);
    width: 65px;
    height: 65px;
}

/* Light theme adjustments */
[data-theme="light"] .footer-logo-image {
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6)) brightness(0.95);
}

[data-theme="light"] .footer-logo-glow {
    opacity: 0.2;
}

/* Screen reader text */
.footer-logo-text-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive footer logo */
@media (max-width: 992px) {
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-logo-glow {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .footer-logo-image {
        height: 35px;
    }
    
    .footer-logo-glow {
        width: 50px;
        height: 50px;
    }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 4rem;
    font-weight: 900;
    display: flex;
    gap: 5px;
    margin-bottom: 40px;
}

.loader-logo span {
    opacity: 0;
    animation: loader-letter 0.5s forwards;
}

.loader-logo span:nth-child(1) { animation-delay: 0.1s; }
.loader-logo span:nth-child(2) { animation-delay: 0.2s; }
.loader-logo span:nth-child(3) { animation-delay: 0.3s; }
.loader-logo .neon-loader { 
    animation-delay: 0.4s;
    color: var(--accent-primary);
}

@keyframes loader-letter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: var(--glass-border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Animated Grid Background */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: var(--accent-primary);
    opacity: 0.2;
    animation: grid-pulse 4s infinite alternate;
}

.grid-line:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 40%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0.5s;
}

.grid-line:nth-child(3) {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1s;
}

.grid-line:nth-child(4) {
    top: 80%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1.5s;
}

.grid-line:nth-child(5) {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    animation-delay: 2s;
}

@keyframes grid-pulse {
    0% { opacity: 0.1; }
    100% { opacity: 0.3; }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(1px);
    animation: particle-float 8s infinite linear;
}

.hero-particles .particle:nth-child(1) {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.hero-particles .particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: -4s;
}

.hero-particles .particle:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: -6s;
}

.hero-particles .particle:nth-child(5) {
    top: 40%;
    left: 30%;
    animation-delay: -1s;
}

.hero-particles .particle:nth-child(6) {
    top: 50%;
    right: 35%;
    animation-delay: -3s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, -50px);
        opacity: 0.3;
    }
    75% {
        transform: translate(-30px, -20px);
        opacity: 0.5;
    }
}

/* Hero Parallax Glow */
.hero-parallax-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: glow-move 15s infinite alternate ease-in-out;
}

@keyframes glow-move {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-40%, -60%) scale(1.2);
    }
}

/* Hero Title */
.about-hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.about-hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

/* Founder Message */
.founder-message {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 700px;
    position: relative;
    z-index: 2;
    transform: translateY(24px);
    opacity: 0;
}

.message-content {
    position: relative;
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.founder-signature {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: var(--gradient);
    margin-bottom: 15px;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* About Scroll Indicator */
.about-hero .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.about-hero .scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    animation: fade-pulse 2s infinite;
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Team Section */
.team-section {
    padding: 120px 0;
}

/* Animated Underline */
.animated-underline {
    height: 3px;
    width: 100px;
    margin: 15px auto 25px;
    position: relative;
    overflow: hidden;
}

.underline-stroke {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    animation: draw-underline 1.2s 0.5s forwards cubic-bezier(0.2, 0.9, 0.3, 1);
}

@keyframes draw-underline {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    opacity: 0;
    transform: scale(0.95);
    cursor: pointer;
}

.team-card.visible {
    opacity: 1;
    transform: scale(1);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.team-card:hover .member-photo {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 0 25px var(--accent-primary);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.team-card:hover .member-photo img {
    transform: scale(1.1);
}

.photo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.35s ease;
}

.team-card:hover .photo-glow {
    opacity: 0.3;
}

.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.team-card:hover .skill-tag {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.card-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.35s ease;
    z-index: -1;
}

.team-card:hover .card-glow {
    opacity: 0.2;
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    z-index: 1;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--bg-secondary);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: dot-pulse 2s infinite;
}

.timeline-dot.dot-1 { top: 10%; animation-delay: 0s; }
.timeline-dot.dot-2 { top: 30%; animation-delay: 0.4s; }
.timeline-dot.dot-3 { top: 50%; animation-delay: 0.8s; }
.timeline-dot.dot-4 { top: 70%; animation-delay: 1.2s; }
.timeline-dot.dot-5 { top: 90%; animation-delay: 1.6s; }

@keyframes dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 217, 255, 0);
    }
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    width: calc(50% - 40px);
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    text-align: right;
    left: 0;
}

.timeline-item.right {
    text-align: left;
    left: calc(50% + 40px);
}

.item-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.item-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    position: relative;
}

.item-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.item-connector {
    position: absolute;
    top: 15px;
    width: 40px;
    height: 2px;
}

.timeline-item.left .item-connector {
    right: -40px;
}

.timeline-item.right .item-connector {
    left: -40px;
}

.connector-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    top: -5px;
    left: 0;
    animation: connector-pulse 2s infinite;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    position: absolute;
    top: 0;
}

@keyframes connector-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Technologies Section */
.tech-section {
    padding: 120px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.tech-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.tech-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.12);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.tech-icon {
    font-size: 3rem;
    color: var(--text-secondary);
    transition: all 0.35s ease;
    z-index: 2;
}

.tech-item:hover .tech-icon {
    color: var(--accent-primary);
    transform: rotate(10deg);
}

.tech-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.tech-item:hover .tech-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.tech-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.tech-item:hover .tech-glow {
    opacity: 0.3;
}

/* Floating animation for tech items */
.tech-item {
    animation: tech-float 6s ease-in-out infinite;
}

.tech-item:nth-child(2n) {
    animation-delay: -1s;
}

.tech-item:nth-child(3n) {
    animation-delay: -2s;
}

.tech-item:nth-child(4n) {
    animation-delay: -3s;
}

@keyframes tech-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* About CTA */
.about-cta .cta-content {
    text-align: center;
}

.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px;
        text-align: left;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item.left .item-connector {
        left: -60px;
        right: auto;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .founder-message {
        padding: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tech-item {
        height: 100px;
    }
    
    .tech-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .founder-message {
        padding: 20px;
    }
    
    .team-card {
        padding: 25px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .letter,
    .team-card,
    .timeline-item,
    .tech-item,
    .founder-message,
    .timeline-stroke,
    .grid-line,
    .particle,
    .logo-particle,
    .tech-item,
    .timeline-dot,
    .connector-dot {
        animation: none !important;
        transition: none !important;
    }
    
    .about-hero-title .letter {
        opacity: 1;
        transform: none;
    }
    
    .team-card,
    .timeline-item,
    .tech-item,
    .founder-message {
        opacity: 1;
        transform: none;
    }
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

.services-page {
    background: var(--bg-primary);
}

/* Services Page Loader */
.services-page .page-loader .loader-logo span {
    color: var(--text-primary);
}

.services-page .page-loader .neon-loader {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow);
}

/* Services Hero Section */
.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Floating Shapes */
.hero-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 2px solid var(--accent-primary);
    opacity: 0.1;
    animation: float-shape 15s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    border-radius: 50%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: -7s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(-15px, -20px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translate(-25px, 10px) rotate(270deg);
        opacity: 0.25;
    }
}

/* Binary Code Background */
.binary-code-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.03;
    overflow: hidden;
}

.binary-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--accent-primary);
    white-space: nowrap;
    animation: binary-scroll 20s linear infinite;
}

.binary-line:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.binary-line:nth-child(2) {
    top: 30%;
    animation-delay: -5s;
}

.binary-line:nth-child(3) {
    top: 50%;
    animation-delay: -10s;
}

.binary-line:nth-child(4) {
    top: 70%;
    animation-delay: -15s;
}

@keyframes binary-scroll {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

/* Hero Text Content */
.hero-text-content {
    position: relative;
    z-index: 2;
}

.services-hero .hero-tagline {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-weight: 600;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.services-hero .hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.services-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.services-hero .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.services-hero .stat {
    text-align: left;
}

.services-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.services-hero .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Preview */
.service-preview {
    position: relative;
    z-index: 2;
}

.preview-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.preview-card.active {
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.preview-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.preview-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.preview-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.preview-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.preview-card:hover .preview-glow {
    opacity: 0.2;
}

/* Services Grid Section */
.services-grid-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.service-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--accent-primary);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 20px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .icon-glow {
    opacity: 0.3;
}

.service-content {
    margin-bottom: 30px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tags .tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
}

.service-card:hover .service-tags .tag {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.service-price {
    display: flex;
    flex-direction: column;
}

.starting-from {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.service-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-primary);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    gap: 15px;
}

.service-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-glow {
    opacity: 0.15;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(119, 0, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.process-steps {
    max-width: 800px;
    margin: 60px auto 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-step:nth-child(even) {
    transform: translateX(30px);
}

.process-step:nth-child(even).visible {
    transform: translateX(0);
}

.step-number {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
    z-index: 2;
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.number-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.2;
    z-index: -1;
}

.step-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    position: relative;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 15px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
}

.step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 60px);
    background: var(--glass-border);
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.pricing-features li.not-included {
    opacity: 0.5;
}

.pricing-features li.not-included i {
    color: var(--text-secondary);
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

.pricing-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card:hover .pricing-glow {
    opacity: 0.1;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pricing-note p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-note a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Services CTA */
.services-cta .cta-content {
    text-align: center;
}

.services-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .services-hero .hero-stats {
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-connector {
        left: 50%;
        top: 70px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .services-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-hero .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .pricing-card.popular {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-card-inner {
        padding: 30px 20px;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .service-cta {
        justify-content: center;
    }
    
    .services-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .floating-shape,
    .binary-line,
    .preview-card,
    .service-card,
    .process-step,
    .pricing-card,
    .faq-item {
        animation: none !important;
        transition: none !important;
    }
    
    .service-card,
    .process-step {
        opacity: 1;
        transform: none;
    }
}

/* ===== PROJECTS PAGE SPECIFIC STYLES ===== */

.projects-page {
    background: var(--bg-primary);
}

/* Projects Page Loader */
.projects-page .page-loader .loader-logo span {
    color: var(--text-primary);
}

.projects-page .page-loader .neon-loader {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow);
}

/* Projects Hero Section */
.projects-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.projects-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Animated Grid Background */
.hero-grid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: var(--accent-primary);
    opacity: 0.1;
    animation: grid-line-pulse 3s infinite alternate;
}

.grid-line:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 1px;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 50%;
    right: 15%;
    width: 150px;
    height: 1px;
    animation-delay: 0.5s;
}

.grid-line:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 180px;
    height: 1px;
    animation-delay: 1s;
}

.grid-line:nth-child(4) {
    top: 70%;
    right: 25%;
    width: 120px;
    height: 1px;
    animation-delay: 1.5s;
}

@keyframes grid-line-pulse {
    0% { opacity: 0.05; }
    100% { opacity: 0.2; }
}

.grid-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: grid-dot-pulse 2s infinite alternate;
}

.grid-dot:nth-child(5) {
    top: 40%;
    left: 30%;
    animation-delay: 0s;
}

.grid-dot:nth-child(6) {
    top: 60%;
    right: 40%;
    animation-delay: 0.3s;
}

.grid-dot:nth-child(7) {
    bottom: 40%;
    left: 60%;
    animation-delay: 0.6s;
}

@keyframes grid-dot-pulse {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.5); opacity: 0.5; }
}

/* Floating Code */
.floating-code {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 1;
    opacity: 0.3;
    animation: code-float 20s infinite linear;
}

@keyframes code-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

.code-snippet {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    display: block;
    margin-bottom: 8px;
}

.code-tag {
    color: #ff79c6;
}

.code-attr {
    color: #50fa7b;
}

.code-value {
    color: #f1fa8c;
}

/* Hero Text */
.hero-text {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 30px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-badge i {
    font-size: 0.9rem;
}

.projects-hero .hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.projects-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.project-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.projects-hero .stat {
    text-align: left;
}

.projects-hero .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.projects-hero .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Filter Preview */
.filter-preview {
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
    width: 400px;
}

@media (max-width: 992px) {
    .filter-preview {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 50px;
    }
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Filter Section */
.filter-section {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    position: sticky;
    top: 80px;
    z-index: 90;
}

@media (max-width: 768px) {
    .filter-section {
        position: static;
    }
}

.filter-container {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
}

/* Search Box */
.search-box {
    position: relative;
    margin-bottom: 30px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.search-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.search-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.search-input:focus + .search-glow {
    opacity: 0.1;
}

/* Filter Options */
.filter-options {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-group {
    flex: 1;
    min-width: 300px;
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.tech-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-filter i {
    font-size: 1rem;
}

.tech-filter:hover,
.tech-filter.active {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Sort Options */
.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.sort-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300d9ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.1);
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 80px 0 120px;
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .projects-masonry {
        grid-template-columns: 1fr;
    }
}

/* Project Item */
.project-item {
    break-inside: avoid;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.project-overlay .project-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.project-overlay .project-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: white;
}

.view-project {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.project-card:hover .view-project {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.view-project:hover {
    background: white;
    gap: 15px;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

/* Project Info */
.project-info {
    padding: 25px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-category {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
}

.project-year {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.project-info .project-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.project-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.project-stats i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.project-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover .project-glow {
    opacity: 0.15;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

#loadMoreProjects {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

/* Modal content styles will be added by JavaScript */
.modal-project-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.modal-project-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-project-category {
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-project-year {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-project-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.modal-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-project-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.modal-project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
}

.detail-title {
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.detail-content {
    font-size: 1rem;
    color: var(--text-primary);
}

.modal-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid var(--glass-border);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 25px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    gap: 15px;
}

/* Testimonials Section */
.project-testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.testimonials-slider {
    max-width: 1800px;
    margin: 160px auto 0;
    position: relative;
}

.slider-track {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 12px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* Projects CTA */
.projects-cta .cta-content {
    text-align: center;
}

.projects-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
}

@media (max-width: 576px) {
    .projects-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .projects-hero .hero-title {
        font-size: 3rem;
    }
    
    .project-stats {
        gap: 30px;
    }
    
    .projects-hero .stat-number {
        font-size: 2.2rem;
    }
    
    .modal-container {
        max-width: 90%;
    }
    
    .modal-project-title {
        font-size: 2rem;
    }
    
    .modal-project-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .projects-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-project-title {
        font-size: 1.8rem;
    }
    
    .modal-project-image {
        height: 200px;
    }
    
    .modal-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .projects-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .projects-masonry {
        gap: 20px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .projects-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .project-item,
    .project-card,
    .modal-container,
    .testimonial-slide,
    .floating-code,
    .grid-line,
    .grid-dot {
        animation: none !important;
        transition: none !important;
    }
    
    .project-item {
        opacity: 1;
        transform: none;
    }
    
    .project-card:hover {
        transform: none;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

.contact-page {
    background: var(--bg-primary);
}

/* Contact Page Loader */
.contact-page .page-loader .loader-logo span {
    color: var(--text-primary);
}

.contact-page .page-loader .neon-loader {
    color: var(--accent-primary);
    text-shadow: var(--neon-glow);
}

/* Contact Hero Section */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Contact Particles */
.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(1px);
    animation: contact-particle-float 8s infinite linear;
}

.contact-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-particle:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: -2s;
}

.contact-particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: -4s;
}

.contact-particle:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: -6s;
}

.contact-particle:nth-child(5) {
    top: 30%;
    left: 30%;
    animation-delay: -1s;
}

.contact-particle:nth-child(6) {
    top: 70%;
    right: 35%;
    animation-delay: -3s;
}

@keyframes contact-particle-float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, -50px);
        opacity: 0.3;
    }
    75% {
        transform: translate(-30px, -20px);
        opacity: 0.5;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 20%;
    right: 5%;
    z-index: 1;
    opacity: 0.5;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    animation: floating-icon-move 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    animation-delay: -2s;
}

.floating-icon:nth-child(3) {
    animation-delay: -4s;
}

@keyframes floating-icon-move {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Hero Text */
.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 30px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-badge i {
    font-size: 0.9rem;
}

.contact-hero .hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.contact-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-hero .stat {
    text-align: left;
}

.contact-hero .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.contact-hero .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Quick Contact Cards */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.contact-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 20px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .icon-glow {
    opacity: 0.3;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.contact-link:hover {
    gap: 12px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Form Status */
.form-status {
    margin-bottom: 30px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-status.active {
    height: auto;
    margin-bottom: 30px;
}

.status-message {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.status-message.success {
    display: flex;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.status-message.error {
    display: flex;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.status-message.loading {
    display: flex;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--accent-primary);
}

.status-message i {
    font-size: 1.2rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Form Groups */
.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-label span:first-child {
    font-size: 0.95rem;
}

.required {
    color: #ff4757;
    font-size: 1.2rem;
}

.optional {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Input Wrapper */
.input-wrapper,
.textarea-wrapper,
.select-wrapper {
    position: relative;
}

.input-wrapper i,
.textarea-wrapper i,
.select-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-size: 1.1rem;
    z-index: 2;
}

.textarea-wrapper i {
    top: 25px;
    transform: none;
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.form-select {
    padding-right: 50px;
    cursor: pointer;
}

/* Select Arrow */
.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 2;
}

/* Input Glow */
.input-glow,
.textarea-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: var(--border-radius);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    top: 0;
    left: 0;
}

.form-input:focus ~ .input-glow,
.form-textarea:focus ~ .textarea-glow,
.form-select:focus ~ .input-glow {
    opacity: 0.1;
}

/* Error Messages */
.error-message {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

/* Budget Slider */
.budget-slider {
    margin-top: 10px;
}

.budget-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.slider-container {
    position: relative;
    height: 30px;
    margin: 20px 0;
}

.budget-slider-input {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    z-index: 3;
    cursor: pointer;
}

.budget-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    transition: all 0.3s ease;
}

.budget-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--accent-primary);
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    transform: translateY(-50%);
    overflow: hidden;
}

.slider-progress {
    position: absolute;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    width: 50%;
    transition: width 0.3s ease;
}

.slider-ticks {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-ticks span {
    width: 2px;
    height: 10px;
    background: var(--glass-border);
    margin-top: -3px;
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.selected-budget {
    text-align: center;
    margin-top: 15px;
}

.selected-budget span {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Timeline Options */
.timeline-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.timeline-option {
    position: relative;
}

.timeline-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.timeline-option label {
    display: block;
    padding: 12px 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timeline-option input[type="radio"]:checked + label,
.timeline-option label:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Character Counter */
.char-counter {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* File Upload */
.file-upload {
    margin-top: 10px;
}

.file-input {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--glass-bg);
    border: 2px dashed var(--glass-border);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.file-label:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 217, 255, 0.05);
}

.file-label i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.file-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.file-title {
    font-weight: 600;
    color: var(--text-primary);
}

.file-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.file-preview {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.file-preview-item i {
    color: var(--accent-primary);
}

.remove-file {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 10px;
}

.remove-file:hover {
    color: #ff4757;
}

/* Privacy Checkbox */
.privacy-group {
    margin-top: 30px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.form-checkbox {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--glass-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-custom i {
    color: var(--bg-primary);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-checkbox:checked + .checkbox-label .checkbox-custom {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.form-checkbox:checked + .checkbox-label .checkbox-custom i {
    opacity: 1;
}

.checkbox-text {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.privacy-link {
    color: var(--accent-primary);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    padding: 18px 50px;
    font-size: 1.1rem;
}

.submit-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    z-index: -1;
}

.submit-btn:hover .submit-glow {
    opacity: 0.3;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--accent-primary);
}

/* Map Section */
.map-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(119, 0, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 40px;
}

.contact-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Leaflet Map Customization */
.contact-map .leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    padding: 5px 10px !important;
    border-radius: 3px !important;
}

.contact-map .leaflet-popup-content-wrapper {
    background: var(--bg-card) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    border-radius: var(--border-radius) !important;
}

.contact-map .leaflet-popup-tip {
    background: var(--bg-card) !important;
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.map-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.map-btn:hover,
.map-btn.active {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateX(-5px);
}

.map-btn i {
    font-size: 1rem;
}

/* Map Info Card */
.map-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.map-info-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0;
}

.map-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #2ecc71;
}

.map-status i {
    font-size: 0.7rem;
}

.map-info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 5px 0;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.get-directions {
    width: 100%;
    justify-content: center;
}

/* Team Contact Section */
.team-contact-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.team-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .team-contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.team-contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    overflow: hidden;
}

.team-contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--neon-glow);
}

.member-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
}

.avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-status i {
    font-size: 0.6rem;
}

.avatar-status.online i {
    color: #2ecc71;
}

.avatar-status.away i {
    color: #f39c12;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-contact-card:hover .avatar-glow {
    opacity: 0.3;
}

.member-info {
    margin-bottom: 25px;
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.member-specialty {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-method i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.schedule-btn {
    width: 100%;
    justify-content: center;
}

.member-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.team-contact-card:hover .member-glow {
    opacity: 0.15;
}

/* Contact FAQ */
.contact-faq {
    padding: 120px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
}

.text-link {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* Schedule Modal */
.schedule-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.schedule-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px;
}

/* Contact CTA */
.contact-cta .cta-content {
    text-align: center;
}

.contact-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .contact-stats {
        gap: 30px;
    }
    
    .contact-hero .stat-number {
        font-size: 2.2rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-info-card {
        position: relative;
        width: 100%;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
    
    .map-controls {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        margin-bottom: 20px;
    }
    
    .map-btn:hover,
    .map-btn.active {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .form-header {
        margin-bottom: 40px;
    }
    
    .timeline-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .quick-contact {
        margin-top: 40px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .timeline-options {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .contact-particle,
    .floating-icon,
    .contact-card,
    .team-contact-card,
    .map-btn,
    .faq-item,
    .modal-container {
        animation: none !important;
        transition: none !important;
    }
    
    .contact-card:hover,
    .team-contact-card:hover,
    .map-btn:hover {
        transform: none;
    }
}


/* Map Customization */
.custom-marker {
    position: relative;
}

.marker-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: marker-pulse 2s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -30px;
    box-shadow: 0 0 15px var(--accent-primary);
}

.marker-icon i {
    transform: rotate(45deg);
    color: white;
    font-size: 1rem;
}

@keyframes marker-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Map Popup */
.map-popup {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

.map-popup h3 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.map-popup p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.map-popup i {
    color: var(--accent-primary);
    width: 20px;
    margin-right: 5px;
}

.popup-phone a {
    color: var(--text-primary);
    text-decoration: none;
}

.popup-phone a:hover {
    color: var(--accent-primary);
}

.popup-desc {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
}

/* Custom Leaflet Popup */
.custom-popup .leaflet-popup-content-wrapper {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-primary);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.custom-popup .leaflet-popup-tip {
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
}

.custom-popup .leaflet-popup-close-button {
    color: var(--text-primary) !important;
}

.custom-popup .leaflet-popup-close-button:hover {
    color: var(--accent-primary) !important;
}