/* ========================================
   LONERTECH LTD - COMPLETE FIXED STYLES
   Professional Web Development Company
   ALL NAVBAR GLITCHES RESOLVED - css/styles.css
   ======================================== */

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

:root {
    /* Premium Tech Color Scheme */
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --accent-color: #7000ff;
    --dark-bg: #0a0e27;
    --dark-bg-secondary: #131833;
    --dark-bg-tertiary: #1a1f3a;
    --text-color: #e8edf4;
    --text-muted: #8b95ab;
    --border-color: rgba(0, 212, 255, 0.2);
    --glow-color: rgba(0, 212, 255, 0.3);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
    
    /* Container widths */
    --container-max-width: 1400px;
    --container-padding: 40px;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ========================================
   TECH ANIMATED BACKGROUND - FIXED
   ======================================== */

.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0 !important;
    pointer-events: none !important;
    overflow: hidden;
}

/* Animated Grid Pattern */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
    pointer-events: none !important;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Floating Tech Particles */
.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary-color);
    pointer-events: none !important;
}

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

/* Circuit Lines */
.circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    opacity: 0.2;
    animation: circuitFlow 8s linear infinite;
    pointer-events: none !important;
}

@keyframes circuitFlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Glowing Orbs */
.tech-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbPulse 8s ease-in-out infinite;
    pointer-events: none !important;
}

.tech-orb.orb-1 {
    background: var(--primary-color);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.tech-orb.orb-2 {
    background: var(--accent-color);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.tech-orb.orb-3 {
    background: var(--secondary-color);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.25;
    }
}


/* ========================================
   CENTERED CONTAINER SYSTEM
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Section wrapper for full-width background */
section {
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
    margin: 0 auto;
    max-width: 80%;
    opacity: 0.3;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--glow-color);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--glow-color), 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--glow-color);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 15px var(--glow-color);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--glow-color);
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header p,
.section-header .lead {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   HERO SECTION - COMPLETE FIX
   ======================================== */

.hero-section {
    background: var(--dark-bg);
    color: var(--text-color);
    padding: 120px 0 100px;
    width: 100%;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* HERO BUTTONS - CORRECTED HORIZONTAL LAYOUT */
.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: flex-start;
}

.hero-buttons .btn {
    flex: 0 0 auto;
    min-width: 220px;
    white-space: nowrap;
}

/* HERO STATS - CORRECTED HORIZONTAL ROW */
.hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    flex-wrap: nowrap !important;
    align-items: flex-start;
    justify-content: flex-start;
}

.stat {
    position: relative;
    flex: 0 0 auto;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px var(--primary-color);
}

.stat h3 {
    font-size: 3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
    white-space: nowrap;
}

.stat p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.3));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--dark-bg-secondary);
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-top: 15px;
    box-shadow: 0 0 10px var(--primary-color);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin-top: 35px;
}

.feature-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-color);
    transform: translateX(10px);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-box {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.feature-box i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px var(--glow-color));
}

.feature-box h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: var(--dark-bg);
    width: 100%;
}

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

.service-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px var(--glow-color);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
}

.service-card p {
    margin-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
}

.service-card ul {
    list-style: none;
    position: relative;
}

.service-card li {
    padding: 10px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    position: relative;
}

.service-card li::before {
    content: '▹';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
    background: var(--dark-bg-secondary);
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.portfolio-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
}

.portfolio-image {
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(112, 0, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-color));
}

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

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

.portfolio-info {
    padding: 35px;
}

.portfolio-info h3 {
    font-size: 1.9rem;
    color: var(--text-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.portfolio-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.portfolio-stats {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.portfolio-stats span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 18px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
}


/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    background: var(--dark-bg);
    width: 100%;
}

.package-category {
    margin-bottom: 80px;
}

.category-title {
    text-align: center;
    margin-bottom: 50px;
}

.category-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-color);
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    position: relative;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    padding: 12px 25px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
}

.trust-indicator i {
    color: var(--primary-color);
    font-size: 24px;
}

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

.pricing-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(0, 212, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.most-popular-badge,
.popular-badge,
.best-deal-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px var(--glow-color);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h2 {
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 400;
}

.savings-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
    border: 1px solid var(--border-color);
}

.pricing-description p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 35px;
}

.pricing-features p {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 18px;
}

.pricing-features strong {
    color: var(--primary-color);
}

.pricing-footer .btn-pricing {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    box-shadow: 0 5px 20px var(--glow-color);
}

.pricing-footer .btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow-color);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: var(--dark-bg-secondary);
    width: 100%;
}

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

.testimonial-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 3px;
    filter: drop-shadow(0 0 5px var(--glow-color));
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: var(--dark-bg);
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info-box {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 45px;
    border-radius: 16px;
}

.contact-info-box h3 {
    font-size: 1.9rem;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 700;
}

.contact-info-box .contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-box .contact-item:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(5px);
}

.contact-info-box i {
    font-size: 1.6rem;
    color: var(--primary-color);
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.contact-info-box strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-info-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-box {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 45px;
    border-radius: 16px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.02);
    color: var(--text-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-color);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-bg-secondary);
    color: var(--text-color);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col img {
    height: 60px;
    width: auto;
    max-width: 100%;
    margin-bottom: 10px;
}

.footer-col small {
    display: block;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-rating {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-rating .stars i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 2px;
}

.footer-rating span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    background: rgba(0, 212, 255, 0.02);
}

.social-link:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

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

.footer-bottom a:hover {
    color: var(--secondary-color);
}


/* ========================================
   WHATSAPP WIDGET
   ======================================== */

.whatsapp-widget {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-widget i {
    font-size: 2.2rem;
    color: white;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 120px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--glow-color);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--glow-color);
}

.scroll-to-top i {
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   PAGE LOADER
   ======================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px var(--glow-color);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (max-width: 1600px) {
    :root {
        --container-max-width: 1200px;
        --container-padding: 30px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    :root {
        --container-max-width: 1000px;
        --container-padding: 25px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --container-padding: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

/* Mobile Large */
@media (max-width: 991px) {
    .top-contact-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .top-contact-list,
    .top-social-list {
        justify-content: center;
    }
}

/* Tablet/Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .top-contact-bar {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .top-contact-list li {
        margin: 0 8px;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    /* Hero - MOBILE RESPONSIVE */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Hero Buttons - Stack vertically on mobile */
    .hero-buttons {
        flex-direction: column !important;
        align-items: center;
        flex-wrap: nowrap !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Hero Stats - Stack if needed on mobile */
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap !important;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .top-contact-bar {
        font-size: 10px;
        padding: 6px 0;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Hero Stats - Stack vertically on small mobile */
    .hero-stats {
        flex-direction: column !important;
        gap: 30px;
        align-items: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-header h3 {
        font-size: 36px;
    }
    
    .whatsapp-widget {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-widget i {
        font-size: 1.8rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 85px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    :root {
        --container-padding: 12px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 20px var(--glow-color);
}

/* Margin utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

/* Prevent horizontal scroll */
.no-overflow {
    overflow-x: hidden;
    width: 100%;
}

/* ========================================
   CRITICAL FIXES - NAVBAR GLITCHES RESOLVED
   DO NOT REMOVE THESE
   ======================================== */

/* Ensure tech background never interferes with navigation */
.tech-background,
.tech-background *,
.tech-grid,
.tech-particles,
.tech-particles *,
.particle,
.circuit-line,
.tech-orb {
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Ensure header and top bar are always clickable */
.header,
.header *,
.top-bar,
.top-bar *,
.navbar,
.navbar *,
.nav-wrapper,
.nav-wrapper *,
.nav-controls,
.nav-controls *,
.nav-menu,
.nav-menu *,
.logo,
.logo * {
    pointer-events: auto !important;
}

/* Force clickability on all interactive elements */
.header a,
.header button,
.top-bar a,
.top-bar button,
.nav-menu a,
.nav-menu button,
.theme-toggle,
.mobile-toggle,
.btn-cta,
.whatsapp-btn,
.dropdown-menu a {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Ensure proper z-index hierarchy */
.tech-background {
    z-index: 0 !important;
}

.header {
    z-index: 1000 !important;
}

.top-bar {
    z-index: 1001 !important;
}

.dropdown-menu {
    z-index: 1002 !important;
}

/* Remove transform glitches on navigation hover */
.nav-menu a:hover {
    transform: none !important;
}

.dropdown-menu a:hover {
    /* Only allow horizontal transform */
    transform: translateX(10px) !important;
    transform: none; /* Remove if the above causes issues */
}

/* Ensure smooth interactions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Light mode adjustments */
body.light-mode .tech-background {
    opacity: 0.3;
}

/* ========================================
   END OF CRITICAL FIXES
   ======================================== */