/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    /* Colors */
    --bg-dark: #070707;
    --bg-secondary: #111111;
    --neon-lime: #B6FF2E;
    --neon-glow: #8DFF3A;
    --text-white: #F5F5F5;
    --text-gray: #9CA3AF;
    --glass-bg: rgba(17, 17, 17, 0.6);
    --glass-border: rgba(182, 255, 46, 0.1);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.text-neon {
    color: var(--neon-lime);
    text-shadow: 0 0 20px rgba(182, 255, 46, 0.4);
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--neon-lime);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px var(--neon-lime), 0 0 20px var(--neon-lime);
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(182, 255, 46, 0.5);
    border-radius: 50%;
    position: fixed;
    top: -16px;
    left: -16px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-hover .custom-cursor-follower {
    width: 60px;
    height: 60px;
    background: rgba(182, 255, 46, 0.1);
    border-color: var(--neon-lime);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .btn-secondary, .btn-outline, .btn-neon-small, .social-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.9rem;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--neon-lime);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(182, 255, 46, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(182, 255, 46, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-gray);
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-neon-small {
    padding: 8px 20px;
    border: 1px solid var(--neon-lime);
    color: var(--neon-lime);
    border-radius: 50px;
}

.btn-neon-small:hover {
    background: var(--neon-lime);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(182, 255, 46, 0.4);
}

.btn-outline {
    border: 1px solid var(--neon-lime);
    color: var(--neon-lime);
    backdrop-filter: blur(4px);
    background: rgba(7, 7, 7, 0.5);
}

.btn-outline:hover {
    background: var(--neon-lime);
    color: var(--bg-dark);
}

.full-width {
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(7, 7, 7, 0.8);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-img {
    height: 35px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-neon-small) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:not(.btn-neon-small):hover {
    color: var(--text-white);
}

.nav-links a:not(.btn-neon-small)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-lime);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn-neon-small):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
}

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

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(182, 255, 46, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(182, 255, 46, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-lime);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-glow);
    bottom: 100px;
    right: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-gray);
    position: relative;
    z-index: 2;
}

.card-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--neon-lime);
    filter: blur(60px);
    opacity: 0;
    top: -50px;
    right: -50px;
    transition: var(--transition-smooth);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(182, 255, 46, 0.3);
}

.service-card:hover .card-glow {
    opacity: 0.3;
}

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.portfolio-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 7, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--neon-lime);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(182, 255, 46, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(182, 255, 46, 0.2);
}

.feature-list h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-list p {
    color: var(--text-gray);
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.why-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: inline-block;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.owner-info {
    position: absolute;
    bottom: 20px;
    left: 20%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 3;
    white-space: nowrap;
}

.owner-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--neon-lime);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(182, 255, 46, 0.2);
    line-height: 1;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--neon-lime);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
}
social-btn whatsapp {
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;

}


.social-btn:hover {
    background: rgba(182, 255, 46, 0.1);
    border-color: var(--neon-lime);
    color: var(--neon-lime);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-gray);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--text-gray);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group input:not(:placeholder-shown),
.input-group textarea:not(:placeholder-shown) {
    border-bottom-color: var(--neon-lime);
}

.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--neon-lime);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS & UTILITIES
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
    .why-us-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        order: -1; /* image on top for mobile */
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        border-left: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-container {
        padding: 30px 20px;
    }

    .custom-cursor, .custom-cursor-follower {
        display: none; /* disable custom cursor on mobile */
    }
    
    * {
        cursor: auto;
    }
}

/* edits */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #111 inset;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: white;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    
    background: #B6FF2E;
    color: #070707;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    text-decoration: none;

    box-shadow: 
        0 0 10px rgba(182,255,46,0.5),
        0 0 25px rgba(182,255,46,0.4);

    z-index: 1000;

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);

    box-shadow:
        0 0 20px rgba(182,255,46,0.8),
        0 0 45px rgba(182,255,46,0.7);
}