/* ============================================
   TECHNOBOX PREMIUM - DARK THEME
   Colors: Red (#E50914), Black, White
   ============================================ */

:root {
    --primary: #E50914;
    --primary-dark: #B20710;
    --primary-light: #FF1A25;
    --primary-glow: rgba(229, 9, 20, 0.4);
    --black: #000000;
    --black-light: #0A0A0A;
    --black-lighter: #141414;
    --gray-dark: #1A1A1A;
    --gray: #2A2A2A;
    --gray-light: #666666;
    --white: #FFFFFF;
    --white-dim: rgba(255, 255, 255, 0.8);
    --white-muted: rgba(255, 255, 255, 0.5);
    
    --font-display: 'Syncopate', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   CURSOR GLOW EFFECT
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

body:hover .cursor-glow {
    opacity: 0.3;
}

@media (pointer: coarse) {
    .cursor-glow {
        display: none;
    }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-t {
    color: var(--primary);
}

.logo-box {
    border: 2px solid var(--white);
    padding: 2px 8px;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white-dim);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
}

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.nav-phone:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
}

.title-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--white-dim);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gray-light), transparent);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white-muted);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(8px); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
}

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

/* Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--white-dim);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--white);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 10px;
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 8px;
    color: var(--white);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 20px;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.visual-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    margin-bottom: 25px;
}

.visual-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.visual-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.visual-content p {
    color: var(--white-muted);
    line-height: 1.7;
}

.visual-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.badge {
    padding: 8px 16px;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white-dim);
    transition: all var(--transition-fast);
}

.badge:hover {
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--black-light);
    position: relative;
}

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

.service-card {
    position: relative;
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

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

.service-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--primary) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover .service-border {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.service-featured {
    border-color: var(--primary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.service-content {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.05));
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: color var(--transition-base);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--white-dim);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-dark);
    transition: all var(--transition-fast);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: var(--white);
    padding-left: 5px;
}

.service-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 15px;
    color: var(--primary-light);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 120px 0;
    background: var(--black);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    position: relative;
    padding: 40px 30px;
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray);
    opacity: 0.5;
    line-height: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black-lighter), var(--gray-dark));
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white-dim);
    margin-bottom: 40px;
}

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--white-dim);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text .label {
    font-size: 0.85rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text .value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-text a.value:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--white-dim);
    transition: all var(--transition-base);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

/* Map */
.map-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

.map-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    z-index: 2;
}

.map-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 30px;
    background: var(--black);
    position: relative;
    border-top: 1px solid var(--gray);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    display: inline-block;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--white-muted);
    line-height: 1.8;
    max-width: 350px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column ul li {
    color: var(--white-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-column a {
    color: var(--white-muted);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
}

.copyright {
    color: var(--white-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border: 1px solid var(--gray);
    border-radius: 10px;
    color: var(--white-dim);
    transition: all var(--transition-base);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
    z-index: 9999;
    transition: all var(--transition-base);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px and below)
   ============================================ */
@media (max-width: 768px) {
    /* Global fixes for mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Navigation mobile */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 4%;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right var(--transition-slow);
        z-index: 999;
        padding: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-phone {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 0 4%;
        width: 100%;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .hero-badge span {
        white-space: nowrap;
    }
    
    .title-line {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        letter-spacing: 2px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
        width: 100%;
        padding: 0 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 10px);
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll {
        bottom: 20px;
    }
    
    /* Sections common mobile */
    .section-container {
        padding: 0 4%;
        width: 100%;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* About section mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-features {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .feature-item {
        width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .visual-card {
        padding: 25px;
        max-width: 100%;
    }
    
    .visual-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .visual-icon i {
        font-size: 1.8rem;
    }
    
    .visual-content h3 {
        font-size: 1.2rem;
    }
    
    .visual-content p {
        font-size: 0.9rem;
    }
    
    .visual-badges {
        margin-top: 20px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    /* Services section mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        width: 100%;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .service-icon i {
        font-size: 1.4rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .service-list li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    /* Why us section mobile */
    .why-us {
        padding: 60px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .why-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .why-icon i {
        font-size: 1.5rem;
    }
    
    .why-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 4%;
    }
    
    .cta-content h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-large {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Contact section mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .contact-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .contact-details {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-text .label {
        font-size: 0.75rem;
    }
    
    .contact-text .value {
        font-size: 0.9rem;
    }
    
    .contact-socials {
        gap: 12px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .map-container {
        height: 280px;
        border-radius: 15px;
    }
    
    .map-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-container {
        padding: 0 4%;
    }
    
    .footer-main {
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .footer-column ul {
        gap: 12px;
    }
    
    .footer-column ul li {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 25px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .footer-socials {
        gap: 12px;
    }
    
    .footer-socials a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    /* Floating WhatsApp mobile */
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 15px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 3%;
    }
    
    .nav-logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-content {
        padding: 0 3%;
    }
    
    .title-line {
        font-size: clamp(1.5rem, 9vw, 2rem);
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-container {
        padding: 0 3%;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 5.5vw, 1.6rem);
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .service-content {
        padding: 22px 18px;
    }
    
    .service-list li {
        font-size: 0.85rem;
    }
    
    .why-card {
        padding: 25px 18px;
    }
    
    .why-card p {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: 22px 18px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .footer-container {
        padding: 0 3%;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL (360px and below)
   ============================================ */
@media (max-width: 360px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .title-line {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 11px 18px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-list li {
        font-size: 0.8rem;
    }
}
