/* =============================================
   GLOBAL STYLES & VARIABLES
   ============================================= */

:root {
    --primary-burgundy: #B71C1C;
    --dark-burgundy: #7A0D0D;
    --fire-red: #D32F2F;
    --fire-dark: #6B0E0E;
    --cream: #F7F0EB;
    --beige: #E8D4C4;
    --dark-brown: #2B2B2B;
    --anthracite: #1A1A1A;
    --smoke: rgba(0, 0, 0, 0.65);
    --flame-gradient: linear-gradient(140deg, rgba(211, 47, 47, 0.85), rgba(255, 87, 34, 0.75));
    --gold: #FFC107;
    --accent-gold: #FF5722;
    --light-text: #F8F8F8;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45)), var(--cream);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100vw;
}

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

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

.header {
    background: linear-gradient(90deg, rgba(107, 14, 14, 0.82), rgba(122, 13, 13, 0.78));
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    color: var(--light-text);
    padding: 0;
    position: fixed;
    top: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
    z-index: 200;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: space-between;
    min-height: 72px;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
}

.logo i {
    font-size: 1.6rem;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-name {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.logo-suffix {
    font-size: 1.35rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    flex: none;
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 0.55rem 0.35rem;
    letter-spacing: 0.02em;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

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

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

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--light-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 5px 0;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.cta-button {
    padding: 0.65rem 1.4rem;
    background-color: var(--fire-red);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    min-width: 170px;
}

.cta-button:hover {
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Pic/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--flame-gradient);
    mix-blend-mode: multiply;
    opacity: 0.85;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light-text);
    max-width: 620px;
    padding: 2.5rem;
    text-align: left;
    animation: fadeInUp 1s ease-out;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: var(--light-text);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Lora', serif;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--light-text);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-badge i {
    font-size: 1.05rem;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--fire-red);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--fire-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
    transform: translateY(-3px);
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits {
    background-color: var(--cream);
    padding: 5rem 0;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.strength-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--fire-red);
}

.strength-item:hover {
    box-shadow: 0 8px 25px rgba(107, 44, 63, 0.2);
}

.strength-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--flame-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.strength-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.strength-content p {
    color: var(--dark-brown);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
    background-color: var(--white);
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.about-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-list li strong {
    color: var(--primary-burgundy);
}

.about-content .btn {
    margin-top: 1rem;
}

/* =============================================
   ASSORTMENT SECTION
   ============================================= */

.assortment {
    background-color: var(--beige);
    padding: 5rem 0;
    text-align: center;
}

.assortment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    font-family: 'Lora', serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(107, 44, 63, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--accent-gold);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-burgundy);
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    color: var(--dark-brown);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* =============================================
   OFFERS SECTION
   ============================================= */

.offers {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--light-text);
}

.offers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.offers .section-subtitle {
    color: var(--light-text);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.offer-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.offer-price {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* =============================================
   JOIN SECTION
   ============================================= */

.join {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.15), rgba(183, 28, 28, 0.12));
    padding: 5rem 0;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.join-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.join-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.join-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.join-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--fire-red);
    padding-left: 1rem;
}

.join-list li strong {
    color: var(--primary-burgundy);
}

.join-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* =============================================
   CATERING / FAHRZEUGE SECTION
   ============================================= */

.catering {
    background-color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.catering h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

/* Vehicle Section Grid - 2 Columns */
.vehicle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2.5rem;
    text-align: left;
}

/* Left Column - Slider */
.vehicle-slider-wrapper {
    position: relative;
}

.vehicle-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
}

.vehicle-slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeInSlide 0.6s ease-in-out;
}

.vehicle-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(211, 47, 47, 0.85);
    border: none;
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background-color: var(--fire-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
    left: 20px;
}

.slider-nav-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--fire-red);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--fire-red);
}

.dot:hover {
    transform: scale(1.2);
}

/* Right Column - Vehicle Info List */
.vehicle-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-info-item {
    padding: 1rem;
    background: rgba(211, 47, 47, 0.08);
    border-left: 4px solid var(--fire-red);
    border-radius: 6px;
    opacity: 0.35;
    transition: all 0.4s ease;
    cursor: pointer;
}

.vehicle-info-item:hover {
    opacity: 0.5;
}

.vehicle-info-item.active {
    opacity: 1;
    background: rgba(211, 47, 47, 0.15);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.vehicle-info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.vehicle-info-item p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-brown);
}

.vehicle-slider-container {
    position: relative;
    margin-top: 3rem;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.catering-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catering-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.catering-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.catering-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.catering-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.catering-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
}

.catering-list li strong {
    color: var(--primary-burgundy);
}

/* =============================================
   QUALITY PROMISE SECTION
   ============================================= */

.quality-promise {
    background-color: var(--beige);
    padding: 5rem 0;
    text-align: center;
}

.quality-promise h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 2rem;
}

.quality-quote {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-burgundy);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.quality-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quality-point {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quality-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(107, 44, 63, 0.15);
}

.quality-point h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.75rem;
}

.quality-point p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
    background-color: var(--white);
    padding: 5rem 0;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.info-item p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item strong {
    color: var(--primary-burgundy);
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-burgundy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.opening-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.opening-hours tr {
    border-bottom: 1px solid var(--beige);
}

.opening-hours td {
    padding: 0.75rem 0;
    text-align: left;
    color: var(--dark-brown);
}

.opening-hours td:first-child {
    font-weight: 600;
    color: var(--primary-burgundy);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(193, 153, 102, 0.1);
}

.form-group button {
    margin-top: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: var(--dark-burgundy);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 241, 237, 0.1);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--light-text);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-text);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-grid,
    .catering-grid,
    .vehicle-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 64px;
        gap: 0;
    }

    .logo {
        order: 1;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 2;
        margin-left: auto;
    }

    .cta-button {
        display: none;
    }

    .nav-menu {
        order: 3;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        background: linear-gradient(135deg, rgba(107, 14, 14, 0.92), rgba(122, 13, 13, 0.92));
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 150;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 0.85rem 1.2rem;
        border-radius: 10px;
        margin: 0.2rem 0;
        text-align: left;
        font-size: 1rem;
        border-left: 3px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--accent-gold);
        transform: none;
    }

    .nav-menu a:after {
        display: none;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-grid,
    .offers-grid,
    .quality-points {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-grid,
    .catering-grid,
    .vehicle-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Vehicle Slider Responsive */
@media (max-width: 768px) {
    .vehicle-section {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .vehicle-slider {
        height: 350px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav-prev {
        left: 10px;
    }
    
    .slider-nav-next {
        right: 10px;
    }
    
    .vehicle-info-item {
        display: none;
        padding: 0.8rem;
        opacity: 1;
        transform: none;
    }
    
    .vehicle-info-item.active {
        display: block;
        transform: none;
        box-shadow: none;
    }
    
    .vehicle-info-item h3 {
        font-size: 1.1rem;
    }
    
    .vehicle-info-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .vehicle-section {
        gap: 1rem;
    }
    
    .vehicle-slider {
        height: 250px;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        gap: 0.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .vehicle-info-item {
        display: none;
        padding: 0.75rem;
    }
    
    .vehicle-info-item.active {
        display: block;
    }
    
    .vehicle-info-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .vehicle-info-item p {
        font-size: 0.85rem;
    }
    
    .catering h2 {
        font-size: 1.8rem;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

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

.text-gold {
    color: var(--accent-gold);
}

.text-burgundy {
    color: var(--primary-burgundy);
}

/* =============================================
   BESCAPE GAMES – FIKTIV-DISCLAIMER
   ============================================= */
.escape-disclaimer {
    background: #0F0C08;
    border-top: 1px solid rgba(200, 117, 40, 0.35);
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 300;
}
.escape-disclaimer__inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: rgba(200, 160, 80, 0.70);
    letter-spacing: 0.04em;
}
.escape-disclaimer__inner i {
    color: rgba(200, 117, 40, 0.70);
    flex-shrink: 0;
}
.escape-disclaimer__inner strong {
    color: rgba(220, 180, 100, 0.90);
    font-weight: 600;
}
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.35); }
.escape-disclaimer__inner a:hover { color: #f59034; }

.footer-bottom p a {
    color: inherit;
    opacity: 0.75;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    transition: opacity 0.2s ease;
}
.footer-bottom p a:hover {
    opacity: 1;
    text-decoration-color: currentColor;
}
