/* ========================================
   INFUSED COCKTAIL BAR - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --zinc-950: #09090b;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #18181b;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
}

html.dark body {
    background-color: var(--zinc-950);
    color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-1%, -1%);
    }
}

@keyframes smoke {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -40px) scale(1.5);
        opacity: 0;
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(0.9);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.animate-ken-burns {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.animate-smoke {
    animation: smoke 3s infinite ease-out;
}

.animate-flicker {
    animation: flicker 0.1s infinite alternate;
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite ease-in-out;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.3s;
}

.delay-300 {
    animation-delay: 0.5s;
}

/* Range Slider Custom Styles */
input[type=range] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--zinc-200);
    border-radius: 4px;
    cursor: pointer;
}

html.dark input[type=range] {
    background: var(--zinc-700);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: var(--amber-600);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4);
    border: 2px solid white;
}

input[type=range]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--amber-600);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4);
    border: 2px solid white;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 64px;
    height: 64px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    animation: fadeInUp 0.5s ease-out;
}

.floating-whatsapp:hover {
    background-color: #16a34a;
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    color: white;
    fill: white;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: all 0.5s;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

html.dark .navbar.scrolled {
    background: rgba(24, 24, 27, 0.98);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--amber-600);
}

.navbar .logo-text {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--zinc-900);
    transition: color 0.3s;
    text-shadow: none;
}

html.dark .navbar .logo-text {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-text {
    color: var(--zinc-900);
    text-shadow: none;
}

html.dark .navbar.scrolled .logo-text {
    color: white;
    text-shadow: none;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-600);
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: none;
}

html.dark .nav-links a {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a {
    color: var(--zinc-600);
    text-shadow: none;
}

html.dark .navbar.scrolled .nav-links a {
    color: var(--zinc-300);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--amber-500);
}

.nav-links a.active {
    font-weight: 700;
}

/* Theme Toggle Button */
.theme-toggle {
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .theme-toggle {
    background: transparent;
    color: var(--zinc-600);
}

.navbar.scrolled .theme-toggle:hover {
    background: var(--zinc-100);
}

html.dark .navbar.scrolled .theme-toggle {
    color: var(--zinc-300);
}

html.dark .navbar.scrolled .theme-toggle:hover {
    background: var(--zinc-800);
}

/* CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--amber-600);
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.2);
}

.btn-primary:hover {
    background: var(--amber-700);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--zinc-900);
}

html.dark .mobile-menu-btn {
    color: white;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--zinc-900);
}

html.dark .navbar.scrolled .mobile-menu-btn {
    color: white;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

html.dark .mobile-menu {
    background: var(--zinc-900);
}

.mobile-menu.open {
    display: flex;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--zinc-800);
    text-decoration: none;
    padding: 0.5rem 0;
}

html.dark .mobile-menu a {
    color: var(--zinc-200);
}

.mobile-menu a.active {
    color: var(--amber-600);
}

/* Page Header */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

html.dark .page-header-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    margin-top: 2.5rem;
}

.page-header-content h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-header-content h1 {
        font-size: 3.75rem;
    }
}

.page-header-content p {
    font-size: 1.125rem;
    color: var(--zinc-200);
    max-width: 42rem;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--zinc-900);
    color: white;
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--zinc-800);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--zinc-400);
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--zinc-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--amber-600);
}

.footer h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--zinc-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--amber-500);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--zinc-400);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--amber-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--zinc-800);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--zinc-500);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom a {
    color: var(--zinc-500);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* Container */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

html.dark .card {
    background: var(--zinc-800);
}

.card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion */
.faq-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--zinc-200);
}

html.dark .faq-item {
    background: var(--zinc-800);
    border-color: var(--zinc-700);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--zinc-900);
}

html.dark .faq-question span {
    color: white;
}

.faq-question svg {
    color: var(--zinc-400);
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    color: var(--amber-600);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--zinc-600);
    line-height: 1.7;
}

html.dark .faq-answer p {
    color: var(--zinc-300);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-amber-500 {
    color: var(--amber-500);
}

.text-amber-600 {
    color: var(--amber-600);
}

.text-zinc-400 {
    color: var(--zinc-400);
}

.text-zinc-500 {
    color: var(--zinc-500);
}

.text-zinc-600 {
    color: var(--zinc-600);
}

.bg-white {
    background-color: white;
}

.bg-zinc-50 {
    background-color: var(--zinc-50);
}

.bg-zinc-900 {
    background-color: var(--zinc-900);
}

html.dark .bg-white {
    background-color: var(--zinc-950);
}

html.dark .bg-zinc-50 {
    background-color: var(--zinc-900);
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.object-cover {
    object-fit: cover;
}

.transition-all {
    transition: all 0.3s;
}

.cursor-pointer {
    cursor: pointer;
}

/* Hero specific */
.hero {
    min-height: 100vh;
    display: flex;
}

@media (max-width: 767px) {
    .hero {
        flex-direction: column;
    }
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    position: relative;
    z-index: 20;
}

html.dark .hero-content {
    background: var(--zinc-900);
}

@media (min-width: 768px) {
    .hero-content {
        width: 50%;
    }
}

.hero-slider {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    background: black;
}

@media (min-width: 768px) {
    .hero-slider {
        width: 50%;
        height: 100vh;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.active img {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

@media (min-width: 768px) {
    .hero-dots {
        left: 3rem;
        transform: none;
    }
}

.hero-dot {
    height: 4px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    width: 1rem;
}

.hero-dot.active {
    background: var(--amber-500);
    width: 3rem;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Gallery Filter */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: var(--zinc-600);
}

html.dark .gallery-filter-btn {
    background: var(--zinc-900);
    color: var(--zinc-300);
}

.gallery-filter-btn.active {
    background: var(--amber-600);
    color: white;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.gallery-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0.75rem;
    background: var(--zinc-200);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

html.dark .gallery-item {
    background: var(--zinc-800);
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1rem;
    text-align: center;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 5rem;
}

.menu-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.menu-section-header h2 {
    font-size: 1.875rem;
    color: var(--amber-600);
}

.menu-section-header .line {
    flex-grow: 1;
    height: 1px;
    background: var(--zinc-200);
}

html.dark .menu-section-header .line {
    background: var(--zinc-800);
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: background 0.3s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

html.dark .menu-item:hover {
    background: rgba(39, 39, 42, 0.5);
}

.menu-item-icon {
    padding: 0.75rem;
    border-radius: 9999px;
    background: var(--amber-100);
    color: var(--amber-600);
    flex-shrink: 0;
}

html.dark .menu-item-icon {
    background: rgba(217, 119, 6, 0.2);
}

.menu-item h4 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--zinc-900);
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

html.dark .menu-item h4 {
    color: white;
}

.menu-item:hover h4 {
    color: var(--amber-600);
}

.menu-item p {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--zinc-500);
    line-height: 1.6;
}

html.dark .menu-item p {
    color: var(--zinc-400);
}

/* Services Cards */
.service-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .service-block {
        flex-direction: row;
    }

    .service-block:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.service-image {
    width: 100%;
    height: 20rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .service-image {
        width: 50%;
    }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    width: 100%;
}

@media (min-width: 768px) {
    .service-content {
        width: 50%;
    }
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--amber-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-600);
    margin-bottom: 1.5rem;
}

html.dark .service-icon {
    background: rgba(217, 119, 6, 0.3);
}

.service-content h3 {
    font-size: 1.875rem;
    color: var(--zinc-900);
    margin-bottom: 1rem;
}

html.dark .service-content h3 {
    color: white;
}

.service-content>p {
    font-size: 1.125rem;
    color: var(--zinc-600);
    margin-bottom: 1.5rem;
}

html.dark .service-content>p {
    color: var(--zinc-400);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--zinc-700);
}

html.dark .service-features li {
    color: var(--zinc-300);
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-500);
}

/* Estimator */
.estimator-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .estimator-card {
        flex-direction: row;
    }
}

.estimator-controls {
    padding: 2rem;
    background: white;
}

html.dark .estimator-controls {
    background: var(--zinc-800);
}

@media (min-width: 768px) {
    .estimator-controls {
        width: 60%;
        padding: 3rem;
    }
}

.estimator-result {
    padding: 2rem;
    background: var(--zinc-900);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .estimator-result {
        width: 40%;
        padding: 3rem;
    }
}

.package-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.package-btn {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--zinc-200);
    background: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    color: var(--zinc-500);
}

html.dark .package-btn {
    border-color: var(--zinc-700);
}

.package-btn.active {
    border-color: var(--amber-600);
    background: var(--amber-50);
    color: var(--amber-700);
}

html.dark .package-btn.active {
    background: rgba(217, 119, 6, 0.2);
    color: var(--amber-400);
}

.package-btn span {
    display: block;
}

.package-btn .label {
    font-weight: 700;
}

.package-btn .desc {
    font-size: 0.75rem;
}

/* How It Works Steps */
.steps-container {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steps-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--zinc-200);
    z-index: 0;
}

html.dark .steps-line {
    background: var(--zinc-800);
}

@media (min-width: 768px) {
    .steps-line {
        display: block;
    }
}

.step {
    background: white;
    padding-top: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

html.dark .step {
    background: var(--zinc-950);
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--zinc-900);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
}

html.dark .step-number {
    background: white;
    color: var(--zinc-900);
    border-color: var(--zinc-950);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--zinc-900);
}

html.dark .step h3 {
    color: white;
}

.step p {
    font-size: 0.875rem;
    color: var(--zinc-500);
    padding: 0 1rem;
}

/* Signature Experience Section */
.signature-section {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .signature-section {
        grid-template-columns: 1fr 1fr;
    }
}

.signature-image-container {
    position: relative;
    max-width: 24rem;
    margin: 0 auto;
}

.signature-image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--zinc-200);
}

html.dark .signature-image {
    border-color: rgba(255, 255, 255, 0.1);
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: transform 0.7s;
}

.signature-image:hover img {
    transform: scale(1.05);
}

.signature-glow {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
}

/* Smoke & Flame Effects */
.smoke-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) translateY(-3rem);
    width: 5rem;
    height: 10rem;
    pointer-events: none;
}

.smoke-1,
.smoke-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 0;
}

.smoke-1 {
    bottom: 1rem;
    width: 2rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(1rem);
    animation: smoke 3s infinite ease-out;
}

.smoke-2 {
    bottom: 2rem;
    width: 1.5rem;
    height: 6rem;
    background: rgba(156, 163, 175, 0.1);
    filter: blur(0.75rem);
    animation: smoke 3s 0.1s infinite ease-out;
}

.flame-glow {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    background: rgba(234, 88, 12, 0.4);
    border-radius: 50%;
    filter: blur(1rem);
    animation: pulse-slow 3s infinite ease-in-out;
    mix-blend-mode: screen;
}

.flame {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 2.5rem;
    background: linear-gradient(to top, #f97316, #fdba74, #fef3c7);
    filter: blur(2px);
    border-radius: 50%;
    animation: flicker 0.1s infinite alternate;
    mix-blend-mode: hard-light;
    opacity: 0.9;
}

/* Compact Estimator on Homepage */
.compact-estimator {
    background: var(--zinc-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.compact-estimator-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

.compact-estimator-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .compact-estimator-grid {
        flex-direction: row;
    }
}

.compact-estimator-left,
.compact-estimator-right {
    width: 100%;
}

@media (min-width: 768px) {

    .compact-estimator-left,
    .compact-estimator-right {
        width: 50%;
    }
}

.compact-estimator-result {
    background: rgba(39, 39, 42, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: border-color 0.3s;
}

.compact-estimator-result:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

/* Testimonials */
.testimonial-card {
    background: var(--zinc-50);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
}

html.dark .testimonial-card {
    background: var(--zinc-900);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(245, 158, 11, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--amber-500);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--zinc-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

html.dark .testimonial-text {
    color: var(--zinc-300);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--zinc-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--zinc-500);
}

html.dark .testimonial-avatar {
    background: var(--zinc-800);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--zinc-900);
}

html.dark .testimonial-name {
    color: white;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--zinc-500);
}

/* AI Section */
.ai-card {
    background: white;
    border: 1px solid var(--amber-100);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

html.dark .ai-card {
    background: rgba(39, 39, 42, 0.5);
    border-color: rgba(217, 119, 6, 0.3);
}

.ai-suggestion {
    background: var(--amber-50);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--amber-500);
}

html.dark .ai-suggestion {
    background: rgba(120, 53, 15, 0.3);
}

/* Contact Form */
.contact-form {
    background: var(--zinc-50);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--zinc-200);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html.dark .contact-form {
    background: var(--zinc-900);
    border-color: var(--zinc-800);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-700);
    margin-bottom: 0.5rem;
}

html.dark .form-group label {
    color: var(--zinc-300);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid var(--zinc-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    color: var(--zinc-900);
}

html.dark .form-input {
    background: var(--zinc-800);
    border-color: var(--zinc-700);
    color: white;
}

.form-input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-input::placeholder {
    color: var(--zinc-400);
}

textarea.form-input {
    min-height: 6rem;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--zinc-900);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html.dark .form-submit {
    background: white;
    color: var(--zinc-900);
}

.form-submit:hover {
    background: var(--amber-600);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

html.dark .form-submit:hover {
    background: var(--zinc-200);
}

/* ========================================
   SERVICES CAROUSEL
   ======================================== */

/* Carousel Container */
.services-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.services-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.services-carousel-track.dragging {
    transition: none;
}

/* Service Card */
.service-card {
    flex: 0 0 calc(100% - 2rem);
    min-width: calc(100% - 2rem);
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--zinc-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .service-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: calc(33.333% - 1rem);
    }
}

html.dark .service-card {
    background: rgba(39, 39, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--amber-500);
}

html.dark .service-card:hover {
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.15);
    border-color: var(--amber-500);
}

/* Service Icon Container */
.service-card-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
}

html.dark .service-card-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.3), rgba(217, 119, 6, 0.1));
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.service-card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--amber-600);
    transition: all 0.4s;
}

.service-card:hover .service-card-icon svg {
    color: var(--amber-700);
}

html.dark .service-card-icon svg {
    color: var(--amber-500);
}

/* Icon Animations */
@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes iconHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.2);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.15);
    }

    70% {
        transform: scale(1);
    }
}

@keyframes iconSparkle {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: rotate(10deg) scale(1.1);
        filter: brightness(1.3);
    }
}

@keyframes iconWave {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-4px);
    }

    75% {
        transform: translateY(4px);
    }
}

@keyframes iconFlip {

    0%,
    100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(15deg);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(5deg);
    }
}

.service-card:hover .icon-pulse svg {
    animation: iconPulse 1s ease-in-out infinite;
}

.service-card:hover .icon-heartbeat svg {
    animation: iconHeartbeat 1.2s ease-in-out infinite;
}

.service-card:hover .icon-sparkle svg {
    animation: iconSparkle 0.8s ease-in-out infinite;
}

.service-card:hover .icon-wave svg {
    animation: iconWave 0.6s ease-in-out infinite;
}

.service-card:hover .icon-flip svg {
    animation: iconFlip 1s ease-in-out infinite;
}

.service-card:hover .icon-float svg {
    animation: iconFloat 2s ease-in-out infinite;
}

/* Service Card Content */
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zinc-900);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

html.dark .service-card h3 {
    color: white;
}

.service-card:hover h3 {
    color: var(--amber-600);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--zinc-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

html.dark .service-card p {
    color: var(--zinc-400);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-600);
    text-decoration: none;
    transition: all 0.3s;
}

.service-card-link:hover {
    gap: 0.75rem;
    color: var(--amber-700);
}

.service-card-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--zinc-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--zinc-600);
}

html.dark .carousel-arrow {
    background: var(--zinc-800);
    border-color: var(--zinc-700);
    color: var(--zinc-300);
}

.carousel-arrow:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: white;
    transform: scale(1.1);
}

.carousel-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--zinc-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

html.dark .carousel-dot {
    background: var(--zinc-700);
}

.carousel-dot.active {
    width: 2rem;
    background: var(--amber-500);
}

.carousel-dot:hover {
    background: var(--amber-400);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: visible;
    margin-bottom: 60px;
}

/* Wave shape at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 10;
}

/* Add gradient overlay for the wave */
.hero-wave-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 11;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 2rem;
    margin-left: 5%;
    margin-top: 5rem;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.92), rgba(180, 83, 9, 0.88));
    border-radius: 1.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 3rem;
        margin-left: 8%;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    width: 2rem;
    border-radius: 0.25rem;
    background: var(--amber-500);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero Bottom Wave - Vertical Separation */
.hero-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 15;
}

.hero-bottom-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (min-width: 768px) {
    .hero-bottom-wave svg {
        height: 120px;
    }
}

html.dark .hero-bottom-wave svg path {
    fill: #09090b;
}

/* ========================================
   MENU ITEM ICON ANIMATIONS
   ======================================== */

.menu-item {
    transition: all 0.3s;
}

.menu-item:hover {
    transform: translateX(8px);
}

.menu-item-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-item-icon {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.menu-item:hover .menu-item-icon svg {
    color: white;
}

/* Non-repeating animations for each menu section */
/* Pitchers - Pour animation */
.menu-section:nth-child(1) .menu-item:hover .menu-item-icon svg {
    animation: iconPour 0.5s ease-out forwards;
}

/* Cocktails - Shake animation */
.menu-section:nth-child(2) .menu-item:hover .menu-item-icon svg {
    animation: iconShake 0.5s ease-out forwards;
}

/* Mocktails - Bubble animation */
.menu-section:nth-child(3) .menu-item:hover .menu-item-icon svg {
    animation: iconBubble 0.5s ease-out forwards;
}

/* Smoked Cocktails - Smoke/flame animation */
.menu-section:nth-child(4) .menu-item:hover .menu-item-icon svg {
    animation: iconFlame 0.6s ease-out forwards;
}

/* Pour animation - tilted pour effect */
@keyframes iconPour {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(-15deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Shake animation - cocktail shaker effect */
@keyframes iconShake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    20% {
        transform: translateX(-3px) rotate(-5deg);
    }

    40% {
        transform: translateX(3px) rotate(5deg);
    }

    60% {
        transform: translateX(-2px) rotate(-3deg);
    }

    80% {
        transform: translateX(2px) rotate(3deg);
    }
}

/* Bubble animation - rising bubbles effect */
@keyframes iconBubble {
    0% {
        transform: scale(1) translateY(0);
    }

    30% {
        transform: scale(1.1) translateY(-2px);
    }

    60% {
        transform: scale(1.05) translateY(-4px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

/* Flame animation - flickering smoke effect */
@keyframes iconFlame {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    25% {
        transform: scale(1.1) translateY(-2px);
        filter: brightness(1.3);
    }

    50% {
        transform: scale(1.05) translateY(-1px);
        filter: brightness(1.1);
    }

    75% {
        transform: scale(1.08) translateY(-3px);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1) translateY(0);
        filter: brightness(1);
    }
}

/* ========================================
   SERVICE PAGE IMAGE HOVER EFFECTS
   ======================================== */

.service-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-block {
        flex-direction: row;
        align-items: center;
    }

    .service-block:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image:hover img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0) 0%, rgba(217, 119, 6, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-image:hover::after {
    opacity: 1;
}

.service-content {
    flex: 1;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .service-content {
        padding: 2rem;
    }
}

.service-content h3 {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--zinc-900);
    margin-bottom: 1rem;
}

html.dark .service-content h3 {
    color: white;
}

.service-content p {
    color: var(--zinc-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

html.dark .service-content p {
    color: var(--zinc-400);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--amber-600);
    transition: all 0.4s;
}

html.dark .service-icon {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.3), rgba(217, 119, 6, 0.1));
    color: var(--amber-500);
}

.service-block:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
    animation: iconFloat 2s ease-in-out infinite;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--zinc-600);
    font-size: 0.875rem;
}

html.dark .service-features li {
    color: var(--zinc-400);
}

.service-features li::before {
    content: '✓';
    color: var(--amber-500);
    font-weight: bold;
}

/* ========================================
   GALLERY LAZY LOADING & PAGINATION
   ======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s, opacity 0.3s;
}

.gallery-item img.lazy {
    opacity: 0;
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 3rem;
    background: white;
    border: 2px solid var(--zinc-200);
    border-radius: 9999px;
    font-weight: 600;
    color: var(--zinc-700);
    cursor: pointer;
    transition: all 0.3s;
}

html.dark .load-more-btn {
    background: var(--zinc-800);
    border-color: var(--zinc-700);
    color: white;
}

.load-more-btn:hover {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: white;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--zinc-200);
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-600);
    cursor: pointer;
    transition: all 0.3s;
}

html.dark .gallery-filter-btn {
    background: var(--zinc-800);
    border-color: var(--zinc-700);
    color: var(--zinc-300);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: white;
}

/* Gallery item hidden state for filtering */
.gallery-item.hidden {
    display: none;
}

/* ========================================
   TOOLS PAGE TABS
   ======================================== */

.tools-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    border-radius: 9999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

html.dark .tools-tabs {
    background: rgba(255, 255, 255, 0.05);
}

.tools-tab {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    color: var(--zinc-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

html.dark .tools-tab {
    color: var(--zinc-400);
}

.tools-tab:hover {
    color: var(--zinc-900);
}

html.dark .tools-tab:hover {
    color: white;
}

.tools-tab.active {
    background: white;
    color: var(--amber-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

html.dark .tools-tab.active {
    background: var(--zinc-800);
    color: var(--amber-500);
}

.tools-tab svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tools-panel {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tools-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CURVED SECTION DIVIDERS
   ======================================== */

.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Wave Divider - Flowing curve */
.divider-wave {
    margin-top: -1px;
}

.divider-wave svg {
    height: 60px;
}

@media (min-width: 768px) {
    .divider-wave svg {
        height: 80px;
    }
}

/* Tilt Divider - Angular elegant cut */
.divider-tilt {
    margin-top: -1px;
}

.divider-tilt svg {
    height: 50px;
}

@media (min-width: 768px) {
    .divider-tilt svg {
        height: 70px;
    }
}

/* Curve Divider - Soft arc */
.divider-curve {
    margin-top: -1px;
}

.divider-curve svg {
    height: 40px;
}

@media (min-width: 768px) {
    .divider-curve svg {
        height: 60px;
    }
}

/* Layered Wave - Double wave effect */
.divider-layered {
    margin-top: -1px;
}

.divider-layered svg {
    height: 80px;
}

@media (min-width: 768px) {
    .divider-layered svg {
        height: 120px;
    }
}

/* Flip dividers for bottom placement */
.divider-flip {
    transform: rotate(180deg);
    margin-bottom: -1px;
    margin-top: 0;
}

/* Color fills for light backgrounds */
.divider-fill-white svg path {
    fill: #ffffff;
}

.divider-fill-zinc-50 svg path {
    fill: #fafafa;
}

.divider-fill-zinc-100 svg path {
    fill: #f4f4f5;
}

.divider-fill-zinc-900 svg path {
    fill: #18181b;
}

.divider-fill-zinc-950 svg path {
    fill: #09090b;
}

/* Dark mode fill adjustments */
html.dark .divider-fill-white svg path {
    fill: #09090b;
}

html.dark .divider-fill-zinc-50 svg path {
    fill: #18181b;
}

html.dark .divider-fill-zinc-100 svg path {
    fill: #18181b;
}

/* Estimator Section Waves - Enhanced for visibility */
.estimator-top-wave svg {
    height: 80px;
}

.estimator-bottom-wave svg {
    height: 80px;
}

@media (min-width: 768px) {
    .estimator-top-wave svg {
        height: 100px;
    }

    .estimator-bottom-wave svg {
        height: 100px;
    }
}

/* Dark mode: bottom wave fills with dark zinc-950 instead */
html.dark .estimator-bottom-wave svg path {
    fill: #18181b;
}

/* Footer Wave - Transition into footer */
.footer-wave {
    margin-top: -1px;
    margin-bottom: -1px;
}

.footer-wave svg {
    height: 70px;
}

@media (min-width: 768px) {
    .footer-wave svg {
        height: 100px;
    }
}