/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --primary: #00f0ff;
    --secondary: #ff00d6;
    --accent: #00ff88;
    --dark: #0a0a1f;
    --darker: #050510;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 240, 255, 0.2);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary); }
    50% { box-shadow: 0 0 40px var(--secondary), 0 0 60px var(--primary); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes navSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   LAYOUT & NAVIGATION - OPTIMIZED
   ========================================================================== */

/* Language Switcher - Fixed Positioning */
.language-switcher {
    position: fixed;
    top: 90px; /* Below navigation */
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 8px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    animation: navSlideIn 0.3s ease-out;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--dark);
    animation: glow 2s ease-in-out infinite;
}

.lang-btn:hover:not(.active) {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-1px);
}

/* Navigation Bar - Fixed with proper spacing */
.glass-nav {
    background: rgba(10, 10, 31, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    flex-shrink: 0;
}

.logo-spinner {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spinning-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 4s linear infinite;
}

.spinning-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    white-space: nowrap;
}

/* Navigation Links - Centered */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
    animation: navSlideIn 0.3s ease-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

/* Navigation Actions - Right aligned with proper spacing */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* Buttons in Navigation */
.login-btn, .admin-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    height: 36px;
    animation: navSlideIn 0.3s ease-out;
}

.login-btn {
    background: rgba(0, 240, 255, 0.1);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.login-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.admin-btn {
    background: var(--accent);
    color: var(--dark);
    border: 1px solid var(--accent);
}

.admin-btn:hover {
    background: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002; /* Higher than language switcher */
    padding: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-left: 15px;
    flex-shrink: 0;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
}

.service-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.blog-read-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-read-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

/* ==========================================================================
   PAGE SECTIONS & LAYOUT
   ========================================================================== */
.page-section {
    display: none;
    min-height: 100vh;
    padding: 100px 5% 50px;
}

.page-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.animated-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.feature-item i {
    color: var(--accent);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
    filter: blur(20px);
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    animation-delay: -2s;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    animation-delay: -4s;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    bottom: 20%;
    right: 10%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Trusted By Section */
.trusted-by {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.trusted-by p {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    font-weight: 700;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 2;
}

.icon-orb {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 10px;
}

.price-range {
    text-align: center;
}

.price-range strong {
    font-size: 1.5rem;
    color: var(--accent);
    display: block;
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

/* Process Section */
.process-section {
    margin-top: 5rem;
    text-align: center;
}

.process-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--glass);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%2300ffff" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
}

.benefit-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

/* ==========================================================================
   GOOGLE REVIEWS SECTION
   ========================================================================== */
.google-reviews {
    padding: 100px 0;
    background: #0a0a0a;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

.reviewer-info h4 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 18px;
}

.reviewer-info span {
    color: #888;
    font-size: 14px;
}

.review-rating {
    margin-left: auto;
    color: #ffd700;
    font-size: 14px;
}

.review-text {
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.reviews-cta p {
    color: #ccc;
    font-size: 18px;
}

.google-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.google-link:hover {
    color: #0080ff;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
}

.faq-question i {
    color: #00ffff;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    padding-bottom: 25px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: #ccc;
    font-size: 18px;
}

.cta-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #0080ff;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.blog-post {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 3rem;
    opacity: 0.8;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: var(--primary);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-post h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.newsletter-content h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    background: var(--dark);
    color: var(--text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.mission, .vision {
    background: var(--glass);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass);
    border-radius: 15px;
}

.value-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
}

.skills-grid {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-progress {
    height: 8px;
    background: var(--glass);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--glass);
    border-radius: 10px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    margin-bottom: 0.3rem;
}

.contact-method small {
    opacity: 0.7;
    font-size: 0.8rem;
}

.business-hours {
    margin-top: 2rem;
}

.hours-list {
    margin-top: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-description {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==========================================================================
   AUTHENTICATION MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(10, 10, 31, 0.95);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(20px);
    position: relative;
}

.auth-container, .verification-container {
    width: 100%;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Verification code input */
input[type="text"][maxlength="6"] {
    letter-spacing: 0.5rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: rgba(5, 5, 16, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-spinner.small {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN - OPTIMIZED FOR OVERLAP FIX
   ========================================================================== */

@media (max-width: 1100px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* Language Switcher - Mobile - POSITIONED BELOW NAVIGATION */
    .language-switcher {
        position: fixed;
        top: 70px; /* Position below navigation */
        right: 20px;
        left: 20px; /* Center horizontally */
        z-index: 1001;
        display: flex;
        justify-content: center;
        gap: 8px;
        background: rgba(10, 10, 31, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        padding: 8px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        width: auto;
        margin: 0 auto;
        max-width: 200px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 40px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    /* Navigation Container */
    .glass-nav {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none;
    }

    /* Logo - Mobile */
    .logo-text {
        font-size: 1.1rem;
    }

    .logo-spinner {
        width: 35px;
        height: 35px;
    }

    /* Navigation Links - Mobile Menu */
    .nav-links.mobile-active {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 40px;
        transform: none;
        z-index: 1001;
        margin: 0;
    }

    .nav-links.mobile-active li {
        width: 100%;
        text-align: center;
    }

    .nav-links.mobile-active .nav-link {
        display: block;
        font-size: 1.1rem;
        padding: 20px 30px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links.mobile-active .nav-link:last-child {
        border-bottom: none;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
        order: 2;
    }

    /* Navigation Actions - Mobile - NO NEED FOR EXTRA SPACING NOW */
    .nav-actions {
        gap: 10px;
        margin-right: 0; /* Reset since language switcher is below */
        order: 1;
    }

    .login-btn, .admin-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        height: 32px;
        min-width: auto;
    }

    .login-btn span, .admin-btn span {
        display: none;
    }

    .login-btn i, .admin-btn i {
        margin-right: 0;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 140px 0 80px; /* Increased top padding for language switcher */
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .animated-title h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 15px;
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* Trusted By Section */
    .trusted-by {
        padding: 50px 0;
    }
    
    .client-logos {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .client-logo {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Why Choose Us Section */
    .why-choose-us {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Google Reviews Section */
    .google-reviews {
        padding: 60px 0;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 20px;
    }
    
    /* Services Section */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-post {
        padding: 25px 20px;
    }
    
    .blog-newsletter {
        padding: 40px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
        margin-bottom: 15px;
    }
    
    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievements {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Language Switcher - Smaller screens */
    .language-switcher {
        top: 65px;
        right: 15px;
        left: 15px;
        padding: 6px 12px;
        max-width: 180px;
    }
    
    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 35px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .glass-nav {
        height: 60px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .login-btn, .admin-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        height: 30px;
    }
    
    .hamburger {
        padding: 6px;
        margin-left: 10px;
    }
    
    .hamburger span {
        width: 18px;
    }

    /* Hero Section */
    .hero-section {
        padding: 130px 0 60px; /* Adjusted for smaller language switcher */
    }
    
    .animated-title h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .form-group {
        margin-bottom: 20px;
    }
    
    input, select, textarea {
        padding: 12px 15px;
    }
}

@media (max-width: 380px) {
    /* Extra small screens */
    .language-switcher {
        top: 65px;
        right: 10px;
        left: 10px;
        padding: 5px 10px;
        max-width: 160px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 10px;
        min-width: 30px;
    }
    
    .nav-actions {
        gap: 5px;
    }
    
    .login-btn, .admin-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
        height: 28px;
    }
}

/* Remove the 350px breakpoint since language switcher is now below navigation */

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link, .login-btn, .lang-btn, .admin-btn, .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links .nav-link {
        min-height: 50px;
    }
    
    /* Remove hover effects on touch devices */
    .benefit-card:hover,
    .service-card:hover,
    .review-card:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .btn-primary:active,
    .btn-secondary:active,
    .service-btn:active {
        transform: scale(0.98);
    }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-spinner,
    .service-icon,
    .benefit-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Print Styles */
@media print {
    .glass-nav,
    .hero-actions,
    .language-switcher,
    .main-footer,
    .scroll-indicator,
    .floating-element {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .page-section {
        break-inside: avoid;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .logo-spinner,
    .floating-element {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: #0a0a0a;
        color: #ffffff;
    }
}