:root {
    --primary: #2E4F9F;
    --secondary: #4A90E2;
    --accent: #00F0FF;
    --glow: #00D4FF;
    --dark: #0a0e1a;
    --darker: #050810;
    --surface: #141b2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--darker);
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ======================
   EPIC LOADER
   ====================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 3s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.loader-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-reveal {
    width: 380px;
    height: 380px;
    margin: 0 auto 20px;
    opacity: 0;
    transform: scale(0.5);
    animation: logoReveal 2s ease-out forwards;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.logo-slices {
    position: relative;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px var(--glow));
}

.logo-slice {
    position: absolute;
    inset: 0;
    background-image: url('logo.svg?v=5');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, 0)) scale(0.9);
    animation: sliceIn 1.2s ease forwards;
}

.slice-1 {
    clip-path: polygon(0 0, 100% 0, 50% 50%);
    --ty: -50px;
    animation-delay: 0.2s;
}

.slice-2 {
    clip-path: polygon(100% 0, 100% 50%, 50% 50%);
    --tx: 50px;
    --ty: -50px;
    animation-delay: 0.35s;
}

.slice-3 {
    clip-path: polygon(100% 0, 100% 100%, 50% 50%);
    --tx: 60px;
    animation-delay: 0.5s;
}

.slice-4 {
    clip-path: polygon(100% 100%, 50% 50%, 100% 50%);
    --tx: 50px;
    --ty: 50px;
    animation-delay: 0.65s;
}

.slice-5 {
    clip-path: polygon(0 100%, 100% 100%, 50% 50%);
    --ty: 60px;
    animation-delay: 0.8s;
}

.slice-6 {
    clip-path: polygon(0 100%, 0 50%, 50% 50%);
    --tx: -50px;
    --ty: 50px;
    animation-delay: 0.95s;
}

.slice-7 {
    clip-path: polygon(0 0, 0 100%, 50% 50%);
    --tx: -60px;
    animation-delay: 1.1s;
}

.slice-8 {
    clip-path: polygon(0 0, 50% 50%, 0 50%);
    --tx: -50px;
    --ty: -50px;
    animation-delay: 1.25s;
}

@keyframes sliceIn {
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes logoComplete {
    0% {
        clip-path: inset(100% 0 0 0);
        opacity: 0.3;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px var(--glow));
    }
    50% {
        filter: drop-shadow(0 0 60px var(--glow)) brightness(1.2);
    }
}

.loading-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--accent);
    margin-bottom: 20px;
}

.loader-company {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin: 10px 0 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.loader-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loader.phase-name .loader-company {
    opacity: 1;
    transform: translateY(0);
}

.loader.phase-out .logo-reveal,
.loader.phase-out .loader-company {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
}

.loader.at-complete .loader-tagline {
    opacity: 1;
    transform: translateY(0);
}

.loading-text span {
    display: inline-block;
    opacity: 0;
    animation: letterPop 0.5s ease-out forwards;
}

.loading-text span:nth-child(1) { animation-delay: 0.5s; }
.loading-text span:nth-child(2) { animation-delay: 0.6s; }
.loading-text span:nth-child(3) { animation-delay: 0.7s; }
.loading-text span:nth-child(4) { animation-delay: 0.8s; }
.loading-text span:nth-child(5) { animation-delay: 0.9s; }
.loading-text span:nth-child(6) { animation-delay: 1s; }
.loading-text span:nth-child(7) { animation-delay: 1.1s; }
.loading-text span:nth-child(8) { animation-delay: 1.2s; }
.loading-text span:nth-child(9) { animation-delay: 1.3s; }
.loading-text span:nth-child(10) { animation-delay: 1.4s; }
.loading-text span:nth-child(11) { animation-delay: 1.5s; }
.loading-text span:nth-child(12) { animation-delay: 1.6s; }

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    animation: loadProgress 2.5s ease-out forwards;
    box-shadow: 0 0 15px var(--glow);
}

@keyframes loadProgress {
    to { width: 100%; }
}

.loading-percentage {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ======================
   NAVIGATION
   ====================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s ease;
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo img {
    height: 68px;
    filter: drop-shadow(0 0 10px var(--glow));
}

.nav-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--glow);
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--glow);
}

.btn-nav::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

/* ======================
   HERO SECTION
   ====================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.circuit-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite;
}

.orb-1 {
    top: 5%;
    left: 5%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3), transparent);
    animation-delay: 0s;
}

.orb-2 {
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(46, 79, 159, 0.4), transparent);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3.5s forwards;
}

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

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title span {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title span:nth-child(1) { animation-delay: 3.7s; }
.hero-title span:nth-child(2) { animation-delay: 3.9s; }
.hero-title span:nth-child(3) { animation-delay: 4.1s; }

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 4.3s forwards;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 4.5s forwards;
}

.btn {
    padding: 18px 45px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 1s ease-out 4.7s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ======================
   SERVICES SECTION
   ====================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--darker), var(--dark));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(20, 27, 46, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ======================
   PROJECTS SECTION
   ====================== */
.projects {
    padding: 120px 0;
    background: var(--dark);
}

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

.project-card {
    background: var(--surface);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.project-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.project-overlay span {
    padding: 6px 15px;
    background: var(--accent);
    color: var(--darker);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-content > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

/* ======================
   TESTIMONIALS
   ====================== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark), var(--darker));
}

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

.testimonial-card {
    background: rgba(20, 27, 46, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.quote {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.author h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ======================
   CONTACT
   ====================== */
.contact {
    padding: 120px 0;
    background: var(--darker);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(20, 27, 46, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.contact-form {
    background: rgba(20, 27, 46, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(5, 8, 16, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* ======================
   FOOTER
   ====================== */
.footer {
    padding: 60px 0 30px;
    background: var(--darker);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow));
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--darker);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo-reveal {
        width: 260px;
        height: 260px;
    }
}

/* Fade-in on scroll */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
