/* services.css - Enhanced with glassmorphism and stars (blog style) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary-color: #14b8a6;
    --secondary-light: #5eead4;
    --accent-color: #fbbf24;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-border: rgba(139, 92, 246, 0.2);
    --text-dark: #0f172a;
    --text-light: #475569;
    --border-radius: 28px;
    --box-shadow: 0 25px 40px -12px rgba(139, 92, 246, 0.3);
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    --gradient-cover: linear-gradient(145deg, #ffffff, #f1f5f9);
    --header-bg: rgba(255, 255, 255, 0.85);
    --footer-bg: #f1f4f9;
    --modal-bg: white;
    --input-bg: white;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Glass additions */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-highlight: rgba(255, 255, 255, 0.6);
    --star-color: #ffffff;
    --bg-deep: #0b0f14;
}

body.dark {
    --primary-color: #a78bfa;
    --primary-dark: #8b5cf6;
    --primary-light: #c4b5fd;
    --secondary-color: #2dd4bf;
    --secondary-light: #99f6e4;
    --accent-color: #fcd34d;
    --dark-bg: #f1f5f9;
    --light-bg: #0f172a;
    --card-bg: #1e293b;
    --card-border: rgba(139, 92, 246, 0.3);
    --text-dark: #f1f5f9;
    --text-light: #cbd5e1;
    --gradient-cover: linear-gradient(145deg, #1e293b, #0f172a);
    --header-bg: rgba(15, 23, 42, 0.85);
    --footer-bg: #0f172a;
    --modal-bg: #1e293b;
    --input-bg: #334155;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Glass additions dark */
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(1200px 800px at 80% 10%, rgba(124, 58, 237, 0.35), transparent 60%),
                radial-gradient(1000px 700px at 10% 90%, rgba(6, 182, 212, 0.25), transparent 55%),
                var(--bg-deep);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    position: relative;
}

body.dark {
    background: radial-gradient(1200px 800px at 80% 10%, rgba(124, 58, 237, 0.45), transparent 60%),
                radial-gradient(1000px 700px at 10% 90%, rgba(6, 182, 212, 0.35), transparent 55%),
                #0a0c12;
}

/* ========== Stars Background ========== */
#star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle var(--duration, 3s) infinite ease-in-out;
    will-change: transform, opacity;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ========== Glassmorphism Utilities ========== */
.glass-info, .glass-step, .glass-cta, .glass-footer, .glass-modal, .glass-input {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 1px 1px 0 var(--glass-highlight);
}

/* Existing styles below – only overridden where needed for glass effect */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Glass */
.header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

body.dark .header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.logo i {
    color: var(--primary-color);
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 6px rgba(139, 92, 246, 0.3));
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    padding: 6px 12px;
    border-radius: 30px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.booking-btn {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
    padding: 8px 20px;
    border-radius: 40px;
}

.booking-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background: linear-gradient(145deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: #fff;
}

.logout-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.logout-btn:hover {
    background: #dc2626;
    transform: scale(1.02);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle,
.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    transition: var(--transition);
}

.theme-toggle:hover,
.language-select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: var(--transition);
}

/* Coverflow Section - preserve 3D but add glass to .info and .cover */
.coverflow-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.coverflow-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.coverflow-container {
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    position: relative;
}

.coverflow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 500px;
}

.coverflow-item {
    position: absolute;
    width: 320px;
    height: 420px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    user-select: none;
    filter: drop-shadow(0 20px 25px -10px rgba(0, 0, 0, 0.3));
}

/* Glass effect on cover cards */
.coverflow-item .cover {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow), inset 1px 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    color: #fff;
    text-align: center;
    transition: var(--transition);
}

body.dark .coverflow-item .cover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.cover::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.2), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cover .service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 2;
    position: relative;
    transform: rotate(5deg) scale(1);
}

.coverflow-item.active .service-icon {
    transform: rotate(0deg) scale(1.05);
    background: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 30px -8px var(--primary-color);
}

.cover .service-icon i {
    font-size: 3.2rem;
    color: #fff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.coverflow-item:hover .service-icon i {
    transform: scale(1.1) rotate(3deg);
    color: var(--secondary-light);
}

.cover h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.cover p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90%;
    z-index: 2;
    position: relative;
}

.cover .service-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    z-index: 2;
    position: relative;
}

.cover .service-duration {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 14px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    position: relative;
    backdrop-filter: blur(4px);
}

.reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    transform: scaleY(-0.8);
    opacity: 0.2;
    filter: blur(6px);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.6) 90%);
    pointer-events: none;
    z-index: -1;
}

.coverflow-item.active {
    z-index: 100;
    transform: translateX(0) translateZ(40px) rotateY(0deg) scale(1.02);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 200;
    opacity: 0.9;
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.2);
}

.nav-button:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
}

.nav-button.prev {
    left: 30px;
}

.nav-button.next {
    right: 30px;
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 200;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.info {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 200;
    width: 80%;
    padding: 20px 30px;
    border-radius: 60px;
    color: #fff;
}

.info h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.play-pause-button {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 200;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.play-pause-button:hover {
    background: var(--primary-color);
    transform: translateX(-50%) scale(1.1);
}

/* Category filter buttons */
.service-category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 20px;
}

.category-btn {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 20px -10px var(--primary-color);
    transform: translateY(-2px);
}

/* Search input glass */
.search-input {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    display: none;
    color: #fff;
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Process steps */
.section-padding {
    padding: 60px 0;
}

.bg-light {
    background: transparent; /* removed solid background to show stars */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    border-radius: 28px;
    transition: var(--transition);
    color: #fff;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 12px 18px -6px var(--primary-light);
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Booking CTA Glass */
.booking-cta {
    padding: 80px 0;
    text-align: center;
    margin: 40px 0;
    border-radius: 60px;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.booking-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.3rem;
    border-radius: 60px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 700;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Footer Glass */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1rem;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.contact-info-footer p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-extra {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--primary-light);
}

/* Page Loader Glass */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
    color: #fff;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notifications */
.notification-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
}

.notification {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
    border-right: 5px solid;
}

.notification.success {
    border-right-color: #10b981;
}
.notification.error {
    border-right-color: #ef4444;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Modal Glass */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    border-radius: 28px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.6rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.cookie-option {
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.cookie-option label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 5px;
    margin-right: 26px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn {
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-button.prev {
        left: 10px;
    }
    .nav-button.next {
        right: 10px;
    }
    .coverflow-item {
        width: 260px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        border-radius: 20px;
    }
    .nav-menu.show {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .coverflow-item {
        width: 220px;
        height: 320px;
    }
    .info {
        padding: 15px 20px;
    }
    .info h2 {
        font-size: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .coverflow-item {
        width: 180px;
        height: 280px;
    }
}