/* ==========================================
   MODERN PROFESSIONAL AUTO GARAGE WEBSITE
   Auto Service Koppejan
   ========================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Professional Automotive Color Palette */
:root {
    --primary-color: #5348FD;        /* Logo Paars - knoppen, iconen, interactief */
    --secondary-color: #1a1a1a;      /* Bijna-zwart - donkere achtergronden */
    --accent-color: #FF061A;         /* Logo Rood - sectielabels, subtitels */
    --metallic-silver: #B6B4B1;      /* Logo Grijs - randen, subtiele accenten */
    --text-dark: #1a1a1a;            /* Bijna-zwart - primaire tekst */
    --text-light: #6c757d;           /* Grijs - secundaire tekst */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;             /* Light Background */
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --gray-800: #343a40;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3d34d0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #3d34d0;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--gray-100);
    box-shadow: var(--shadow-md);
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info a {
    color: var(--white);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.main-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: var(--accent-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu > li > a {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

/* Exclude CTA button from active state styling */
.nav-menu > li > a.btn-primary.active {
    color: var(--white);
    background-color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

/* Exclude CTA button from underline effect */
.nav-menu > li > a.btn-primary::after {
    display: none;
}

/* Admin Login Button */
.admin-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 16px;
}

.admin-login-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.admin-login-btn::after {
    display: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 15px;
}

.dropdown-menu li a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION - LUXURY EDITION
   ========================================== */

.hero {
    margin-top: 140px;
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: relative;
    height: 100%;
    min-height: 72vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.80);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(182,180,177,0.25);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 25%;
    animation-delay: 9s;
    animation-duration: 19s;
}

.particle:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }
    75% {
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0 40px;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(83,72,253,0.10);
    border: 2px solid rgba(83,72,253,0.45);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Hero Title */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #ffffff;
}

.hero-title-highlight {
    color: #ffffff;
    display: inline-block;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-hero-outline {
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.2);
    color: var(--white);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus-visible {
    background: var(--white);
    color: var(--secondary-color);
}

/* Hero Filter Bar */
.hero-filter-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    text-align: left;
}

.hero-filter-title {
    margin: 0 0 14px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.hfb-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.hfb-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hfb-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hfb-group label i {
    color: var(--primary-color);
}

.hfb-group .filter-select {
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    color: var(--gray-700);
    transition: border-color 0.2s;
    width: 100%;
}

.hfb-group .filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(83,72,253,0.12);
}

.hfb-actions {
    min-width: 160px;
}

.hfb-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hfb-search-btn {
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hfb-reset-btn {
    padding: 11px 14px;
    background: var(--gray-200);
    border: none;
    border-radius: 8px;
    color: var(--gray-700);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hfb-reset-btn:hover {
    background: var(--gray-300);
}

.typing-text {
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(83,72,253,0.45);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(83,72,253,0.35);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1.4s ease;
    flex-wrap: wrap;
}

.btn-luxury {
    background: #5348FD;
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: left 0.5s;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83,72,253,0.55);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    padding: 16px 43px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83,72,253,0.35);
}

.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-luxury:hover .btn-icon,
.btn-glass:hover .btn-icon {
    transform: translateX(5px);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    animation: fadeInUp 1.6s ease;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.hero-features .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(83,72,253,0.12);
    border-color: rgba(83,72,253,0.45);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(83,72,253,0.12);
    border-radius: 12px;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.feature-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   AIRCO SERVICE SECTION
   ========================================== */

.airco-service-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.airco-service-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: transparent;
    border-radius: 50%;
    z-index: 0;
}

.airco-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.airco-content .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.airco-content .section-label {
    display: inline-block;
    background: rgba(255,6,26,0.08);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.airco-content .section-title {
    font-size: 42px;
    margin-bottom: 0;
    text-align: left;
}

.airco-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.airco-intro {
    background: rgba(182,180,177,0.08);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--metallic-silver);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.airco-intro i {
    font-size: 32px;
    color: var(--metallic-silver);
    flex-shrink: 0;
    margin-top: 5px;
}

.airco-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.airco-intro strong {
    color: var(--primary-color);
}

.airco-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box i {
    font-size: 28px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.airco-services h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.airco-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.airco-service-card {
    text-align: center;
    padding: 25px 15px;
    background: #ffffff;
    border: 1px solid rgba(182,180,177,0.35);
    border-radius: 10px;
    transition: all 0.3s;
}

.airco-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(83,72,253,0.22);
}

.airco-service-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.airco-service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.airco-service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.airco-cta {
    text-align: center;
    padding: 30px;
    background: rgba(83,72,253,0.05);
    border-radius: 12px;
    border: 2px dashed rgba(83,72,253,0.25);
}

.airco-cta .btn {
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .airco-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .airco-content .section-title {
        font-size: 32px;
    }
    
    .airco-intro {
        flex-direction: column;
        gap: 15px;
    }
    
    .airco-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-box {
        margin: 0 auto;
    }
    
    .airco-badge {
        top: 15px;
        right: 15px;
        padding: 15px 20px;
    }
}

/* ==========================================
   USP SECTION
   ========================================== */

.usp-section {
    background-color: var(--gray-100);
    padding: 60px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.usp-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.usp-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,46,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success);
    font-size: 12px;
}

/* ==========================================
   OCCASIONS SECTION
   ========================================== */

.occasions-section {
    background-color: var(--gray-100);
}

/* Occasions Filters */
.occasions-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label i {
    color: var(--primary-color);
    font-size: 16px;
}

.filter-select {
    padding: 10px 12px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 14px;
    background-color: white;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover {
    border-color: var(--primary-color);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(83, 72, 253, 0.14);
}

.btn-reset-filters {
    padding: 10px 20px;
    background: var(--gray-200);
    border: none;
    border-radius: var(--border-radius);
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.btn-reset-filters:hover {
    background: var(--gray-300);
    color: var(--gray-900);
}

.filter-results-info {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 500;
}

.filter-results-info span {
    color: var(--primary-color);
    font-weight: 700;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.occasion-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.occasion-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.occasion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.occasion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.occasion-content {
    padding: 25px;
}

.occasion-header {
    margin-bottom: 15px;
}

.occasion-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.occasion-price {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.occasion-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.spec-item i {
    color: var(--primary-color);
}

/* Occasions Price Info */
.occasions-price-info {
    margin: 50px auto 40px;
    max-width: 800px;
}

.price-info-content {
    background: var(--gray-100);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-info-header i {
    font-size: 32px;
    color: var(--primary-color);
}

.price-info-header h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.price-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.price-info-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ==========================================
   APPOINTMENT SECTION
   ========================================== */

.appointment-section {
    background: var(--secondary-color);
    color: var(--white);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.appointment-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.appointment-info p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.info-item a {
    color: var(--white);
}

.appointment-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.appointment-form h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(83, 72, 253, 0.14);
}

.form-group textarea {
    resize: vertical;
}

.repair-photo-group[hidden] {
    display: none;
}

.form-field-help,
.form-status {
    margin: 8px 0 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

.form-status:not(:empty) {
    padding: 10px 12px;
    background: var(--gray-100);
    border-left: 3px solid var(--primary-color);
}

.occasion-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.occasion-detail-link:hover {
    color: var(--accent-color);
}

/* ==========================================
   OCCASION DETAIL PAGE
   ========================================== */

.occasion-detail-page {
    background: var(--gray-100);
}

.detail-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.detail-header-content {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.detail-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.detail-logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.detail-back-link {
    color: var(--primary-color);
    font-weight: 700;
}

.detail-back-link i {
    margin-right: 8px;
}

.occasion-detail {
    padding: 32px 0 80px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
}

.detail-intro {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.detail-intro h1 {
    margin: 10px 0 8px;
    font-size: 40px;
}

.detail-intro p {
    color: var(--text-light);
}

.detail-status {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 4px;
    background: #dff4e4;
    color: #146c2e;
    font-size: 13px;
    font-weight: 700;
}

.detail-status-reserved {
    background: #fff0cf;
    color: #7c5400;
}

.detail-status-sold {
    background: #eceff1;
    color: #495057;
}

.detail-price,
.detail-contact-price {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    text-align: right;
}

.detail-price strong,
.detail-contact-price {
    display: block;
    font-size: 30px;
}

.detail-price span {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 32px;
}

.detail-main-image {
    display: block;
    overflow: hidden;
    background: var(--gray-200);
    aspect-ratio: 16 / 10;
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.detail-thumbnails a {
    overflow: hidden;
    border: 2px solid transparent;
    aspect-ratio: 4 / 3;
}

.detail-thumbnails a:hover,
.detail-thumbnails a:focus-visible {
    border-color: var(--primary-color);
}

.detail-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.detail-section h2 {
    margin-bottom: 16px;
    font-size: 25px;
}

.detail-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.detail-specifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--gray-200);
}

.detail-specifications div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-specifications div:nth-child(odd) {
    padding-right: 24px;
}

.detail-specifications div:nth-child(even) {
    padding-left: 24px;
}

.detail-specifications dt {
    color: var(--text-light);
}

.detail-specifications dd {
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
    text-align: right;
}

.detail-assurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.detail-contact-card {
    position: sticky;
    top: 24px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.detail-contact-card .detail-contact-price {
    margin-bottom: 8px;
    text-align: left;
}

.detail-contact-card > p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.detail-contact-card .btn {
    margin-bottom: 10px;
}

.detail-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--text-dark);
    font-weight: 700;
    border-top: 1px solid var(--gray-200);
}

.detail-contact-link i {
    width: 20px;
    color: var(--primary-color);
    text-align: center;
}

.detail-trade-in {
    margin: 10px 0 0 !important;
    color: #146c2e !important;
    font-weight: 700;
}

.detail-unavailable {
    padding: 12px;
    background: var(--gray-100);
    color: var(--text-dark) !important;
}

/* ==========================================
   PRIVACY AND COOKIE PAGES
   ========================================== */

.legal-page { background: var(--gray-100); }
.legal-header { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.legal-header-content { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; }
.legal-content { padding: 56px 0 80px; }
.legal-container { max-width: 860px; }
.legal-container h1 { margin-bottom: 8px; font-size: 40px; }
.legal-intro { margin-bottom: 36px; color: var(--text-light); }
.legal-container section { padding: 26px 0; border-top: 1px solid var(--gray-200); }
.legal-container h2 { margin-bottom: 12px; font-size: 24px; }
.legal-container p, .legal-container li { color: var(--text-light); }
.legal-container ul { margin: 0; padding-left: 22px; list-style: disc; }
.legal-container li + li { margin-top: 8px; }
.legal-container a { color: var(--primary-color); text-decoration: underline; }
.legal-table { width: 100%; margin-top: 18px; border-collapse: collapse; background: var(--white); }
.legal-table th, .legal-table td { padding: 12px; border: 1px solid var(--gray-200); text-align: left; vertical-align: top; }
.legal-table th { background: var(--gray-100); }

.form-consent {
    margin-bottom: 12px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    line-height: 1.5;
}

.form-consent input {
    width: auto;
    margin-top: 4px;
}

.form-note {
    margin: 0 0 20px;
    color: var(--text-light);
    font-size: 13px;
}

:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat span {
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    background-color: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.stars {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(182,180,177,0.07);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-intro p {
    font-size: 17px;
    color: var(--text-color);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.contact-intro .contact-cta {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-dark);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background-color: var(--gray-100);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

/* ==========================================
   FOOTER
   ========================================== */

.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom-content {
    margin-bottom: 10px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.footer-credit {
    margin-top: 10px;
}

.footer-credit p {
    font-size: 13px;
    opacity: 0.6;
    margin: 0;
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-credit a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-admin {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-admin .admin-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(182,180,177,0.3);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    width: auto;
    height: auto;
}

.footer-admin .admin-login-btn:hover {
    background: rgba(83,72,253,0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-admin .admin-login-btn i {
    font-size: 14px;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hfb-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hfb-actions {
        grid-column: 1 / -1;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .appointment-wrapper,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-contact-card {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        display: block;
        width: 100%;
        padding: 14px 24px;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-menu > li:last-child > a {
        border-bottom: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .hero {
        min-height: auto;
        margin-top: 140px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .detail-header-content,
    .detail-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-header-content {
        min-height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .detail-intro h1 {
        font-size: 30px;
    }

    .detail-price {
        text-align: left;
    }

    .detail-specifications,
    .detail-assurance {
        grid-template-columns: 1fr;
    }

    .detail-specifications div:nth-child(odd),
    .detail-specifications div:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    /* Hero Filter Bar responsive */
    .hfb-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .hfb-actions {
        grid-column: 1 / -1;
    }

    .hfb-btns {
        justify-content: stretch;
    }

    .hfb-search-btn {
        flex: 1;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .opening-hours {
        max-width: 100%;
        font-size: 13px;
        white-space: normal;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-info-content {
        padding: 25px 20px;
    }
    
    .price-info-header h3 {
        font-size: 18px;
    }
    
    .price-info-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .occasions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    border-top: 2px solid var(--primary-color);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-text i {
    font-size: 32px;
    color: var(--primary-color);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cookie-text p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--white);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie.accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-cookie.accept:hover {
    background: #3d34d0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(83,72,253,0.45);
}

.btn-cookie.decline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-cookie.decline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-text i {
        font-size: 28px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie {
        width: 100%;
        justify-content: center;
    }
}



