/* ==========================================
   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 */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a2e;
    --accent-color: #ff6b35;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --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: #c5a028;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #252540;
    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(--primary-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(--white);
    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(--primary-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: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: relative;
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(26,26,46,0.7) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212,175,55,0.8) 0%, transparent 70%);
    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: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Hero Title */
.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 50%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease, shine 3s linear infinite;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 50%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    display: inline-block;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease;
    color: rgba(255,255,255,0.9);
}

.typing-text {
    color: var(--primary-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: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    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(212,175,55,0.5);
}

.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: linear-gradient(to bottom, transparent, rgba(212,175,55,0.5), transparent);
}

/* 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: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: #1a1a2e;
    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: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.6);
}

.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(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}

.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: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    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: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border-color: rgba(212,175,55,0.5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1));
    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: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.airco-service-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    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: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
    color: var(--primary-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: linear-gradient(135deg, rgba(135, 206, 250, 0.1), rgba(173, 216, 230, 0.05));
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #87CEEB;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.airco-intro i {
    font-size: 32px;
    color: #87CEEB;
    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: linear-gradient(135deg, var(--primary-color), #FFD700);
    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: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    border: 1px solid rgba(212,175,55,0.2);
    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(212,175,55,0.3);
}

.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: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-radius: 12px;
    border: 2px dashed rgba(212,175,55,0.3);
}

.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: linear-gradient(135deg, var(--primary-color), #e6c658);
    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(212, 175, 55, 0.1);
}

.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: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    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: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a4a 100%);
    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(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================
   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: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(212,175,55,0.02));
    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: #FFD700;
    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(212,175,55,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(212,175,55,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: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .appointment-wrapper,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .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;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .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;
    }
    
    /* Occasions Filters Responsive */
    .occasions-filters {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .hero {
        min-height: 100vh;
        margin-top: 140px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .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: linear-gradient(135deg, rgba(26,26,46,0.98), rgba(26,26,46,0.95));
    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: linear-gradient(135deg, var(--primary-color), #c4a137);
    color: var(--text-dark);
}

.btn-cookie.accept:hover {
    background: linear-gradient(135deg, #c4a137, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.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;
    }
}

