:root {
    /* Tech/Futuristic Palette */
    --bg-dark: #050511;
    --bg-panel: #0f1026;
    --primary-neon: #00f3ff;
    /* Cyan Glow */
    --secondary-neon: #7000ff;
    /* Electric Purple */
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-dim: #aab2cd;
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Neon Glow Shadows */
    --glow-sm: 0 0 10px rgba(0, 243, 255, 0.3);
    --glow-md: 0 0 20px rgba(0, 243, 255, 0.4);
    --glow-lg: 0 0 40px rgba(112, 0, 255, 0.5);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Cyber Grid Background */
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* --- Neon Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, var(--primary-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* Smaller VİTRİN & KAMPANYALAR section */
.showcase .section-header h2 {
    font-size: 1.8rem;
}

.showcase .section-header p {
    font-size: 0.95rem;
}

/* --- Futuristic Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.btn-primary:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: var(--glow-md);
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary-neon), #4a00e0);
    color: #fff;
    border: none;
}

.btn-accent:hover {
    box-shadow: var(--glow-lg);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    background: rgba(0, 243, 255, 0.1);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* --- HUD Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 17, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.header.scrolled .header-container {
    height: 80px;
}

.logo img {
    height: 85px;
    width: auto;
    filter: brightness(1.2);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 16px;
    color: var(--text-dim);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 8px var(--primary-neon);
}

/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    /* Slight offset */
    width: 240px;
    background: rgba(5, 5, 17, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-top: 2px solid var(--primary-neon);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 1100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-transform: none;
    /* Keep sub-items normal case if desired, or inherit */
    letter-spacing: 0.5px;
}

.dropdown-menu li a:hover {
    color: var(--primary-neon);
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.05) 0%, transparent 100%);
    border-left-color: var(--primary-neon);
    padding-left: 25px;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

.header-btn {
    background: #000;
    border: 1px solid var(--success);
    color: var(--success);
}

.header-btn:hover {
    background: var(--success);
    color: #000;
    box-shadow: 0 0 15px var(--success);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-white);
}

/* --- Cyber Hero --- */
.hero {
    padding-top: 200px;
    padding-bottom: 180px;
    position: relative;
    /* Hero Gradient Glow */
    background: radial-gradient(circle at 70% 50%, rgba(0, 243, 255, 0.08) 0%, transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    border: 1px solid rgba(0, 243, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

/* --- HUD Form Card --- */
.special-form-section {
    margin-top: -40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.special-card {
    background: rgba(15, 16, 38, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.05);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

/* Tech Decoration corners */
.special-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary-neon);
    border-left: 2px solid var(--primary-neon);
}

.special-card::before {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-neon);
    border-right: 2px solid var(--primary-neon);
}

.special-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.special-card-header i {
    color: var(--primary-neon);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--primary-neon);
}

.special-card-header p {
    font-size: 1.1rem;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-neon);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    opacity: 1;
}

.form-info-line {
    color: var(--text-dim);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-info-line:hover {
    color: var(--primary-neon);
}

/* --- Simple Catalog Grid --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.catalog-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
    z-index: 10;
}

.catalog-card:hover {
    border-color: var(--primary-neon);
    z-index: 11;
}

.catalog-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.catalog-label {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.8);
}

.catalog-card:hover .catalog-label {
    background: rgba(0, 243, 255, 0.2);
    color: var(--primary-neon);
}

/* View All Catalog Card */
.catalog-view-all {
    background: linear-gradient(135deg, var(--bg-panel) 0%, rgba(0, 243, 255, 0.1) 100%);
    border: 2px dashed var(--primary-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
}

.view-all-content {
    text-align: center;
    padding: 15px;
}

.view-all-content i {
    font-size: 2.5rem;
    color: var(--primary-neon);
    margin-bottom: 12px;
    display: block;
}

.view-all-content h3 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.view-all-content p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.catalog-view-all:hover {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15) 0%, rgba(0, 243, 255, 0.25) 100%);
}


@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .catalog-card img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .catalog-card img {
        height: 100px;
    }

    .catalog-label {
        padding: 8px;
        font-size: 0.75rem;
    }
}

.showcase-overlay {
    display: none;
}

/* --- Products --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.product-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    opacity: 0.9;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    opacity: 1;
}

.product-content {
    padding: 15px;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.product-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* --- Trust --- */
.trust {
    background: #08091a;
}

.trust-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(0, 243, 255, 0.03);
    border-color: rgba(0, 243, 255, 0.2);
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-neon);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* --- Quote Section --- */
.quote-section {
    position: relative;
    /* Backgrounds defined by ID below */
}

/* Dealer Form (Blue, Bottom-Up Glow) */
#dealer-form {
    background: linear-gradient(0deg, #002f6c 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(0, 140, 255, 0.2);
}

/* Quote Form (Blue, Top-Down Glow) */
#quote-form {
    background: linear-gradient(180deg, #002f6c 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(0, 140, 255, 0.2);
}

.quote-wrapper {
    background: rgba(0, 20, 40, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-content h2 {
    color: var(--primary-neon);
    margin-bottom: 10px;
}

.file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-dim);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- About/Footer --- */
.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-md);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-neon);
    margin-bottom: 5px;
}

.footer {
    background: #020208;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    padding: 80px 0 40px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer a:hover {
    color: var(--primary-neon);
    padding-left: 5px;
}

.float-whatsapp {
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

/* Responsive styles moved to css/responsive.css */

/* --- Campaign Section --- */
.campaign {
    background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.campaign-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* Gold tint */
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
}

.campaign-content {
    flex: 1;
}

.campaign-image {
    flex: 1;
    max-width: 500px;
}

.campaign-image img {
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.campaign h2 {
    font-size: 2.5rem;
    color: #ffd700;
    /* Gold */
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.campaign p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.highlight-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    padding: 15px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 30px;
}

.highlight-box strong {
    color: #ffd700;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .campaign-card {
        flex-direction: column-reverse;
        text-align: center;
    }

    .campaign-image {
        width: 100%;
    }

    .highlight-box {
        text-align: left;
    }
}

/* --- Promo Gallery Section --- */
.promo-gallery-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a1a 100%);
    position: relative;
    padding: 100px 0;
}

.promo-gallery-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.promo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-card {
    position: relative;
    background: rgba(15, 16, 38, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    /* Kare format (1:1) */
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-neon);
    box-shadow: 0 20px 60px rgba(0, 243, 255, 0.3);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card img {
    width: 100%;
    height: 100%;
    /* object-fit: contain yazıları kesmez */
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover img {
    transform: scale(1.05);
}

/* Özel highlight card */
.promo-card.special-highlight {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(15, 16, 38, 0.8);
}

.promo-card.special-highlight:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .promo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .promo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .promo-gallery-section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .promo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .promo-card {
        max-width: 100%;
    }

    .promo-gallery-section .section-header h2 {
        font-size: 1.8rem;
    }
}