/* ========================================
   LIMON TİCARET - TOPTAN HEYLIUM GAZ
   Vaporwave Neon Tema CSS
   ======================================== */

/* CSS Variables */
:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #bc13fe;
    --neon-blue: #0080ff;
    --neon-green: #39ff14;
    --vaporwave-pink: #ff71ce;
    --vaporwave-cyan: #01cdfe;
    --vaporwave-purple: #b967ff;
    --vaporwave-yellow: #fffb96;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(15, 15, 25, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d4;
    --gradient-sunset: linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #bc13fe 100%);
    --gradient-neon: linear-gradient(45deg, #ff00ff, #00ffff);
    --shadow-neon: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Vaporwave Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Grid Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 4px 30px rgba(255, 0, 255, 0.2);
}

.header-top {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact a {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-contact a:hover {
    text-shadow: 0 0 15px white;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons .btn-order {
    background: var(--neon-green);
    color: var(--dark-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-buttons .btn-order:hover {
    box-shadow: 0 0 20px var(--neon-green);
    transform: scale(1.05);
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-neon);
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-text h1 {
    font-size: 1.3rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 0, 255, 0.1);
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO / BANNER SECTION
   ======================================== */
.hero {
    margin-top: 140px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 0, 255, 0.7) 0%,
        rgba(188, 19, 254, 0.6) 30%,
        rgba(0, 128, 255, 0.5) 60%,
        rgba(0, 255, 255, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
}

.banner-content {
    max-width: 800px;
    z-index: 2;
}

.banner-content h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    animation: text-glow 2s ease-in-out infinite alternate;
}

.banner-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.banner-content .btn-primary {
    display: inline-block;
    background: var(--neon-green);
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    transition: var(--transition);
}

.banner-content .btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.8);
    color: var(--dark-bg);
}

.banner-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.banner-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-arrow:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: var(--shadow-neon);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 80px 0;
    position: relative;
}

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

.section-header h2 {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-neon);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.card h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid rgba(255, 0, 255, 0.2);
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 3;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .overlay h4 {
    color: #ffffff;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-item .overlay p {
    color: #e0e0e0;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.gallery-number {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: var(--neon-pink);
    border-radius: 50%;
    display: flex;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: var(--shadow-neon);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-nav:hover {
    color: var(--neon-cyan);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ========================================
   BLOG
   ======================================== */
.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-cyan);
}

.blog-image {
    height: 200px;
    background: var(--gradient-sunset);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.blog-tag {
    background: rgba(255, 0, 255, 0.2);
    color: var(--neon-pink);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

/* ========================================
   COMMENTS / REVIEWS
   ======================================== */
.review-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.review-name {
    font-weight: bold;
    color: var(--neon-cyan);
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--neon-cyan);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

.btn-submit {
    background: var(--gradient-neon);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-neon);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-neon);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 0, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-left {
    left: 20px;
}

.floating-right {
    right: 20px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-phone {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.float-order {
    background: var(--gradient-neon);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.98);
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    padding: 10px;
    z-index: 998;
}

.mobile-bottom-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-primary);
    font-size: 0.7rem;
    text-decoration: none;
}

.mobile-bar-btn i {
    font-size: 1.3rem;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    padding: 15px 0;
    margin-top: 140px;
    background: rgba(0, 0, 0, 0.3);
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--neon-cyan);
}

.breadcrumb span {
    color: var(--text-secondary);
}

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

.sitemap-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.sitemap-category h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.sitemap-category ul {
    list-style: none;
}

.sitemap-category li {
    margin-bottom: 8px;
}

.sitemap-category a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-category a:hover {
    color: var(--neon-pink);
}

/* ========================================
   CITY PAGES
   ======================================== */
.city-header {
    text-align: center;
    padding: 60px 20px;
    background: var(--gradient-sunset);
    margin-top: 140px;
}

.city-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.district-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    color: var(--text-primary);
    transition: var(--transition);
    cursor: pointer;
}

.district-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--shadow-neon);
}

/* ========================================
   KEYWORD PAGES
   ======================================== */
.keyword-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    margin-top: 140px;
}

.keyword-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 0, 255, 0.1);
}

.content-section h2 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.content-section h3 {
    color: var(--neon-pink);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

@keyframes text-glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6); }
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 7px var(--neon-cyan),
            0 0 10px var(--neon-cyan),
            0 0 21px var(--neon-cyan),
            0 0 42px var(--neon-pink),
            0 0 82px var(--neon-pink),
            0 0 92px var(--neon-pink);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LOADING
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 0, 255, 0.2);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 8, 0.98);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-top {
        display: none;
    }
    
    .banner-slider {
        height: 400px;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .breadcrumb {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 350px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-buttons {
        display: none;
    }
    
    .mobile-bottom-bar {
        display: block;
    }
    
    .city-header {
        margin-top: 80px;
        padding: 40px 20px;
    }
    
    .keyword-hero {
        margin-top: 80px;
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-slider {
        height: 300px;
    }
    
    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.hidden { display: none; }
.visible { display: block; }

/* SEO Content Styling */
.seo-content {
    line-height: 2;
    color: var(--text-secondary);
}

.seo-content h2 {
    color: var(--neon-cyan);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.seo-content h3 {
    color: var(--neon-pink);
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.seo-content ul {
    margin: 15px 0 15px 25px;
}

.seo-content li {
    margin-bottom: 8px;
}

/* Checkmark List */
.check-list {
    list-style: none;
}

.check-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.price-table th {
    background: rgba(255, 0, 255, 0.2);
    color: var(--neon-cyan);
    font-weight: bold;
}

.price-table tr:hover {
    background: rgba(0, 255, 255, 0.05);
}

/* FAQ Accordion */
.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--neon-cyan);
    font-weight: bold;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}
