/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #e0f2fe;
    --secondary: #f0f9ff;
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --amber-500: #f59e0b;
    --yellow-400: #facc15;
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-300: #7dd3fc;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --sky-800: #075985;
    --sky-900: #0c4a6e;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: linear-gradient(to bottom, var(--sky-50), var(--white));
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.primary-button {
    display: inline-block;
    background-color: var(--sky-600);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.primary-button:hover {
    background-color: var(--sky-700);
    transform: translateY(-2px);
}

.outline-button {
    display: inline-block;
    background-color: transparent;
    color: var(--sky-600);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--sky-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background-color: var(--sky-50);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--sky-800), var(--sky-900));
    animation: backgroundPulse 2s infinite alternate;
}

@keyframes backgroundPulse {
    0% {
        background: radial-gradient(circle at center, var(--sky-800), var(--sky-900));
    }
    50% {
        background: radial-gradient(circle at center, var(--sky-700), var(--sky-900));
    }
    100% {
        background: radial-gradient(circle at center, var(--sky-800), var(--sky-900));
    }
}

.loading-lights {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.loading-lights::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--sky-400), var(--sky-500));
    filter: blur(100px);
    opacity: 0.3;
    animation: moveLight1 8s infinite ease-in-out;
}

.loading-lights::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--sky-300), var(--blue-500));
    filter: blur(80px);
    opacity: 0.2;
    animation: moveLight2 8s infinite ease-in-out;
}

@keyframes moveLight1 {
    0% { transform: translate(0%, 0%); }
    25% { transform: translate(100%, 50%); }
    50% { transform: translate(50%, 100%); }
    75% { transform: translate(0%, 50%); }
    100% { transform: translate(0%, 0%); }
}

@keyframes moveLight2 {
    0% { transform: translate(100%, 100%); }
    25% { transform: translate(0%, 50%); }
    50% { transform: translate(50%, 0%); }
    75% { transform: translate(100%, 50%); }
    100% { transform: translate(100%, 100%); }
}

.loading-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--sky-500) 0.5px, transparent 0.5px), 
                      linear-gradient(to right, var(--sky-500) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.2;
    animation: moveGrid 2s infinite linear;
}

@keyframes moveGrid {
    from { background-position: 0px 0px; }
    to { background-position: 30px 30px; }
}

.loading-circles {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-circles::before,
.loading-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--sky-400);
    opacity: 0;
    animation: ripple 3s infinite ease-out;
}

.loading-circles::before {
    animation-delay: 0s;
}

.loading-circles::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

.loading-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    animation: logoSpin 4s infinite ease-in-out;
}

@keyframes logoSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.8));
    animation: logoGlow 2s infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.8)); }
    100% { filter: drop-shadow(0 0 25px rgba(14, 165, 233, 0.9)); }
}

.progress-bar-container {
    position: relative;
    width: 200px;
    height: 8px;
    background-color: var(--gray-800);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sky-900), var(--sky-700), var(--sky-500), var(--sky-700), var(--sky-900));
    background-size: 200% 100%;
    width: 0%;
    animation: gradientShift 1s infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

.progress-glow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60px;
    background-color: var(--white);
    opacity: 0.5;
    animation: progressGlow 1s infinite ease-in-out;
}

@keyframes progressGlow {
    from { transform: translateX(-60px); }
    to { transform: translateX(200px); }
}

.progress-text {
    color: var(--sky-100);
    font-size: 0.75rem;
    font-family: monospace;
}

.final-explosion {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(12, 74, 110, 0.8) 0%, rgba(12, 74, 110, 0) 70%);
    opacity: 0;
    transform: scale(0);
}

.final-explosion.active {
    animation: explode 0.5s forwards;
}

@keyframes explode {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.final-curtain {
    position: absolute;
    inset: 0;
    background-color: var(--white);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleY(0);
    transform-origin: top;
}

.final-curtain.active {
    animation: curtainDrop 0.5s forwards ease-in-out;
}

@keyframes curtainDrop {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.final-logo-container {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.final-curtain.active .final-logo-container {
    animation: finalLogoReveal 0.5s 0.3s forwards;
}

@keyframes finalLogoReveal {
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.final-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.05);
}

.brand-logo {
    position: relative;
    height: 40px;
    width: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.brand-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.brand-text {
    display: none;
}

.brand-text h1 {
    font-size: 1.125rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--sky-600), var(--sky-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    margin: 0;
}

.brand:hover .brand-text h1 {
    background: linear-gradient(to right, var(--sky-700), var(--sky-600));
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-text p {
    font-size: 0.625rem;
    color: var(--gray-500);
    margin: 0;
}

.desktop-menu {
    display: none;
}

.nav-link {
    padding: 0.375rem 0.75rem;
    color: var(--gray-800);
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--sky-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--sky-400), var(--sky-600));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-button {
    display: block;
}

.mobile-menu-button button {
    background: none;
    border: none;
    color: var(--gray-900);
    font-size: 1.25rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.mobile-menu-button button:hover {
    background-color: var(--sky-50);
    color: var(--sky-600);
}

.mobile-menu-button button.active {
    background-color: var(--sky-50);
    color: var(--sky-600);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.mobile-menu.active {
    height: auto;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.mobile-nav-link {
    text-align: right;
    padding: 0.625rem 0.75rem;
    color: var(--gray-800);
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.mobile-nav-link:hover {
    color: var(--sky-600);
    background-color: var(--sky-50);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 0 3rem;
}

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

.hero-content {
    order: 2;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-title span {
    display: block;
}

.hero-title span:first-child {
    margin-bottom: 0.375rem;
}

.gradient-text {
    background: linear-gradient(to left, var(--sky-600), var(--sky-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 36rem;
    margin-bottom: 1.25rem;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    margin-top: 1.5rem;
}

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

.stat-value {
    color: var(--sky-600);
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.hero-image-container {
    order: 1;
    position: relative;
    animation: fadeInScale 0.8s 0.2s ease forwards;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image {
    position: relative;
    z-index: 10;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(14, 165, 233, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) rotateY(0deg);
}

.slide:not(.active) {
    transform: translate(-50%, -50%) rotateY(10deg);
}

.new-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: linear-gradient(135deg, var(--sky-600), var(--sky-500));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 20;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 10px 20px -3px rgba(14, 165, 233, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: var(--sky-600);
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
}

.scroll-indicator i {
    color: var(--sky-600);
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 1.5rem;
    margin: 2rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray-600);
    max-width: 36rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    position: relative;
}

.show-more-button {
    grid-column: 1 / -1;
    background-color: var(--sky-600);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem auto;
    display: block;
    width: fit-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.show-more-button:hover {
    background-color: var(--sky-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.show-more-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--sky-100);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--sky-100);
    color: var(--sky-600);
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.testimonial-info h4 {
    font-weight: bold;
    color: var(--gray-900);
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-stars {
    color: var(--amber-500);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 4rem;
    color: var(--sky-50);
    opacity: 0.5;
    font-family: serif;
    line-height: 1;
}

/* Menu Section */
.menu-section {
    position: relative;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, var(--sky-100), var(--white));
    border-top: 4px solid var(--sky-300);
    border-bottom: 4px solid var(--sky-300);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.decorative-border {
    position: absolute;
    width: 3rem;
    height: 3rem;
}

.decorative-border.top-left {
    top: -1.5rem;
    left: -1.5rem;
    border-top: 4px solid var(--sky-500);
    border-left: 4px solid var(--sky-500);
    border-top-left-radius: 0.75rem;
}

.decorative-border.top-right {
    top: -1.5rem;
    right: -1.5rem;
    border-top: 4px solid var(--sky-500);
    border-right: 4px solid var(--sky-500);
    border-top-right-radius: 0.75rem;
}

.decorative-border.bottom-left {
    bottom: -1.5rem;
    left: -1.5rem;
    border-bottom: 4px solid var(--sky-500);
    border-left: 4px solid var(--sky-500);
    border-bottom-left-radius: 0.75rem;
}

.decorative-border.bottom-right {
    bottom: -1.5rem;
    right: -1.5rem;
    border-bottom: 4px solid var(--sky-500);
    border-right: 4px solid var(--sky-500);
    border-bottom-right-radius: 0.75rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.product-card {
    position: relative;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    animation: fadeInUp 0.4s forwards;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.category-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
    background-color: var(--sky-100);
    color: var(--sky-700);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.product-image-container {
    position: relative;
    height: 14rem;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--sky-50), var(--gray-50));
}

.product-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card:hover .product-image-wrapper {
    transform: scale(1.05) translateY(-5px);
}

.product-image {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04));
}

.product-content {
    padding: 1.25rem;
    position: relative;
}

.content-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--sky-200), transparent);
}

.product-name {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
    position: relative;
}

.product-card:hover .product-name {
    color: var(--sky-600);
}

.special-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.5rem;
    background-color: var(--amber-500);
    color: var(--white);
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 0.125rem;
    transform: rotate(3deg);
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    height: 2.5rem;
    overflow: hidden;
    line-height: 1.4;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-100);
}

.price-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(to right, var(--sky-50), var(--blue-50));
    border: 1px solid var(--sky-100);
    transition: transform 0.3s ease;
}

.price-badge:hover {
    transform: scale(1.05);
}

.price-text {
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--sky-600), var(--sky-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Location Section */
.location-section {
    position: relative;
    padding: 3rem 1rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    margin: 3rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.map-container {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.contact-info {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-icon {
    background-color: var(--sky-100);
    color: var(--sky-600);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
}

.info-content h4 {
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--gray-600);
    font-size: 0.75rem;
    margin: 0;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(to top, var(--sky-700), var(--sky-600));
    color: var(--white);
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-about {
    margin-bottom: 0.75rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand img {
    height: 2rem;
}

.footer-brand h3 {
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
}

.footer-brand p {
    color: var(--sky-100);
    font-size: 0.625rem;
    margin: 0;
}

.footer-about p {
    color: var(--sky-100);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

.footer h3 {
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    border-right: 2px solid var(--sky-300);
    padding-right: 0.5rem;
}

.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: var(--sky-100);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}

.footer-contact i {
    color: var(--sky-300);
    margin-left: 0.5rem;
}

.footer-contact p {
    color: var(--sky-100);
    margin: 0;
}

.hours-info {
    display: flex;
    align-items: flex-start;
    font-size: 0.75rem;
}

.hours-info i {
    color: var(--sky-300);
    margin-left: 0.5rem;
    margin-top: 0.125rem;
}

.hours-info p {
    color: var(--sky-100);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid var(--sky-500);
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
}

.footer-bottom p {
    color: var(--sky-100);
    text-align: center;
    margin: 0;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .brand-text {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .mobile-menu-button {
        display: none;
    }

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

    .hero-content {
        order: 1;
    }

    .hero-image-container {
        order: 2;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .location-grid {
        grid-template-columns: 3fr 2fr;
    }

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

    .hero-image {
        max-width: 600px;
        padding: 2.5rem;
    }
    
    .slide {
        max-height: 500px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-image {
        max-width: 700px;
        padding: 3rem;
    }
    
    .slide {
        max-height: 600px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1rem 0;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .product-card {
        margin: 0.5rem;
    }

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

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-contact ul {
        align-items: center;
    }

    .show-more-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .product-card {
        margin: 0.25rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0.75rem 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-about {
        margin-bottom: 0.75rem;
    }

    .footer-brand {
        justify-content: center;
        margin-bottom: 0.75rem;
    }

    .footer-brand img {
        height: 2rem;
        width: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.75rem;
    }

    .footer-about p {
        font-size: 0.75rem;
        max-width: 300px;
        margin: 0 auto;
        line-height: 1.4;
    }

    .footer h3 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--sky-300);
        padding-bottom: 0.375rem;
        display: inline-block;
    }

    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        justify-content: center;
        margin: 0 auto;
        max-width: 250px;
    }

    .footer-links a {
        font-size: 0.75rem;
        padding: 0.375rem;
        display: block;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--white);
        transform: translateX(-5px);
    }

    .footer-contact ul {
        align-items: center;
        gap: 0.75rem;
    }

    .footer-contact li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.375rem;
        font-size: 0.75rem;
    }

    .footer-contact i {
        font-size: 0.875rem;
        color: var(--sky-300);
    }

    .footer-contact p {
        font-size: 0.75rem;
    }

    .hours-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin: 0 auto;
        max-width: 250px;
    }

    .hours-info i {
        font-size: 0.875rem;
        color: var(--sky-300);
    }

    .hours-info p {
        font-size: 0.75rem;
        margin: 0.125rem 0;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--sky-500);
    }

    .footer-bottom p {
        font-size: 0.7rem;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .footer {
        padding: 1.25rem 0.5rem 0.5rem;
    }

    .footer-grid {
        gap: 1.25rem;
    }

    .footer-brand img {
        height: 1.75rem;
        width: 1.75rem;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-links ul {
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }

    .footer-contact li {
        font-size: 0.7rem;
    }

    .hours-info {
        flex-direction: column;
        gap: 0.375rem;
    }

    .hours-info p {
        font-size: 0.7rem;
    }
}