/* 
 * Royal Halı Yıkama - Premium Design Tokens 
 * Implementing Glassmorphism, Royal Gold, and Modern Dynamics
 */

:root {
    --royal-gold: #C5A037;
    --royal-gold-light: #F1D487;
    --royal-gold-dark: #996515;
    --royal-blue: #1275e2;
    --royal-blue-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --premium-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15);
    --gold-shadow: 0 20px 40px -10px rgba(197, 160, 55, 0.4);
}

/* Base Refinements */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--premium-shadow);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Premium Buttons & Badges */
.btn-service {
    @apply transition-all duration-500 ease-out transform scale-100 flex items-center justify-center;
}

.btn-service:hover {
    @apply -translate-y-1 scale-[1.02];
}

.btn-service-primary {
    background: var(--royal-gold);
    color: white;
}

.btn-service-primary:hover {
    background: var(--royal-gold-dark);
}

.btn-service-secondary {
    background: var(--royal-blue);
    color: white;
}

.section-badge {
    @apply inline-block font-black text-[10px] tracking-[0.4em] uppercase py-2 px-6 rounded-full;
}

/* Glow Effects */
.gold-glow {
    box-shadow: var(--gold-shadow);
}

.gold-glow-hover:hover {
    box-shadow: var(--gold-shadow);
}

/* Typography */
.font-premium {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.04em;
}

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(8deg); }
    75% { transform: rotate(-8deg); }
}

.animate-shake {
    animation: shake 0.5s ease-in-out infinite;
    animation-play-state: paused;
}

.group:hover .animate-shake {
    animation-play-state: running;
}

/* Live Order Bubble Specifics */
#live-order-bubble {
    opacity: 0;
    transform: translateX(-150%) scale(0.9);
}

#live-order-bubble.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal on Scroll Concept */
.reveal-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Transition */
.faq-content {
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
}

/* Responsive Grid Adjustments */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
