/* =========================================
   VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Colors */
    --primary-color: #00f3ff;
    /* Neon Cyan */
    --primary-dark: #00c2cc;
    --accent-color: #bc13fe;
    /* Neon Purple */
    --accent-gold: #ffd700;

    --text-color: #ffffff;
    --text-muted: #e0e0e0;

    --bg-color: #050510;
    /* Deep Dark Blue/Black */
    --bg-dark-2: #0a0a15;
    --bg-card: rgba(255, 255, 255, 0.03);
    /* Glass Base */
    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f3ff 0%, #bc13fe 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 243, 255, 0.2) 0%, rgba(188, 19, 254, 0.2) 100%);
    --gradient-text: linear-gradient(90deg, #fff, #00f3ff);

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.8);
    --glow: 0 0 20px rgba(0, 243, 255, 0.4);
    --glow-text: 0 0 10px rgba(0, 243, 255, 0.6);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    --glass-blur: blur(15px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   CRITICAL: LANGUAGE SWITCHER
   (Moved to top to prevent syntax errors)
   ========================================= */
.lang-container {
    position: relative;
    display: inline-block;
}

#lang-menu-btn.lang-nav-link {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 8px 15px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    outline: none !important;
}

#lang-menu-btn.lang-nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
}

.lang-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 450px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
    transform-origin: top right;
    animation: dropdownSlide 0.3s ease-out;
}

.lang-dropdown.show {
    display: block !important;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #333;
    gap: 1px;
}

.lang-select-btn {
    display: block;
    width: 100%;
    padding: 20px 10px;
    background: #2a2a2a;
    border: none;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: var(--font-body);
}

.lang-select-btn:hover {
    background: #383838;
    color: #fff;
}

.lang-select-btn.active {
    background: #4a4a4a;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lang-dropdown {
        width: 320px;
    }
    .lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Mesh Background Container applied in HTML */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #11111f, #050510);
    overflow: hidden;
}

.mesh-bg::before,
.mesh-bg::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 15s infinite alternate ease-in-out;
    z-index: -1;
}

.mesh-bg::before {
    background: var(--primary-color);
    top: -10%;
    left: -10%;
}

.mesh-bg::after {
    background: var(--accent-color);
    bottom: -10%;
    right: -10%;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 50px) rotate(10deg);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.text-accent {
    color: var(--primary-color);
}

.section-title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.subheading {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px 0 30px 0;
}

.divider.mx-auto {
    margin: 15px auto 40px auto;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 100px 0;
}

.full-width {
    width: 100%;
}

/* =========================================
   UTILITIES & COMPONENTS
   ========================================= */

/* Glass Card Utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.neon-glow {
    box-shadow: var(--glow);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #000;
    box-shadow: var(--glow);
    border-color: transparent;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

#header.scrolled {
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    line-height: 1.2;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo span {
    color: var(--primary-color);
    text-shadow: var(--glow-text);
}

.navbar nav {
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    opacity: 0.7;
    letter-spacing: 1px;
}

.nav-links li a:hover,
.nav-links li a.active {
    opacity: 1;
    color: var(--primary-color);
    text-shadow: var(--glow-text);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: var(--glow);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}




/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker image overlay using CSS blend modes if needed, or just standard */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    /* Reduce opacity of bg image to let mesh shine through if needed, or rely on overlay */
    opacity: 0.4;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient fade from bottom */
    background: linear-gradient(to top, var(--bg-color) 10%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 60px;
}

.hero-title {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.3));
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 650px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Stats */
.stats-container {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-item .plus {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: var(--glow-text);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scroll Mouse Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}


/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background-color: transparent;
    /* Transparent to show mesh */
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(-50%, -50%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: rgba(0, 243, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.4);
}

.link-arrow span {
    transition: transform 0.3s;
}

.service-card:hover .link-arrow span {
    transform: translateX(5px);
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    background-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 50px 30px;
    text-align: center;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: rgba(0, 243, 255, 0.3);
}

.pricing-card.popular {
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(0, 243, 255, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg), var(--glow);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: #fff;
    margin: 20px 0 30px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.price .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin-top: 30px;
}

/* =========================================
   WHY US (ABOUT) SECTION
   ========================================= */
.why-us-section {
    background-color: var(--bg-dark-2);
    position: relative;
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.col-text,
.col-img {
    flex: 1;
    min-width: 300px;
}

.col-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Progress Bars */
.progress-item {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
    box-shadow: var(--glow);
}

/* Image with Badge */
.img-box-wrapper {
    position: relative;
}

.img-box img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 4px;
    text-align: left;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    z-index: 5;
    transition: var(--transition);
}

.experience-badge:hover {
    transform: translateY(-5px) scale(1.02);
}

.experience-badge .years {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.experience-badge .plus-accent {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
    margin-left: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}


/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-section {
    background: url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    color: white;
}

.reviews-section .overlay {
    background: rgba(0, 0, 0, 0.65);
    /* Lighter overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.review-slide {
    display: none;
    animation: fadeEffect 1s;
}

.review-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.review-slide .stars {
    color: var(--primary-color);
    /* Changed to use variable for consistency */
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Review Form Styles */
.review-form-container {
    animation: fadeIn 0.5s ease;
}

.review-form-container label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.review-form-container .form-group {
    margin-bottom: 15px;
}

.star-rating {
    display: inline-block;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating .star {
    margin-right: 2px;
    transition: color 0.2s;
    color: var(--primary-color);
    /* Default Active Color */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;


    line-height: 1.8;
    margin-bottom: 30px;
    color: #ffffff;
    /* Bright white text */
}

.reviewer-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.reviewer-info span {
    font-size: 0.9rem;
    color: #cccccc;
    /* Example: lighter than #aaa */
}

.slider-controls {
    margin-top: 40px;
}

.prev-btn,
.next-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    background-color: var(--bg-color);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    transition: var(--transition);
    position: relative;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px;
    /* Fixed height for uniformity */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 69, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
}

.zoom-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    /* JS will toggle flex */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--primary-color);
}


/* =========================================
   FAQ SECTION
   ========================================= */
/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    background-color: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    text-transform: none;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
    text-shadow: var(--glow-text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px 30px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}


/* =========================================
   CONTACT & FORM SECTION
   ========================================= */
.contact-section {
    background-color: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.contact-info-wrapper h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: white;
}

.info-item p {
    color: var(--text-muted);
}

.contact-link {
    color: var(--text-muted);
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-color);
    text-shadow: var(--glow-text);
    text-decoration: none;
}

.hours-box {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hours-row.closed {
    color: #e74c3c;
}

/* Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    box-shadow: 0 0 5px currentColor;
}


/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #080808;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}


/* =========================================
   UTILITIES
   ========================================= */
/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
    display: none;
    /* JS toggles */
    z-index: 990;
    transition: var(--transition);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .pricing-card.popular {
        transform: scale(1);
        /* Reset scale on smaller screens */
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: var(--bg-dark-2);
        flex-direction: column;
        justify-content: center;
        width: 70%;
        max-width: 300px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        /* Above header */
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        z-index: 1002;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Logo Mobile */
    .logo a {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        /* Prevent header overlap */
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .stats-container {
        gap: 30px;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 30px;
        justify-content: center;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        position: static;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}



/* Admin Trigger */
.admin-trigger {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-size: 3rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.admin-trigger:hover {
    transform: rotate(45deg) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8));
}

/* Retro Login Modal (Windows 95 Style) - Fixed Append */
.retro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.retro-window {
    background-color: #c0c0c0;
    /* Classic silver */
    width: 380px;
    /* Closer to reference image width */
    max-width: 95%;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #dfdfdf;
    border-left: 2px solid #dfdfdf;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
    color: black;
    padding: 2px;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0);
    /* Navy blue gradient */
    color: white;
    padding: 3px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.title-bar-controls {
    display: flex;
    gap: 2px;
}

.title-bar-controls .retro-btn {
    width: 16px;
    height: 14px;
    font-size: 10px;
    line-height: 10px;
    padding: 0;
    min-width: unset;
    font-weight: bold;
    color: black;
    background: #c0c0c0;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.window-body {
    padding: 15px 10px 10px 10px;
}

.retro-content {
    display: grid;
    grid-template-columns: 50px 1fr 70px;
    gap: 10px;
}

.icon-section {
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.key-icon {
    font-size: 36px;
    color: #ffd700;
    filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5));
    transform: rotate(45deg);
}

.form-section {
    padding-right: 5px;
}

.instruction-text {
    font-size: 11px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #000;
    text-align: left;
}

.retro-input-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.retro-input-group label {
    width: 70px;
    font-size: 11px;
    color: #000;
}

.retro-input-group input {
    flex: 1;
    border: 1px solid;
    border-color: #808080 #dfdfdf #dfdfdf #808080;
    padding: 2px;
    font-size: 11px;
    outline: none;
    background: white;
    color: black;
    height: 20px;
}

.retro-checkbox-group {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.retro-checkbox-group label {
    font-size: 11px;
    color: #000;
}

.button-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 35px;
}

/* General Retro Button Style */
.retro-btn {
    border: 1px solid;
    border-color: #ffffff #000000 #000000 #ffffff;
    background: #c0c0c0;
    color: black;
    padding: 3px 8px;
    font-size: 11px;
    cursor: pointer;
    text-align: center;
    min-width: 60px;
    font-family: inherit;
    box-shadow: 1px 1px 0px black;
}

.retro-btn:active {
    border-color: #000000 #ffffff #ffffff #000000;
    transform: translate(1px, 1px);
    box-shadow: none;
}

.ok-btn {
    border: 2px solid black;
    /* Default button look */
    border-color: #000000;
    /* Actually simple border plus inset works best */
    outline: 1px dotted #000;
    /* Focus ring simulation */
    outline-offset: -4px;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--glow);
    border-color: rgba(0, 243, 255, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
    letter-spacing: 1px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Connecting Line (Desktop) */
@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        z-index: 0;
        opacity: 0.3;
    }
}