/* ==========================================
   BUCKA DIZAJN - PREMIUM STYLESHEET
   Modern, Stunning, Award-Winning Design
   ========================================== */

/* ==========================================
   RESET & CUSTOM PROPERTIES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette - Light Mode */
    --primary-pink: #FF6B9D;
    --primary-purple: #8B5CF6;
    --primary-gold: #FFD700;
    --electric-blue: #00D9FF;
    --deep-purple: #2D1B69;
    --dark-navy: #1a1a2e;
    --light-bg: #FFF5F8;
    --dark-text: #2C3E50;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --bg-color: #ffffff;
    --text-color: #2C3E50;
    --text-muted: #595959;
    --card-bg: rgba(255, 255, 255, 0.8);
    --nav-bg: rgba(255, 255, 255, 0.8);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #8B5CF6 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-blue: linear-gradient(135deg, #00D9FF 0%, #0099FF 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, #FF6B9D 0%, transparent 50%),
                     radial-gradient(at 100% 0%, #8B5CF6 0%, transparent 50%),
                     radial-gradient(at 100% 100%, #00D9FF 0%, transparent 50%),
                     radial-gradient(at 0% 100%, #FFD700 0%, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --glow-pink: 0 0 20px rgba(255, 107, 157, 0.5);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.6);
    --glow-gold: 0 0 25px rgba(255, 215, 0, 0.5);

    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-color: #0f0f1e;
    --text-color: #e0e0e0;
    --text-muted: #999;
    --card-bg: rgba(30, 30, 50, 0.8);
    --nav-bg: rgba(20, 20, 35, 0.9);
    --light-bg: #1a1a2e;
    --dark-text: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease;
    opacity: 0.5;
}

/* ==========================================
   BODY & HTML
   ========================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg-color);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: transparent;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background: var(--gradient-mesh);
    animation: meshMove 15s ease infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, 5%) rotate(1deg); }
    50% { transform: translate(0, 10%) rotate(-1deg); }
    75% { transform: translate(-5%, 5%) rotate(0.5deg); }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    50% { transform: translateY(-100vh) translateX(50px) rotate(360deg); opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(0) rotate(720deg); opacity: 0; }
}

/* ==========================================
   MORPHING BLOBS BACKGROUND
   ========================================== */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: morph 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--electric-blue), var(--primary-gold));
    bottom: -10%;
    right: -10%;
    animation-delay: 3s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(5%, 5%) rotate(90deg);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-5%, 5%) rotate(180deg);
    }
    75% {
        border-radius: 60% 30% 50% 60% / 30% 70% 50% 40%;
        transform: translate(5%, -5%) rotate(270deg);
    }
}

/* ==========================================
   LOADING SCREEN - WITH LOGO
   ========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-navy) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 120px;
    height: 120px;
    position: relative;
}

.loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoSpin 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.8));
}

@keyframes logoSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.8));
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        filter: drop-shadow(0 0 50px rgba(139, 92, 246, 1));
    }
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: var(--glow-pink);
}

/* ==========================================
   NAVIGATION - GLASSMORPHISM
   ========================================== */
nav {
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 5%;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--glow-pink);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-placeholder:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-purple);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

nav a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
    box-shadow: var(--glow-pink);
}

nav a:hover::before {
    width: 100%;
    left: 0;
}

nav a:hover {
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    background: var(--light-bg);
    padding: 8rem 5% 6rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandWidth 1s ease 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

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

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.8;
}

/* ==========================================
   CTA BUTTON - MAGNETIC EFFECT
   ========================================== */
.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg), var(--glow-pink);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow-purple);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==========================================
   TRUST BAR - ANIMATED COUNTERS
   ========================================== */
.trust-bar {
    background: var(--bg-color);
    padding: 3rem 5%;
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    position: relative;
}

.trust-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: var(--transition-smooth);
    padding: 1.5rem;
    border-radius: 20px;
}

.trust-item:hover {
    transform: translateY(-10px);
    background: var(--light-bg);
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

.trust-item .number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.trust-item .label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ==========================================
   TRUST BADGES - GLASSMORPHISM CARDS
   ========================================== */
.trust-badges {
    background: var(--light-bg);
    padding: 4rem 5%;
    text-align: center;
}

.trust-badges h2 {
    color: var(--dark-text);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
    animation: fadeInUp 0.6s ease;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--card-bg);
    box-shadow: var(--shadow-lg), var(--glow-pink);
}

.badge-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--glow-pink);
}

.badge:hover .badge-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: var(--glow-purple);
}

.badge-text {
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
    text-align: center;
}

/* ==========================================
   SERVICE CARDS - 3D HOVER EFFECT
   ========================================== */
.services-preview {
    background: var(--bg-color);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 4rem;
    font-weight: 700;
    animation: fadeInUp 0.6s ease;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 157, 0.1);
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-xl), var(--glow-pink);
    border-color: var(--primary-pink);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(var(--glow-pink));
}

.service-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card .price {
    color: var(--primary-pink);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* ==========================================
   SECTION MANAGEMENT (index.html only)
   ========================================== */
#home,
#pricing,
#contact {
    display: none;
    animation: fadeIn 0.5s ease;
    background: transparent;
}

#home.active,
#pricing.active,
#contact.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.pricing h2 {
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-notice {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    animation: slideInLeft 0.6s ease;
    transition: background 0.3s ease, border-color 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notice-icon {
    font-size: 1.8rem;
}

.notice-content {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Dark mode override for pricing notice */
[data-theme="dark"] .pricing-notice {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(255, 107, 157, 0.15) 100%);
    border-left: 4px solid var(--primary-pink);
}

/* ==========================================
   PRICING TABS
   ========================================== */
.pricing-tabs {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-button {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--primary-pink);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-sm);
}

.tab-button:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-pink);
    box-shadow: var(--glow-pink);
}

.pricing-category {
    display: none;
}

.pricing-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h3 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-muted);
}

/* ==========================================
   PRICING CARDS - GLASSMORPHISM
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-pink);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.service-name {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1.05rem;
    flex: 1;
}

.price {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.price-note {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Badges */
.popular-badge, .most-popular-badge, .eco-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.popular-badge {
    background: var(--gradient-gold);
    color: var(--dark-text);
}

.most-popular-badge {
    background: var(--gradient-primary);
    color: white;
}

.eco-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45B649 100%);
    color: white;
    margin-left: 0.5rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.contact h2 {
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Status Badge */
.status-container {
    text-align: center;
    margin-bottom: 4rem;
}

.status-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.status-badge-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.status-badge-enhanced.open {
    background: linear-gradient(135deg, #4CAF50 0%, #45B649 100%);
    color: white;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

.status-badge-enhanced.closed {
    background: rgba(245, 245, 245, 0.9);
    color: #666;
    border: 2px solid #e0e0e0;
}

.status-icon-container {
    position: relative;
}

.status-dot-enhanced {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    top: -2px;
    right: -2px;
}

.status-badge-enhanced.open .status-dot-enhanced {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5);
        box-shadow: 0 0 0 10px rgba(255,255,255,0);
    }
}

.status-icon {
    font-size: 1.5rem;
}

/* Contact Cards */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg), var(--glow-pink);
    border-color: var(--primary-pink);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: var(--glow-pink);
    transition: var(--transition-bounce);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-details h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--primary-purple);
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* Opening Hours */
.opening-hours {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.opening-hours h3 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.hours-list li:hover {
    background: rgba(255, 107, 157, 0.05);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-text);
}

.time {
    color: var(--primary-pink);
    font-weight: 500;
}

.time.closed {
    color: #999;
}

/* Map Container */
.map-container {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 157, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.map-container:hover {
    box-shadow: var(--shadow-lg), var(--glow-pink);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
}

/* ==========================================
   FOOTER - MODERN GRADIENT
   ========================================== */
footer {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 5% 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.trust-indicators-footer {
    margin: 2rem 0;
}

.trust-item-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.trust-item-footer:hover {
    color: white;
    transform: translateX(5px);
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    transition: var(--transition-bounce);
    text-decoration: none;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-pink);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.footer-contact li {
    margin-bottom: 1.5rem;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--primary-pink);
}

.payment-methods {
    margin-top: 2rem;
}

.payment-methods h4 {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 2.5rem;
}

.payment-icons-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-method-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-method-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.payment-method-item span {
    font-size: 1.5rem;
}

.payment-method-item .payment-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2.5rem 5%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 5rem 5%;
    background: var(--bg-color);
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.testimonials > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-pink);
    border-color: var(--primary-pink);
}

/* ==========================================
   ABOUT SECTION STYLES
   ========================================== */
.about-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-color);
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-pink);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md), var(--glow-pink);
}

.feature-card h3 {
    color: var(--primary-pink);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE DESIGN - COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================== */

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
    /* Layout Adjustments */
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    /* Trust Bar */
    .trust-bar {
        gap: 3rem;
        padding: 2.5rem 5%;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 5% 4rem;
    }

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

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    /* Navigation Mobile Menu */
    nav {
        padding: 0.8rem 5%;
    }

    /* Removed conflicting styles - hamburger menu handles navigation now */

    .logo {
        font-size: 1.5rem;
    }

    .logo-placeholder,
    .logo-image {
        width: 45px;
        height: 45px;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 5% 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Trust Bar */
    .trust-bar {
        gap: 2rem;
        padding: 2rem 5%;
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        min-width: 200px;
        padding: 1rem;
    }

    .trust-item .number {
        font-size: 2.5rem;
    }

    .trust-item .label {
        font-size: 0.9rem;
    }

    /* Trust Badges */
    .trust-badges {
        padding: 3rem 5%;
    }

    .trust-badges h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .badges-container {
        gap: 2rem;
    }

    .badge {
        padding: 1.5rem;
        min-width: 140px;
    }

    .badge-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }

    /* Services Section */
    .services-preview {
        padding: 4rem 5%;
    }

    .services-preview h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

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

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card .price {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 4rem 5%;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* About Section */
    .about-section {
        padding: 4rem 5%;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        gap: 3rem;
    }

    .about-text p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Pricing Section */
    .pricing {
        padding: 4rem 5%;
    }

    .pricing h1 {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pricing-tabs {
        gap: 0.5rem;
    }

    .tab-button {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .category-header h3 {
        font-size: 1.8rem;
    }

    .service-name {
        font-size: 1rem;
    }

    .price {
        font-size: 1.3rem;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 5%;
    }

    .contact h1 {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .status-badge-enhanced {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .contact-card:hover {
        transform: translateY(-5px);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .opening-hours {
        padding: 1.5rem;
    }

    .hours-list li {
        padding: 0.8rem 0;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    /* Footer */
    .footer-content {
        padding: 4rem 5% 2rem;
        gap: 3rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-contact a {
        justify-content: center;
    }

    .payment-icons-container {
        justify-content: center;
    }

    .footer-bottom {
        padding: 2rem 5%;
    }

    /* Interactive Elements */
    .theme-toggle {
        top: 80px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .phone-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .phone-float svg {
        width: 28px;
        height: 28px;
    }

    .phone-tooltip {
        display: none;
    }
}

/* Mobile Portrait - Small Phones */
@media (max-width: 480px) {
    /* Navigation */
    nav ul {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-placeholder,
    .logo-image {
        width: 40px;
        height: 40px;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 5% 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    /* Trust Bar */
    .trust-bar {
        gap: 1.5rem;
        padding: 2rem 5%;
    }

    .trust-item {
        padding: 0.8rem;
    }

    .trust-item .number {
        font-size: 2.2rem;
    }

    .trust-item .label {
        font-size: 0.85rem;
    }

    /* Trust Badges */
    .trust-badges h2 {
        font-size: 1.8rem;
    }

    .badges-container {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 250px;
    }

    /* Services */
    .services-preview {
        padding: 3rem 5%;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .service-icon {
        font-size: 2.8rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 5%;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    /* About Section */
    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Pricing */
    .pricing {
        padding: 3rem 5%;
    }

    .pricing h1 {
        font-size: 1.8rem;
    }

    .pricing-notice {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .notice-icon {
        font-size: 1.5rem;
    }

    .pricing-tabs {
        gap: 0.4rem;
    }

    .tab-button {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .pricing-grid {
        gap: 1.2rem;
    }

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

    .category-header p {
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 1.3rem;
    }

    .pricing-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .service-name {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.4rem;
        align-self: flex-start;
    }

    .popular-badge,
    .most-popular-badge,
    .eco-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    /* Contact */
    .contact {
        padding: 3rem 5%;
    }

    .contact h1 {
        font-size: 1.8rem;
    }

    .status-container {
        margin-bottom: 2.5rem;
    }

    .status-badge-enhanced {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .status-icon {
        font-size: 1.3rem;
    }

    .contact-card {
        padding: 1.3rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details a,
    .contact-details p {
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .opening-hours h3 {
        font-size: 1.2rem;
    }

    .hours-list li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }

    /* Footer */
    .footer-content {
        padding: 3rem 5% 2rem;
        gap: 2.5rem;
    }

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

    .footer-logo h3 {
        font-size: 1.3rem;
    }

    .footer-description,
    .footer-links a,
    .footer-contact a {
        font-size: 0.9rem;
    }

    .trust-item-footer {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .payment-method-item {
        padding: 0.7rem 1rem;
    }

    .payment-method-item span {
        font-size: 1.3rem;
    }

    .payment-method-item .payment-text {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 1.8rem 5%;
    }

    .copyright,
    .tagline {
        font-size: 0.85rem;
    }

    /* Interactive Elements */
    .theme-toggle {
        top: 75px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .theme-icon {
        font-size: 1rem;
    }

    .phone-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .phone-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    /* Ultra compact mode for very small screens */
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .trust-item .number {
        font-size: 2rem;
    }

    .services-preview h2,
    .testimonials h2,
    .about-section h2,
    .pricing h1,
    .contact h1 {
        font-size: 1.6rem;
    }

    .tab-button {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    nav ul {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* ==========================================
   DARK MODE TOGGLE
   ========================================== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9998;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-pink);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg), var(--glow-pink);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.theme-toggle:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-xl), var(--glow-purple);
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
}

/* ==========================================
   FLOATING PHONE BUTTON
   ========================================== */
.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, #FF6B9D 0%, #8B5CF6 100%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
    cursor: pointer;
    transition: var(--transition-bounce);
    animation: pulse-phone 2s infinite;
    text-decoration: none;
}

.phone-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.7);
}

.phone-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse-phone {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.7);
    }
}

.phone-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.phone-float:hover .phone-tooltip {
    opacity: 1;
}

/* ==========================================
   LOGO STYLING
   ========================================== */
.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-bounce);
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3));
}

.logo-placeholder:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

/* Footer logo */
.footer-logo .logo-image {
    width: 45px;
    height: 45px;
}

/* ==========================================
   ACCESSIBILITY & MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.tab-button:focus,
.theme-toggle:focus {
    outline: 3px solid var(--primary-pink);
    outline-offset: 3px;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .theme-toggle {
        top: 80px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .phone-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .phone-float svg {
        width: 28px;
        height: 28px;
    }

    .phone-tooltip {
        display: none;
    }
}

/* ==========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   Disable heavy animations and effects for smooth mobile experience
   ========================================== */
@media (max-width: 768px) {
    /* Disable Heavy Background Animations */
    .blob-container,
    .particles,
    .animated-bg {
        display: none !important;
    }

    /* Disable Morphing Blobs */
    .blob {
        animation: none !important;
    }

    /* Disable Particle Animations */
    .particle {
        display: none !important;
    }

    /* Simplify Hero Background */
    .hero::before,
    .about-hero::before {
        animation: none !important;
        opacity: 0.05;
    }

    /* Disable Logo Animations */
    .loader-logo {
        animation: none !important;
        filter: none;
    }

    .logo-placeholder::before {
        animation: none !important;
        display: none;
    }

    /* Remove Glassmorphism (Very GPU Intensive) */
    nav,
    .card-bg,
    .pricing-card,
    .contact-card,
    .opening-hours,
    .testimonial-card,
    .service-card,
    .feature-card,
    .map-container,
    .badge,
    .social-icon,
    .theme-toggle {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Simplify Box Shadows */
    nav,
    .cta-button,
    .service-card,
    .pricing-card,
    .contact-card,
    .testimonial-card,
    .badge {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    /* Disable Glow Effects */
    .logo-placeholder,
    .badge-icon,
    .contact-icon,
    .scroll-progress,
    .phone-float {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    /* Disable All Hover Animations */
    .logo-placeholder:hover,
    .badge:hover,
    .service-card:hover,
    .pricing-card:hover,
    .contact-card:hover,
    .testimonial-card:hover,
    .feature-card:hover,
    .social-icon:hover,
    .badge:hover .badge-icon,
    .service-card:hover .service-icon,
    .contact-card:hover .contact-icon,
    .trust-item:hover,
    .theme-toggle:hover,
    .theme-toggle:hover .theme-icon {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    /* Disable 3D Transforms */
    .service-card,
    .pricing-card {
        transform-style: flat !important;
    }

    .service-card:hover,
    .pricing-card:hover {
        transform: none !important;
    }

    /* Simplify CTA Button */
    .cta-button::before {
        display: none !important;
    }

    .cta-button:hover {
        transform: none !important;
    }

    /* Disable Phone Button Pulse */
    .phone-float {
        animation: none !important;
    }

    .phone-float:hover {
        transform: none !important;
    }

    /* Disable Status Badge Pulse */
    .status-dot-enhanced {
        animation: none !important;
    }

    /* Faster Transitions */
    * {
        transition-duration: 0.2s !important;
    }

    /* Disable Reveal Animations - Make Instant */
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .reveal.active {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Disable Infinite Animations (fixed: define each keyframes separately) */
    @keyframes rotate { from { transform: none; } to { transform: none; } }
    @keyframes morph { from { transform: none; } to { transform: none; } }
    @keyframes float { from { transform: none; } to { transform: none; } }
    @keyframes pulse-phone { from { transform: none; } to { transform: none; } }
    @keyframes pulse-dot { from { transform: none; } to { transform: none; } }
    @keyframes meshMove { from { transform: none; } to { transform: none; } }
    @keyframes shine { from { transform: none; } to { transform: none; } }

    /* Simplify Navigation Underline */
    nav a::before {
        transition: none;
        animation: none;
    }

    /* Disable Card Background Animations */
    .pricing-card::before,
    .service-card::before {
        opacity: 0 !important;
        animation: none !important;
        transition: none !important;
    }

    /* Remove Filters */
    .service-card:hover .service-icon {
        filter: none !important;
    }

    /* Disable Footer Gradient Animation */
    footer::before {
        opacity: 0.05 !important;
    }

    /* Optimize About Page Elements */
    .about-cta::before {
        opacity: 0.05 !important;
    }

    /* Disable Expanding Width Animation */
    .hero h1 .highlight::after {
        animation: none !important;
        width: 100% !important;
    }

    /* Disable Badge Icon Rotation */
    .badge:hover .badge-icon {
        transform: none !important;
    }

    /* Disable Trust Item Hover */
    .trust-item:hover {
        transform: none !important;
        background: transparent !important;
    }

    /* Disable Footer Link Animations */
    .footer-links a:hover,
    .footer-contact a:hover,
    .trust-item-footer:hover {
        transform: none !important;
    }

    /* Disable Hours List Hover */
    .hours-list li:hover {
        background: transparent !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Disable Payment Method Hover */
    .payment-method-item:hover {
        transform: none !important;
    }

    /* Disable Tab Button Hover */
    .tab-button:hover {
        transform: none !important;
    }
}

/* Touch Device Specific Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable all hover effects on touch devices */
    *:hover {
        transform: none !important;
    }

    /* Remove backdrop filters */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Simplify all transitions */
    * {
        transition-duration: 0.15s !important;
    }
}

/* ==========================================
   MOBILE HAMBURGER MENU
   ========================================== */

/* Hamburger Button - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid var(--primary-pink);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 12px;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hamburger:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: scale(1.05);
}

.hamburger:active {
    transform: scale(0.95) rotate(5deg);
}

.hamburger:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 3px;
    border-radius: 8px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 3px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    will-change: transform, opacity;
}

/* Hamburger Animation to X with Morph */
.hamburger.active .hamburger-line:nth-child(1) {
    animation: topLineMorph 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hamburger.active .hamburger-line:nth-child(2) {
    animation: middleLineFade 0.3s ease forwards;
}

.hamburger.active .hamburger-line:nth-child(3) {
    animation: bottomLineMorph 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Reverse Animation when Closing - Smooth Transition Back */
.hamburger:not(.active) .hamburger-line:nth-child(1) {
    animation: topLineReverse 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hamburger:not(.active) .hamburger-line:nth-child(2) {
    animation: middleLineShow 0.3s ease forwards;
    animation-delay: 0.1s;
}

.hamburger:not(.active) .hamburger-line:nth-child(3) {
    animation: bottomLineReverse 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Menu Overlay with Blur */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide and transform desktop menu into mobile menu */
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 0 30px;
        gap: 0;
        box-shadow:
            -5px 0 20px rgba(0, 0, 0, 0.3),
            -2px 0 40px rgba(255, 107, 157, 0);
        transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.5s ease;
        z-index: 1000;
        overflow-y: auto;
        width: 100%;
        flex-wrap: nowrap;
        will-change: right, box-shadow;
    }

    /* Menu active (open) state with glow */
    nav ul.active {
        right: 0;
        box-shadow:
            -5px 0 20px rgba(0, 0, 0, 0.3),
            -2px 0 40px rgba(255, 107, 157, 0.3);
    }

    /* Mobile nav items - simple fade animation */
    nav ul li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 1;
        transition: opacity 0.2s ease;
    }

    /* Hide items when menu is not active */
    nav ul:not(.active) li {
        opacity: 0;
    }

    /* Show items when menu is active - simple fade in */
    nav ul.active li {
        opacity: 1;
        transition: opacity 0.2s ease;
    }

    /* Fade out when closing */
    nav ul.closing li {
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    /* Mobile nav links with hover magic */
    nav ul li a {
        display: block;
        width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    nav ul li a::before {
        content: '→';
        position: absolute;
        left: -30px;
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--primary-pink);
        font-size: 1.2rem;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.15), transparent);
        transition: left 0.5s ease;
        pointer-events: none;
    }

    nav ul li a:hover::before {
        left: 10px;
        opacity: 1;
    }

    nav ul li a:hover::after {
        left: 100%;
    }

    nav ul li a:hover {
        background: rgba(255, 107, 157, 0.1);
        padding-left: 45px;
    }

    nav ul li a:active {
        transform: scale(0.98);
        background: rgba(255, 107, 157, 0.2);
    }

    /* Adjust nav container for hamburger */
    nav .container {
        position: relative;
        justify-content: space-between;
    }

    /* Keep logo on left */
    .logo-container {
        flex: 0 0 auto;
    }
}

/* Very small phones - adjust menu width */
@media (max-width: 480px) {
    nav ul {
        width: 100%;
        max-width: 280px;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 16px 25px;
    }
}

/* Dark mode adjustments for mobile menu */
[data-theme="dark"] .hamburger {
    background: rgba(255, 107, 157, 0.15);
    border-color: var(--primary-pink);
}

[data-theme="dark"] .hamburger:hover {
    background: rgba(255, 107, 157, 0.25);
}

[data-theme="dark"] .hamburger-line {
    background: var(--primary-pink);
}

[data-theme="dark"] nav ul {
    background: var(--bg-primary);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] nav ul li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Light Mode Text Visibility Enhancement */
[data-theme="light"] nav ul {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] nav ul li {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] nav ul li a {
    color: #1a1f2c;
    font-weight: 500;
}

[data-theme="light"] nav ul li a:hover {
    background: rgba(255, 107, 157, 0.15);
    color: #1a1f2c;
}

[data-theme="light"] nav ul li a::before {
    color: var(--primary-pink);
}

/* ==========================================
   MOBILE MENU ANIMATION KEYFRAMES
   ========================================== */

/* Hamburger Bounce Animation */
@keyframes hamburgerBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.05); }
}

/* Subtle Pulse Animation */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 157, 0);
    }
}

/* Top Line Morph to X */
@keyframes topLineMorph {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(0deg) translate(0, 10px) scaleX(0.8);
    }
    100% {
        transform: rotate(45deg) translate(9px, 9px);
    }
}

/* Middle Line Fade */
@keyframes middleLineFade {
    0% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(0.5);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

/* Bottom Line Morph to X */
@keyframes bottomLineMorph {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(0deg) translate(0, -10px) scaleX(0.8);
    }
    100% {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Ripple Effect */
@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Note: slideInStagger and slideOutStagger removed - using simple opacity transitions instead */

/* Reverse Animations for Hamburger Close */
@keyframes topLineReverse {
    from {
        transform: rotate(45deg) translate(9px, 9px);
    }
    50% {
        transform: rotate(0deg) translate(0, 10px) scaleX(0.8);
    }
    to {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes middleLineShow {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(0.5);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes bottomLineReverse {
    from {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    50% {
        transform: rotate(0deg) translate(0, -10px) scaleX(0.8);
    }
    to {
        transform: rotate(0deg) translate(0, 0);
    }
}

/* ==========================================
   ACCESSIBILITY - REDUCED MOTION SUPPORT
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    .hamburger,
    nav ul,
    nav ul li,
    .menu-overlay,
    .hamburger-line,
    .ripple-effect {
        animation: none !important;
        transition-duration: 0.01s !important;
    }

    .hamburger {
        animation: none !important;
    }

    nav ul li a::after {
        transition: none !important;
    }
}
