/**
 * Ankara Tekel - Redesigned Premium Style Sheet
 * Theme: Anthracite Grey & Amber Accent
 */

:root {
    --bg-dark: #0a0d14;
    --bg-card: #131924;
    --bg-card-hover: #1b2333;
    --accent: #f59e0b; /* Amber 500 */
    --accent-hover: #fbbf24; /* Amber 400 */
    --accent-dark: #d97706; /* Amber 600 */
    --accent-glow: rgba(245, 158, 11, 0.15);
    --accent-light: rgba(245, 158, 11, 0.08);
    
    --wa-green: #25d366;
    --wa-green-hover: #20ba5a;
    --wa-glow: rgba(37, 211, 102, 0.2);
    
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(245, 158, 11, 0.25);
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Bar with Glassmorphism */
.navbar {
    background: rgba(10, 13, 20, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo h1 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 60%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent);
}

.nav-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.nav-call-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
    transition: var(--transition-smooth);
}

.nav-call-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 9px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 2.5px 0;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sticky Buttons (Desktop & Fallback) */
.sticky-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-call,
.btn-whatsapp-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-call {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.45);
}

.btn-whatsapp-sticky {
    background: linear-gradient(135deg, var(--wa-green) 0%, #128c7e 100%);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
    font-size: 24px;
}

.btn-whatsapp-sticky:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}

.btn-call span,
.btn-whatsapp-sticky span {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 13, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 20px 24px;
    z-index: 99;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.mobile-menu a.active {
    background: var(--accent-light);
    color: var(--accent);
    border-left: 3px solid var(--accent);
}

.mobile-menu.active {
    display: flex;
}

.mobile-cta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.mobile-cta-call,
.mobile-cta-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-cta-call {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
}

.mobile-cta-wa {
    background: linear-gradient(135deg, var(--wa-green) 0%, #128c7e 100%);
    color: #fff;
}

/* Premium Hero Mobile-First Section */
.hero-mobile-first {
    position: relative;
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.12), transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(37, 211, 102, 0.06), transparent 50%),
                linear-gradient(155deg, #07090e 0%, #0f131c 50%, #0a0c12 100%);
    color: var(--text-primary);
    padding: 40px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-mobile-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    border: 1px solid var(--border-hover);
    color: var(--accent-hover);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.05);
}

.hero-mobile-content h1 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 70%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-mobile-content > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-conversion-points {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.hero-conversion-points::-webkit-scrollbar {
    display: none;
}

.hero-conversion-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 14px;
    white-space: nowrap;
    flex: 0 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.hero-conversion-points span:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.hero-conversion-points i {
    color: var(--accent);
}

.hero-mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
}

.hero-action-btn {
    width: 100%;
    min-height: 60px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.hero-mobile-actions .btn-primary.hero-action-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
}

.hero-mobile-actions .btn-primary.hero-action-btn:hover {
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.hero-mobile-actions .btn-secondary.hero-action-btn {
    background: linear-gradient(135deg, var(--wa-green) 0%, #128c7e 100%);
    color: #fff;
}

.hero-mobile-actions .btn-secondary.hero-action-btn:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.hero-action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -65%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ctaShine 3.5s infinite linear;
}

@keyframes ctaShine {
    0% { left: -65%; }
    100% { left: 135%; }
}

.hero-mini-note {
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Fallback Standard Hero */
.hero {
    background: linear-gradient(155deg, #0b0f17 0%, #1a2233 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 24px;
    text-align: center;
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button UI */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--wa-green) 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

@media (min-width: 768px) {
    .hero-mobile-first {
        min-height: 80vh;
        padding: 60px 0;
    }

    .hero-mobile-content h1 {
        font-size: 52px;
    }

    .hero-mobile-content > p {
        font-size: 18px;
    }

    .hero-conversion-points {
        gap: 12px;
    }

    .hero-conversion-points span {
        font-size: 13px;
        padding: 8px 18px;
    }

    .hero-mobile-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features Section (Anthracite Themed Cards) */
.features {
    padding: 80px 24px;
    background: linear-gradient(180deg, #0a0d14 0%, #101520 100%);
    position: relative;
}

.features-intro {
    max-width: 680px;
    margin: -16px auto 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    text-align: left;
    padding: 36px 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    animation: featureRise 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.16s; }
.feature-card:nth-child(4) { animation-delay: 0.24s; }
.feature-card:nth-child(5) { animation-delay: 0.32s; }
.feature-card:nth-child(6) { animation-delay: 0.40s; }

.feature-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
}

.feature-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 24px;
}

.trust-strip span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-strip i {
    color: var(--accent);
}

.features-cta-box {
    max-width: 780px;
    margin: 20px auto 0;
    background: linear-gradient(135deg, #111622 0%, #1a2333 100%);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features-cta-box p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-primary);
}

.features-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.features-cta-actions .btn {
    min-width: 220px;
    justify-content: center;
}

@keyframes featureRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background-color: rgba(10, 13, 20, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
    background-color: rgba(10, 13, 20, 0.8);
}

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

.form-group button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
    transition: var(--transition-smooth);
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.success-message {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--wa-green);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Service Areas Section */
.service-areas-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 80px 24px;
}

.service-areas-intro {
    text-align: center;
    color: var(--text-muted);
    margin: -16px auto 36px;
    max-width: 680px;
    font-size: 15px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.service-area-card {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-area-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-area-card i {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 10px;
}

.service-area-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-areas-empty {
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 36px;
    text-align: center;
    color: var(--text-muted);
}

.service-areas-empty i {
    color: var(--accent);
    font-size: 26px;
    margin-bottom: 10px;
}

/* Order CTA Section (Redesigned with Amber / Anthracite Blend) */
.order-cta-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #101520 0%, #0a0d14 100%);
}

.order-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), transparent 70%),
                linear-gradient(135deg, #131924 0%, #171f2e 100%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.order-cta-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent-light);
    border: 1px solid var(--border-hover);
    color: var(--accent-hover);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.order-cta-box h2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.order-cta-box p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 28px;
}

.order-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.order-cta-btn {
    min-height: 56px;
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
}

.order-cta-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.order-cta-points span {
    font-size: 13px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.order-cta-points i {
    color: var(--accent);
}

/* Footer (Deep Anthracite) */
.footer {
    background-color: #07090e;
    color: var(--text-primary);
    padding: 60px 24px 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-section p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    color: var(--accent);
    font-size: 14px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 2px;
}

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

/* About / Info Page layout */
.info-section {
    padding: 60px 24px;
    background-color: var(--bg-dark);
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.info-card h2 {
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h2 i {
    color: var(--accent);
}

.info-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.info-card ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 15px;
}

.info-card ul li strong {
    color: var(--accent-hover);
}

.legal-content {
    max-width: 980px;
}

.legal-update {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 150;
    background: rgba(19, 25, 36, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 460px;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent-inner {
    padding: 20px;
}

.cookie-consent p {
    margin: 0 0 16px;
    color: var(--text-primary);
    font-size: 13.5px;
    line-height: 1.5;
}

.cookie-consent a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#cookieConsentAcceptBtn,
#cookieConsentRejectBtn {
    min-height: 44px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

#cookieConsentAcceptBtn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
}

#cookieConsentAcceptBtn:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

#cookieConsentRejectBtn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

#cookieConsentRejectBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .cookie-consent {
        left: auto;
        right: 24px;
        bottom: 24px;
    }
    
    .order-cta-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 30%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card a {
    transition: var(--transition-smooth);
}

.feature-card a:hover {
    color: var(--accent-hover) !important;
}
