* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b8b;
    --secondary: #ffd166;
    --dark: #333;
    --light: #fff;
    --gray: #f5f5f5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
@keyframes headerGradient {
    0% {
        background: linear-gradient(135deg, var(--light) 0%, #fff5f7 100%);
    }
    50% {
        background: linear-gradient(135deg, #fff5f7 0%, #ffe8ee 100%);
    }
    100% {
        background: linear-gradient(135deg, var(--light) 0%, #fff5f7 100%);
    }
}

header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 50%, #fff5f7 100%);
    box-shadow: 0 8px 32px rgba(255, 107, 139, 0.2), 0 2px 8px rgba(74, 111, 165, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerGradient 10s ease-in-out infinite;
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 107, 139, 0.15);
}

header:hover {
    box-shadow: 0 12px 45px rgba(255, 107, 139, 0.3), 0 4px 12px rgba(74, 111, 165, 0.2);
    backdrop-filter: blur(15px);
    background: linear-gradient(135deg, #ffffff 0%, #f0ebff 50%, #fff0f5 100%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #ff6b8b 0%, #4a6fa5 100%);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
}

.logo:hover {
    transform: translateY(-3px);
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 107, 139, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 107, 139, 0.25);
    background: linear-gradient(135deg, #fff5f7, #ffffff);
}

.logo-image:hover {
    transform: scale(1.12) rotate(3deg);
    box-shadow: 0 8px 28px rgba(255, 107, 139, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 107, 139, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #4a6fa5 0%, #ff6b8b 50%, #ff8fa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo h1:hover {
    letter-spacing: 0.5px;
}

.logo p {
    color: #ff8fa3;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff6b8b 0%, #ff8fa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 18px;
    position: relative;
    border-radius: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.3);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(255, 107, 139, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 139, 0.2);
}

.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, #ff6b8b 0%, #ff8fa3 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 139, 0.3);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    width: calc(100% - 36px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff8fa3);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 139, 0.3);
}

.admin-btn {
    background: linear-gradient(135deg, var(--primary), #ff8fa3);
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 139, 0.4);
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent;
    position: relative;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 139, 0.5);
    background: linear-gradient(135deg, #ff8fa3, var(--primary));
}

.admin-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,107,139,0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-btn:hover::before {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    margin-top: 70px;
    position: relative;
    overflow: hidden !important;
    clip-path: inset(0 0 0 0);
}

#hero-video-container {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 0 !important;
    display: block !important;
}

#hero-video-container video,
#hero-video-container iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border: none !important;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-title-wrapper {
    margin-bottom: 30px;
}

.hero-title-wrapper h2:first-child {
    color: #fff;
}

.gradient-text {
    background: linear-gradient(90deg, #ff6b8b, #ffd700, #ff6b8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    font-weight: 500;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #ff6b8b, #ff4757);
    padding: 15px 40px !important;
    font-size: 1.1rem;
    border-radius: 50px !important;
    box-shadow: 0 10px 30px rgba(255, 107, 139, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 139, 0.6);
}


/* Sliding Text Animation - FIXED */
.sliding-text-container {
    height: 70px;
    overflow: hidden;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255,107,139,0.1) 0%, rgba(255,107,139,0.05) 100%);
    border-radius: 15px;
    padding: 10px 0;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,107,139,0.2);
}

@keyframes slideInOutFixed {
    0% { opacity: 0; transform: translateY(30px); }
    5% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    95% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 0; transform: translateY(-30px); }
}

.sliding-text {
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: slideInOutFixed 5s ease-in-out infinite;
    position: absolute;
    white-space: nowrap;
}

.sliding-text:nth-child(1) {
    animation-delay: 0s;
    color: #fff;
}

.sliding-text:nth-child(2) {
    animation-delay: 5s;
    color: #ffd700;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sliding-text:nth-child(3) {
    animation-delay: 10s;
    color: #ff69b4;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sliding-text:nth-child(4) {
    animation-delay: 15s;
    color: #87ceeb;
    background: linear-gradient(90deg, #87ceeb, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sliding-text:nth-child(5) {
    animation-delay: 20s;
    color: #98fb98;
}

@keyframes slideInOut {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px);
    }
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ff4d6d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,139,0.3);
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Products Section */
.products {
    background: var(--gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,107,139,0.3);
}

.product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.product-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
    margin: 10px 0;
    background: linear-gradient(90deg, #ff6b8b, #ffd166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stock-warning {
    color: #ff6b8b;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-card .btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary), #ff8fa3);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.product-card .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255,107,139,0.4);
}

/* Features Showcase Section */
.features-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.features-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.features-showcase .section-title {
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2em;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.feature-card h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    padding: 30px 20px;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-form form {
    display: grid;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 139, 0.1);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 50px 0 20px;
    position: relative;
    z-index: 100;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu ul.active {
        display: flex;
    }

    .nav-menu ul.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5em;
        cursor: pointer;
        color: var(--dark);
        transition: var(--transition);
    }

    .mobile-menu-btn:hover {
        color: var(--primary);
    }

    .mobile-menu-btn.active {
        color: var(--primary);
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ... (Keep all previous CSS from earlier response) ... */

/* Add loading style */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.completed {
    background: #d4edda;
    color: #155724;
}

.status-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   NOTIFICATION STYLES
   ============================================ */

.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(400px);
    max-width: 350px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left: 5px solid #28a745;
    background: #f0f9f0;
    color: #155724;
}

.notification-success i {
    color: #28a745;
}

.notification-error {
    border-left: 5px solid #dc3545;
    background: #fdf5f5;
    color: #721c24;
}

.notification-error i {
    color: #dc3545;
}

.notification-info {
    border-left: 5px solid #17a2b8;
    background: #f0f7f8;
    color: #0c5460;
}

.notification-info i {
    color: #17a2b8;
}

/* Mobile Notification Styles */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form form {
        gap: 12px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form textarea {
        height: 100px;
    }
    
    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-400px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .contact-form textarea {
        height: 80px;
    }
}

/* Lightbox for Gallery */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-content img,
.lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 2010;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(255, 107, 139, 0.8);
    transform: scale(1.1);
}

/* ===== MOBILE BOTTOM NAVIGATION DRAWER ===== */
.mobile-drawer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    border-top: 2px solid #ff6b8b;
    box-shadow: 0 -5px 20px rgba(255, 107, 139, 0.15);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.drawer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 5px;
    position: relative;
}

.drawer-item i {
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.drawer-item span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-item:hover {
    color: #ff6b8b;
    background: rgba(255, 107, 139, 0.1);
    transform: translateY(-2px);
}

.drawer-item:hover i {
    color: #ff6b8b;
    transform: scale(1.2);
}

.drawer-item.active {
    color: #ff6b8b;
}

.drawer-item.active i {
    color: #ff6b8b;
    animation: bounce 0.6s ease;
}

.drawer-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b8b, #ffd700);
    border-radius: 2px 2px 0 0;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Mobile Drawer Media Queries */
@media (max-width: 768px) {
    .mobile-drawer {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    footer {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .drawer-item span {
        font-size: 0.65rem;
    }
    
    .drawer-item i {
        font-size: 1.3rem;
    }
    
    .mobile-drawer {
        height: 65px;
    }
    
    body {
        padding-bottom: 65px;
    }
}

    .notification {
        top: 70px;
        right: 5px;
        left: 5px;
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* ===== SCROLLABLE SIDE MENU ===== */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 2px 0 15px rgba(255, 107, 139, 0.2);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b8b, #ffd700);
    color: white;
    flex-shrink: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.side-menu-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.side-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.side-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.side-menu-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.side-menu-items::-webkit-scrollbar {
    width: 6px;
}

.side-menu-items::-webkit-scrollbar-track {
    background: transparent;
}

.side-menu-items::-webkit-scrollbar-thumb {
    background: #ff6b8b;
    border-radius: 3px;
}

.side-menu-items::-webkit-scrollbar-thumb:hover {
    background: #ff5a7f;
}

.side-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
}

.side-menu-item i {
    font-size: 1.3rem;
    color: #ff6b8b;
    width: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.side-menu-item span {
    display: block;
}

.side-menu-item:hover {
    background: rgba(255, 107, 139, 0.1);
    border-left-color: #ff6b8b;
    padding-left: 25px;
}

.side-menu-item:hover i {
    color: #ffd700;
    transform: translateX(3px);
}

.side-menu-item.admin-link {
    color: #ff6b8b;
    font-weight: 700;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 107, 139, 0.2);
}

.side-menu-item.admin-link:hover {
    background: rgba(255, 107, 139, 0.15);
    border-left-color: #ffd700;
}

@media (max-width: 768px) {
    .side-menu {
        width: 85vw;
        max-width: 280px;
    }
}