/* Thinks Clean Customer Theme */

:root {
    --background: hsl(0 0% 99%);
    --foreground: hsl(220 20% 15%);
    --card: hsl(0 0% 100%);
    --card-foreground: hsl(220 20% 15%);
    --primary: hsl(16 100% 66%);
    --primary-foreground: hsl(0 0% 100%);
    --secondary: hsl(16 100% 97%);
    --secondary-foreground: hsl(16 80% 45%);
    --muted: hsl(16 20% 95%);
    --muted-foreground: hsl(220 10% 45%);
    --accent: hsl(174 60% 45%);
    --accent-foreground: hsl(0 0% 100%);
    --border: hsl(220 15% 90%);

    --gradient-hero: linear-gradient(135deg, hsl(16 100% 66% / 0.08) 0%, hsl(16 100% 97%) 50%, hsl(0 0% 100%) 100%);
    --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(16 50% 99%) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(16 100% 66%) 0%, hsl(16 100% 55%) 100%);

    --shadow-soft: 0 4px 24px -4px hsl(16 100% 66% / 0.15);
    --shadow-card: 0 8px 32px -8px hsl(220 20% 15% / 0.08);
    --shadow-hover: 0 16px 48px -12px hsl(16 100% 66% / 0.25);
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.bg-hero-gradient {
    background: var(--gradient-hero);
}

.bg-card-gradient {
    background: var(--gradient-card);
}

.text-gradient {
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

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

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hover-lift {
    transition: all 0.3s ease-out;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero:hover {
    background: hsl(16 100% 55%);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(16 100% 55%);
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
    max-height: 500px;
}

@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .backdrop-blur-md {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .backdrop-blur-sm {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }
}

@media print {
    header,
    footer,
    #mobile-menu-btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

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

.section-padding {
    padding: 5rem 1rem;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 2rem;
    }
}

.group:hover .arrow-icon {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

.gradient-bg-1 {
    background: linear-gradient(to bottom right, hsl(16 100% 66% / 0.1), hsl(16 100% 66% / 0.05));
}

.gradient-bg-2 {
    background: linear-gradient(to bottom right, hsl(174 60% 45% / 0.1), hsl(174 60% 45% / 0.05));
}

.gradient-bg-3 {
    background: linear-gradient(to bottom right, hsl(16 100% 66% / 0.1), hsl(16 100% 97%));
}

.gradient-bg-4 {
    background: linear-gradient(to bottom right, hsl(174 60% 45% / 0.1), hsl(16 100% 66% / 0.05));
}

a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.bg-card:hover {
    border-color: var(--primary);
}

.stat-number {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.contact-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, hsl(16 100% 55%) 100%);
    opacity: 0.95;
}

footer a {
    position: relative;
    transition: all 0.2s ease;
}

footer a:hover {
    padding-left: 4px;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

.border-subtle {
    border-color: var(--border);
}

.text-primary {
    color: var(--primary);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-secondary-foreground {
    color: var(--secondary-foreground);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-card {
    background-color: var(--card);
}

@media (max-width: 768px) {
    .grid {
        gap: 1rem;
    }
}

button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.group:hover [data-lucide] {
    animation: wiggle 0.5s ease-in-out;
}

/* Booking Page Styles */
.booking-section {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

input[type="radio"] {
    accent-color: var(--primary);
}

.address-option,
.promo-option,
.payment-option {
    transition: all 0.2s ease;
}

.address-option:has(input:checked),
.promo-option:has(input:checked),
.payment-option:has(input:checked) {
    border-color: var(--primary) !important;
    background-color: hsl(16 100% 66% / 0.05);
}

.duration-option {
    transition: all 0.2s ease;
}

.duration-option:hover {
    border-color: hsl(16 100% 66% / 0.5);
}

.time-slot {
    transition: all 0.2s ease;
}

.time-slot:hover {
    border-color: hsl(16 100% 66% / 0.5);
}

.time-slot.selected {
    border-color: var(--primary);
    background-color: hsl(16 100% 66% / 0.05);
    color: var(--primary);
}

.scrollbar-thin {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--muted);
}

.scrollbar-thin::-webkit-scrollbar {
    height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: var(--muted);
    border-radius: 3px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.flatpickr-calendar {
    font-family: 'Lato', sans-serif !important;
    border-radius: 1rem !important;
    box-shadow: var(--shadow-card) !important;
    border: 1px solid var(--border) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-day:hover {
    background: hsl(16 100% 66% / 0.1) !important;
}

.flatpickr-day.today {
    border-color: var(--primary) !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: 'Lato', sans-serif !important;
}

.price-summary {
    position: sticky;
    top: 6rem;
}

#order-btn:disabled,
#mobile-order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .price-summary-desktop {
        display: none;
    }
}

@media (min-width: 1024px) {
    .price-summary-mobile {
        display: none;
    }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    font-family: 'Lato', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(16 100% 66% / 0.1);
}

#success-modal,
#add-address-modal,
#contact-modal {
    animation: fadeIn 0.2s ease-out;
}

#success-modal > div,
#add-address-modal > div,
#contact-modal > div {
    animation: fadeUp 0.3s ease-out;
}

#toast {
    animation: slideInRight 0.3s ease-out;
}

.service-coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.service-coming-soon:hover {
    background: transparent !important;
    color: inherit !important;
}

.promo-code {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background: hsl(16 100% 66% / 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.bg-green-500 {
    background-color: #22c55e !important;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-500 {
    color: #22c55e;
}

.text-green-600 {
    color: #16a34a;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

input:disabled,
button:disabled,
select:disabled,
textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

main {
    animation: fadeIn 0.3s ease-out;
}

header a[href="index.html"]:hover {
    background-color: hsl(16 100% 66% / 0.1);
}

header.sticky {
    position: sticky;
    top: 0;
}

@media (max-width: 640px) {
    .duration-option {
        padding: 0.75rem;
    }

    .duration-option .text-2xl {
        font-size: 1.5rem;
    }

    .time-slot {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

.overflow-x-auto {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.overflow-x-auto::-webkit-scrollbar {
    display: none;
}

.overflow-x-auto:hover {
    scrollbar-width: thin;
}

.overflow-x-auto:hover::-webkit-scrollbar {
    display: block;
    height: 4px;
}

.accent-primary {
    accent-color: var(--primary);
}

.toast {
    pointer-events: all;
}

.animate-slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

.animate-slide-out-right {
    animation: slideOutRight 0.3s ease-in forwards;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

button {
    position: relative;
    overflow: hidden;
}

#header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
