/* ============================================================
   SAK Health Consult — Ultra-Modern Premium Stylesheet
   2025-2026 Design Trends · Agency-Grade Quality
   ============================================================ */

/* --- Design Tokens --- */
:root {
    --color-primary: #0B6E72;
    --color-primary-light: #0D8A8F;
    --color-primary-dark: #094F52;
    --color-secondary: #FFFFFF;
    --color-accent: #C9A84C;
    --color-accent-light: #D4B85D;
    --color-accent-dark: #B08D3A;
    --color-bg: #FAFBFC;
    --color-bg-alt: #F0F4F3;
    --color-text: #1A1A2E;
    --color-text-light: #64748B;
    --color-surface: #FFFFFF;
    --color-border: rgba(0, 0, 0, 0.06);
    --max-width: 1200px;
    --section-padding: 120px;
    --header-height: 72px;
    --border-radius-lg: 20px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px -1px rgba(11, 110, 114, 0.06), 0 4px 12px -2px rgba(11, 110, 114, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(11, 110, 114, 0.08), 0 10px 15px -3px rgba(11, 110, 114, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(11, 110, 114, 0.1), 0 20px 40px -10px rgba(11, 110, 114, 0.06);
    --shadow-xl: 0 20px 50px -12px rgba(11, 110, 114, 0.15), 0 30px 60px -15px rgba(11, 110, 114, 0.08);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);
    --gradient-primary: linear-gradient(135deg, #0B6E72, #0d8a8f);
    --gradient-accent: linear-gradient(135deg, #C9A84C, #dbb85e);
    --gradient-premium: linear-gradient(135deg, #0B6E72 0%, #0d8a8f 40%, #C9A84C 100%);
    --gradient-dark: linear-gradient(135deg, #0a1a1b, #0B6E72);
    --noise-opacity: 0.03;
    --perspective: 1000px;
}

/* --- Global Selection --- */
::selection {
    background: var(--color-primary);
    color: #fff;
}

::-moz-selection {
    background: var(--color-primary);
    color: #fff;
}

/* --- Modern Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f0f0f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'cv11', 'ss01';
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

a:not(.btn):not(.nav-link):not(.social-icon):not(.logo):not(.btn-nav-cta):not(.btn-add-cart):not(.filter-btn):not(.footer-links a):not(.whatsapp-float) {
    background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-size: 0% 1.5px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.4s var(--ease-out-expo), color 0.3s ease;
}

a:not(.btn):not(.nav-link):not(.social-icon):not(.logo):not(.btn-nav-cta):not(.btn-add-cart):not(.filter-btn):not(.footer-links a):not(.whatsapp-float):hover {
    background-size: 100% 1.5px;
    color: var(--color-primary);
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Focus-visible for accessibility */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
    color: var(--color-text);
    font-feature-settings: 'cv11';
}

h1 {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.025em;
}

h3 {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

h4 {
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

small,
.text-sm {
    font-size: 0.875rem;
}

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

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

.text-white {
    color: #fff;
}

/* Section Label — Refined pretitle */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 2px;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Alternate section backgrounds with subtle mesh gradient */
.section:nth-child(even) {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #F5F7F6 50%, var(--color-bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--color-text);
}

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Section Decorated — Modern accent */
.section-decorated {
    position: relative;
}

.section-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 100px;
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* ============================================================
   HEADER / NAVIGATION — Glassmorphism
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s var(--ease-out-expo),
        box-shadow 0.4s var(--ease-out-expo),
        backdrop-filter 0.4s var(--ease-out-expo);
    height: var(--header-height);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04),
        0 4px 24px rgba(11, 110, 114, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

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

.logo-health {
    color: var(--color-accent);
}

.logo-tagline {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: -3px;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
    padding: 6px 0;
    position: relative;
    transition: color 0.3s var(--ease-out-expo);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.35s var(--ease-out-expo);
    border-radius: 100px;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 100px;
    transition: var(--transition-premium);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3),
        0 4px 16px rgba(201, 168, 76, 0.15);
    letter-spacing: 0.02em;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35),
        0 8px 24px rgba(201, 168, 76, 0.2);
}

.cart-icon {
    position: relative;
    font-size: 1.15rem;
    color: var(--color-text);
    padding: 8px;
    transition: var(--transition);
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cart-icon:hover {
    color: var(--color-primary);
    background: rgba(11, 110, 114, 0.06);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-text);
    font-size: 0.6rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
}

.cart-badge.hidden {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 100px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 32px 32px;
    transition: right 0.45s var(--ease-out-expo);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav .nav-link::after {
    display: none;
}

.mobile-nav .btn-nav-cta {
    display: block;
    text-align: center;
    margin-top: 28px;
    padding: 14px 28px;
}

/* ============================================================
   BUTTONS — Premium Pill Design
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-premium);
    border: none;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::after {
    opacity: 1;
}

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

.btn:active {
    transform: translateY(0);
}

.btn:focus {
    box-shadow: 0 0 0 4px rgba(11, 110, 114, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(11, 110, 114, 0.25),
        0 2px 6px rgba(11, 110, 114, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(11, 110, 114, 0.3),
        0 4px 10px rgba(11, 110, 114, 0.2);
}

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

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(11, 110, 114, 0.25);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-text);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3),
        0 2px 6px rgba(201, 168, 76, 0.15);
}

.btn-accent:hover {
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35),
        0 4px 10px rgba(201, 168, 76, 0.2);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ============================================================
   CARDS — Glassmorphism & Modern Depth
   ============================================================ */
.card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    transition: var(--transition-premium);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 110, 114, 0.08);
}

/* Service Card — Image top, content below */
.service-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-premium);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: left;
    padding: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    z-index: 1;
}

.service-card:hover {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 20px 40px rgba(11, 110, 114, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(11, 110, 114, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card .icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 110, 114, 0.08), rgba(11, 110, 114, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-premium);
}

.service-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(11, 110, 114, 0.25);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    padding: 0 28px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 28px 28px;
}

/* Service card with padding when no image */
.service-card .icon-circle {
    margin: 28px 0 20px 28px;
}

/* Testimonial Card — Premium with gradient border */
.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition-premium);
    border: 1px solid var(--color-border);
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--color-primary), var(--color-accent)) 1;
    border-image-slice: 0 0 0 4;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--color-accent);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-card .quote-text {
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-light);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-card .author {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.testimonial-card .author-role {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 2px;
}

/* Product Card — Modern ecommerce */
.product-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-premium);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 20px 40px rgba(11, 110, 114, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(11, 110, 114, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card .product-image {
    aspect-ratio: 1 / 1;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #bbb;
    position: relative;
    overflow: hidden;
}

.product-card .product-image::before,
.product-card .product-image::after {
    display: none !important;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-card .product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.product-card .product-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.product-card .product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.product-card .btn-add-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-premium);
    border: none;
    text-align: center;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card .btn-add-cart:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 4px 16px rgba(11, 110, 114, 0.3);
    transform: translateY(-1px);
}

/* Team Card — Overlap name design */
.team-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-premium);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-8px);
    box-shadow:
        var(--shadow-lg),
        0 20px 40px rgba(11, 110, 114, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card .team-image {
    aspect-ratio: 3 / 4;
    background: linear-gradient(180deg, #e8eceb 0%, #d4dbd9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #bbb;
    position: relative;
    overflow: hidden;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card .team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.1) 100%);
    pointer-events: none;
}

.team-card .team-info {
    padding: 24px;
    text-align: center;
    position: relative;
    margin-top: -16px;
    background: var(--color-surface);
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.team-card .team-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Value Card — Centered icon treatment */
.value-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: 44px 32px;
    transition: var(--transition-premium);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 110, 114, 0.08);
}

.value-card .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: #fff;
    transition: var(--transition-premium);
    box-shadow: 0 8px 20px rgba(11, 110, 114, 0.2);
}

.value-card:hover .icon-circle {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(11, 110, 114, 0.3);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ============================================================
   HERO SECTION — Diagonal gradient overlay
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Modern diagonal teal-to-gold gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 110, 114, 0.75) 0%,
            rgba(11, 110, 114, 0.45) 50%,
            rgba(201, 168, 76, 0.3) 100%);
    z-index: 1;
}

/* Decorative floating shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 2;
    pointer-events: none;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, 15px) rotate(-3deg);
    }
}

.hero-overlay {
    display: none;
}

.hero-pattern {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   WHY CHOOSE US — Tinted background
   ============================================================ */
.why-choose-section,
[class*="why-choose"] {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.why-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition-premium);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

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

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

.why-card .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition-premium);
    box-shadow: 0 6px 16px rgba(11, 110, 114, 0.2);
}

.why-card:hover .icon-circle {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 24px rgba(11, 110, 114, 0.3);
}

.why-card h3 {
    margin-bottom: 12px;
}

.why-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ============================================================
   CTA BANNER — Glass card over gradient
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 40%, var(--color-primary-light) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 48px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   FORMS — Modern Clean Design
   ============================================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-label::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: border-color 0.3s var(--ease-out-expo),
        box-shadow 0.3s var(--ease-out-expo);
    background: var(--color-surface);
    color: var(--color-text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(11, 110, 114, 0.1),
        0 0 0 2px rgba(11, 110, 114, 0.2);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.form-error {
    color: #EF4444;
    font-size: 0.82rem;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.form-error.visible {
    display: block;
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

/* ============================================================
   MULTI-STEP BOOKING FORM — Connected steps with pulse
   ============================================================ */
.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 52px;
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #E2E8F0;
    z-index: 0;
    border-radius: 100px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.progress-step .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E2E8F0;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition-premium);
}

.progress-step .step-label {
    font-size: 0.78rem;
    color: var(--color-text-light);
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    box-shadow: 0 4px 14px rgba(11, 110, 114, 0.3),
        0 0 0 6px rgba(11, 110, 114, 0.1);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(11, 110, 114, 0.3), 0 0 0 6px rgba(11, 110, 114, 0.1);
    }

    50% {
        box-shadow: 0 4px 14px rgba(11, 110, 114, 0.3), 0 0 0 12px rgba(11, 110, 114, 0.05);
    }
}

.progress-step.active .step-label {
    color: var(--color-primary);
    font-weight: 700;
}

.progress-step.completed .step-number {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.progress-step.completed .step-label {
    color: var(--color-text);
    font-weight: 600;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInStep 0.45s var(--ease-out-expo);
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-option {
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-md);
    padding: 22px 24px;
    cursor: pointer;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    background: var(--color-surface);
}

.service-option:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 2px 12px rgba(11, 110, 114, 0.08);
    background: rgba(11, 110, 114, 0.02);
}

.service-option.selected {
    border-color: var(--color-primary);
    background: rgba(11, 110, 114, 0.04);
    box-shadow: 0 0 0 4px rgba(11, 110, 114, 0.08);
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.service-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.service-option .option-radio {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-option.selected .option-radio {
    border-color: var(--color-primary);
    border-width: 2px;
}

.service-option.selected .option-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.service-option .option-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-option .option-text h4 {
    margin-bottom: 2px;
}

.service-option .option-text p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.booking-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    gap: 16px;
}

.booking-confirmation {
    text-align: center;
    padding: 56px 24px;
}

.booking-confirmation .confirm-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.booking-confirmation h3 {
    margin-bottom: 12px;
    color: #059669;
}

.booking-confirmation p {
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================
   BOOKING PAGE — Hero CTAs, Trust Badges, Single-Step Form
   ============================================================ */
.booking-hero .hero-subtext {
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 12px;
    opacity: 0.92;
}

.booking-hero .hero-support-line {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* Trust Badges */
.trust-badges-section {
    padding: 48px 0 0;
}

.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: left;
}

.trust-badge i {
    font-size: 1.4rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Booking submit button */
.booking-submit-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

.booking-submit-btn i {
    margin-right: 6px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Input error state */
.input-error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

@media (max-width: 768px) {
    .trust-badges-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .booking-hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================================
   SHOP SPECIFIC — Modern filter pills & grid
   ============================================================ */
.category-filter {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0;
    margin-bottom: 36px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 10px 26px;
    border: 1.5px solid #E2E8F0;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-premium);
    background: var(--color-surface);
    color: var(--color-text-light);
    letter-spacing: 0.01em;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(11, 110, 114, 0.04);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(11, 110, 114, 0.25);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bulk-banner {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04));
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    padding: 18px 28px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    margin-bottom: 36px;
}

.bulk-banner p {
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================================
   FOOTER — Rich Dark Premium
   ============================================================ */
.site-footer {
    background: #0F172A;
    color: #fff;
    padding: 80px 0 28px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: -0.01em;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 100px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-premium);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(11, 110, 114, 0.3);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    margin-right: 0;
    transition: width 0.3s var(--ease-out-expo), margin-right 0.3s var(--ease-out-expo);
    border-radius: 100px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
}

.footer-contact li i {
    color: var(--color-accent);
    width: 18px;
    text-align: center;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35),
        0 8px 32px rgba(37, 211, 102, 0.15);
    transition: var(--transition-premium);
    animation: whatsappPulse 3s ease-in-out 1;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45),
        0 12px 40px rgba(37, 211, 102, 0.2);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================================
   SCROLL ANIMATIONS — Progressive Enhancement
   Content is ALWAYS visible by default. GSAP adds the
   .gsap-ready class to <html> before animating, so elements
   only hide when JS is confirmed working.
   ============================================================ */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease-out-expo),
        transform 0.7s var(--ease-out-expo);
}

/* Only hide elements when GSAP is confirmed loaded and ready */
.gsap-ready .fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-ready .fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
}

.gsap-ready .fade-in-right {
    opacity: 0;
    transform: translateX(40px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) {
    transition-delay: 0s;
}

.fade-in:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-in:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-in:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-in:nth-child(6) {
    transition-delay: 0.5s;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 48px);
}

.legal-content h1 {
    margin-bottom: 20px;
}

.legal-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
    line-height: 1.8;
    color: var(--color-text-light);
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin: 12px 0;
}

/* ============================================================
   PAGE HERO — Gradient + Clip-path
   ============================================================ */
.page-hero {
    padding: calc(var(--header-height) + 80px) 0 100px;
    background: linear-gradient(135deg, #0B6E72 0%, #094F52 60%, #0D8A8F 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.015) 30px,
            rgba(255, 255, 255, 0.015) 60px);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 72px 0;
}

.content-section+.content-section {
    border-top: 1px solid var(--color-border);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse>* {
    direction: ltr;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #E2E8F0 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #CBD5E1;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* ============================================================
   SUCCESS / ALERT MESSAGES
   ============================================================ */
.alert {
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 0.93rem;
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    color: #065F46;
    border-left-color: #10B981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    color: #991B1B;
    border-left-color: #EF4444;
}

.form-success {
    text-align: center;
    padding: 56px 24px;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.form-success h3 {
    color: #059669;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--color-text-light);
}

/* ============================================================
   PREMIUM VISUAL LAYER — Noise, Mesh, Glass, 3D, Dividers
   ============================================================ */

/* --- Noise/Grain Texture Overlay --- */
.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Apply noise to hero and CTA sections */
.hero,
.cta-banner {
    position: relative;
}

.hero::before,
.cta-banner::before {
    /* Noise texture is inherited via the noise-overlay class when added to HTML */
}

/* --- Mesh Gradient Section Backgrounds --- */
.mesh-gradient {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(11, 110, 114, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(11, 110, 114, 0.08) 0%, transparent 50%);
}

.mesh-gradient-dark {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(11, 110, 114, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a1a1b, #0d2b2d);
}

/* --- Gradient Text Effect --- */
.gradient-text {
    color: var(--color-primary, #0B6E72);
    /* Fallback color always visible */
    background: linear-gradient(135deg, #0B6E72 0%, #0d8a8f 40%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Enhanced Glassmorphism --- */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.glass-card-dark {
    background: rgba(11, 110, 114, 0.15);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
}

/* --- 3D Card Hover Effects --- */
.card-3d {
    perspective: var(--perspective);
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-8px);
    box-shadow:
        0 20px 40px rgba(11, 110, 114, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Animated Gradient Borders --- */
.gradient-border {
    position: relative;
    border: none;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-premium);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* --- SVG Wave Section Dividers --- */
.section-divider {
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.section-divider-flip {
    transform: rotate(180deg);
    margin-bottom: -1px;
    margin-top: 0;
}

/* --- Enhanced Ambient Color Shadows --- */
.shadow-glow-primary {
    box-shadow: 0 8px 30px rgba(11, 110, 114, 0.25), 0 4px 12px rgba(11, 110, 114, 0.1);
}

.shadow-glow-accent {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25), 0 4px 12px rgba(201, 168, 76, 0.1);
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
    --color-bg: #0a1a1b;
    --color-text: #e8e8e8;
    --color-text-light: #a0a0a0;
    --color-surface: #112425;
    --color-border: #1a3a3b;
    --color-border-light: #153030;
    --glass-bg: rgba(17, 36, 37, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .team-card {
    background: var(--color-surface);
    border-color: var(--color-border);
    color: var(--color-text);
}

[data-theme="dark"] .product-card .product-image {
    background: #ffffff !important;
}

[data-theme="dark"] .product-card .product-image img {
    filter: none !important;
    opacity: 1 !important;
}

[data-theme="dark"] .header,
[data-theme="dark"] .site-header.scrolled {
    background: rgba(10, 26, 27, 0.9);
}

[data-theme="dark"] .hero::after {
    background: linear-gradient(135deg, rgba(10, 26, 27, 0.6), rgba(11, 110, 114, 0.5));
}

[data-theme="dark"] .footer,
[data-theme="dark"] .site-footer {
    background: #060f10;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #0a1a1b;
}

[data-theme="dark"] body {
    background-color: var(--color-bg);
    color: var(--color-text);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--color-text);
}

/* Gradient text must keep its styling in dark mode */
[data-theme="dark"] .gradient-text {
    color: var(--color-primary, #0B6E72);
    background: linear-gradient(135deg, #0B6E72 0%, #0d8a8f 40%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] p {
    color: var(--color-text-light);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: var(--color-surface);
    border-color: var(--color-border);
    color: var(--color-text);
}

[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .why-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

[data-theme="dark"] .mobile-nav {
    background: rgba(17, 36, 37, 0.98);
}

[data-theme="dark"] .nav-link {
    color: var(--color-text);
}

/* --- Dark Mode Toggle Button --- */
.dark-mode-toggle {
    background: none;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
    font-size: 1rem;
}

.dark-mode-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: rotate(30deg);
}

[data-theme="dark"] .dark-mode-toggle {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ============================================================
   BENTO GRID LAYOUT
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.bento-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-wide {
    grid-column: span 2;
}

.bento-item-tall {
    grid-row: span 2;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease;
    /* CSS-only fallback: auto-hide loader after 5s even if JS fails */
    animation: loaderFallbackHide 0s 5s forwards;
}

@keyframes loaderFallbackHide {
    to {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.page-loader img {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 3px;
    transition: width 0.3s ease;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ============================================================
   RESPONSIVE — 1440px container max
   ============================================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 88px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .split-content {
        gap: 36px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .section {
        padding: 64px 0;
    }

    .nav-links,
    .header-actions .btn-nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero::before {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 5%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item-lg,
    .bento-item-wide {
        grid-column: span 1;
    }

    .cta-banner {
        padding: 56px 28px;
        border-radius: var(--border-radius-md);
    }

    .booking-progress {
        margin-bottom: 36px;
    }

    .booking-progress::before {
        left: 20px;
        right: 20px;
    }

    .progress-step .step-label {
        font-size: 0.7rem;
    }

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

    .page-hero {
        padding: calc(var(--header-height) + 56px) 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .testimonial-card {
        padding: 32px 28px;
    }

    .value-card {
        padding: 36px 28px;
    }

    .why-card {
        padding: 32px 24px;
    }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 52px;
    }

    .container {
        padding: 0 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 44px 20px;
    }

    .page-hero {
        clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 16px 32px;
    }

    .booking-nav {
        flex-direction: column;
    }

    .category-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.82rem;
    }
}

/* ============================================================
   RESPONSIVE — 320px safety
   ============================================================ */
@media (max-width: 320px) {
    body {
        font-size: 0.93rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .card,
    .service-card,
    .testimonial-card,
    .why-card,
    .value-card {
        border-radius: var(--border-radius-md);
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .why-card {
        padding: 24px 20px;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-float,
    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay,
    .hero-bg,
    .hero-overlay,
    .hero-pattern {
        display: none !important;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1 !important;
        transform: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero h1,
    .hero p {
        color: #000;
    }
}

/* ============================================================
   CART MODAL
   ============================================================ */
.cart-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-surface);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.cart-modal.open {
    transform: translateX(0);
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.cart-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
}

.cart-modal-header h3 i {
    color: var(--color-primary);
    margin-right: 8px;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.cart-modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

.cart-empty i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 16px;
}

.cart-empty p {
    margin: 8px 0 0;
    font-size: 1rem;
}

.cart-empty .cart-empty-sub {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    gap: 12px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 2px;
}

.cart-item-warning {
    display: block;
    font-size: 0.75rem;
    color: #d35400;
    margin-top: 4px;
    font-weight: 500;
}

.cart-item-warning i {
    margin-right: 4px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-alt);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: var(--color-text);
}

.cart-qty-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.cart-qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 4px 2px;
    font-size: 0.85rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-text-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    margin-left: 4px;
}

.cart-remove-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.cart-modal-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.cart-minimum-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: var(--color-text);
    line-height: 1.4;
}

.cart-minimum-notice i {
    color: var(--color-accent-dark);
    margin-top: 2px;
    flex-shrink: 0;
}

.cart-total {
    text-align: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   PREMIUM ANIMATION FOUNDATIONS
   ============================================ */

/* Word reveal wrappers — visible by default for progressive enhancement */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.word-wrap .word {
    display: inline-block;
    opacity: 1;
    transform: none;
}

/* Ensure gradient-text styling passes through word-reveal spans */
.gradient-text .word-wrap,
.gradient-text .word-wrap .word {
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
}

/* Scroll progress bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 10001;
    pointer-events: none;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
    display: none;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    display: none;
}

@media (pointer: fine) {

    .custom-cursor,
    .custom-cursor-dot {
        display: block;
    }

    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea,
    select {
        cursor: none;
    }
}

.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
}

/* Reduced motion override */
.reduced-motion * {
    animation: none !important;
    transition: none !important;
}

.reduced-motion .fade-in,
.reduced-motion .fade-in-left,
.reduced-motion .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   HOMEPAGE PREMIUM STYLES
   ============================================ */

/* --- Hero Float Shapes --- */
.hero-float-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.float-shape-1 {
    width: 320px;
    height: 320px;
    background: var(--color-primary, #0d9488);
    top: 10%;
    left: -5%;
}

.float-shape-2 {
    width: 240px;
    height: 240px;
    background: var(--color-accent, #d4a853);
    top: 50%;
    right: -3%;
}

.float-shape-3 {
    width: 180px;
    height: 180px;
    background: var(--color-primary, #0d9488);
    bottom: 5%;
    left: 40%;
}

/* --- Services Bento Card Icons --- */
.services-section .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.services-section .bento-item-lg .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.services-section .service-card h3 {
    margin-bottom: 12px;
}

.services-section .service-card p {
    margin-bottom: 20px;
    opacity: 0.85;
    line-height: 1.7;
}

.services-section .service-card .btn-sm {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.85rem;
    margin-top: auto;
}

.services-section .bento-grid .service-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.services-section .bento-item-lg {
    padding: 40px;
}

/* --- Stats / Counter Section --- */
.stats-section {
    padding: 100px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 8px;
    display: block;
}

/* --- Testimonials Swiper --- */
.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    padding: 32px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--color-accent, #d4a853);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    opacity: 0.65;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--color-primary, #0d9488);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* --- Why Choose Us Enhanced --- */
.why-choose-section .why-card {
    padding: 36px 28px;
    text-align: center;
    border-radius: 16px;
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 20px;
}

/* --- Trust Badges Section --- */
.trust-section {
    padding: 60px 0;
    text-align: center;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-badge i {
    font-size: 1.4rem;
    color: var(--color-primary, #0d9488);
}

/* --- CTA Section Enhancement --- */
.cta-section.noise-overlay::before {
    border-radius: 0;
}

/* --- Homepage Responsive Overrides --- */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .float-shape-1 {
        width: 200px;
        height: 200px;
    }

    .float-shape-2 {
        width: 150px;
        height: 150px;
    }

    .float-shape-3 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PREMIUM INNER PAGE ENHANCEMENTS
   ============================================================ */

/* --- Timeline (About Page) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 48px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    border: 3px solid var(--color-bg);
    box-shadow: 0 0 0 4px rgba(11, 110, 114, 0.2);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-year {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        width: 100%;
        padding-left: 52px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 11px;
        right: auto;
    }
}

/* --- Team Card Flip/Hover --- */
.team-card-3d {
    perspective: 1000px;
}

.team-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.team-card-inner:hover {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 110, 114, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(0deg, rgba(10, 26, 27, 0.92) 0%, rgba(10, 26, 27, 0.6) 60%, transparent 100%);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.team-card-inner:hover .team-hover-overlay {
    transform: translateY(0);
}

.team-hover-overlay h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-hover-overlay p {
    font-size: 0.82rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* --- Floating Label Form Styles --- */
.float-label-group {
    position: relative;
    margin-bottom: 24px;
}

.float-label-group input,
.float-label-group textarea,
.float-label-group select {
    padding: 20px 16px 8px;
    width: 100%;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-sm, 8px);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--color-surface);
    color: var(--color-text);
}

.float-label-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 1rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

.float-label-group input:focus+label,
.float-label-group input:not(:placeholder-shown)+label,
.float-label-group textarea:focus+label,
.float-label-group textarea:not(:placeholder-shown)+label,
.float-label-group select:focus+label,
.float-label-group select:valid+label {
    top: 4px;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.float-label-group input:focus,
.float-label-group textarea:focus,
.float-label-group select:focus {
    border-color: var(--color-primary);
    outline: none;
}

.float-label-group .form-error {
    display: block;
    margin-top: 4px;
}

/* --- Enhanced Booking Progress Steps --- */
.booking-progress .step-number {
    position: relative;
    z-index: 1;
}

.booking-progress .progress-step.active .step-number {
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    color: #fff;
    box-shadow: 0 4px 15px rgba(11, 110, 114, 0.3);
}

.booking-progress .progress-step.completed .step-number {
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    color: #fff;
}

.booking-progress .progress-step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

/* --- Premium Add to Cart Button --- */
.btn-add-cart {
    position: relative;
    overflow: hidden;
}

.btn-add-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-add-cart:hover::after {
    width: 300px;
    height: 300px;
}

/* --- Booking Success Animation --- */
.booking-success {
    text-align: center;
    padding: 60px 20px;
}

.booking-success .success-check {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: #fff;
}

.booking-success h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--color-text-light);
    max-width: 450px;
    margin: 0 auto;
}

/* --- Service image parallax wrapper --- */
.service-img-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.service-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* --- Premium filter button active glow --- */
.filter-btn.active {
    position: relative;
}

.filter-btn.active::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-premium, linear-gradient(135deg, #0d9488, #d4a853));
    border-radius: inherit;
    z-index: -1;
    opacity: 1;
}

/* --- Dark mode inner page fixes --- */
[data-theme="dark"] .glass-card {
    background: rgba(17, 36, 37, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .team-hover-overlay {
    background: linear-gradient(0deg, rgba(10, 26, 27, 0.95) 0%, rgba(10, 26, 27, 0.7) 60%, transparent 100%);
}

[data-theme="dark"] .float-label-group input,
[data-theme="dark"] .float-label-group textarea,
[data-theme="dark"] .float-label-group select {
    background: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);
}

[data-theme="dark"] .timeline-dot {
    border-color: var(--color-bg);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg-img {
        transform: none !important;
    }

    .float-shape {
        display: none;
    }
}

/* --- Footer Newsletter --- */
.footer-newsletter {
    text-align: center;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 48px;
}

.footer-newsletter h3 {
    color: #fff;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-form .btn {
    border-radius: 100px;
    padding: 12px 24px;
    white-space: nowrap;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(11, 110, 114, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

/* ============================================================
   WHERE WE OPERATE
   ============================================================ */
.where-operate-section {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.where-operate-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: stretch;
}

.where-operate-info {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.where-operate-location {
    display: flex;
    align-items: center;
    gap: 12px;
}

.where-operate-location i {
    font-size: 1.6rem;
    color: var(--color-primary);
}

.where-operate-location h3 {
    margin: 0;
    font-size: 1.3rem;
}

.where-operate-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.where-operate-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.where-operate-list li i {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.where-operate-region {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.where-operate-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.where-operate-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   HOW TO GET HELP
   ============================================================ */
.how-help-section {
    background: var(--color-bg);
}

.how-step-card {
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
}

.how-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.4rem;
}

.how-step-card h3 {
    margin-bottom: 10px;
}

.how-help-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
}

/* ============================================================
   FOUNDER / CREDENTIALS
   ============================================================ */
.founder-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.founder-info h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.founder-title {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.founder-bio {
    line-height: 1.75;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

.founder-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ============================================================
   WHY CHOOSE US — 4-column grid
   ============================================================ */
.grid-4-why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================================
   RESPONSIVE — New sections
   ============================================================ */
@media (max-width: 992px) {
    .where-operate-grid {
        grid-template-columns: 1fr;
    }

    .where-operate-map iframe {
        min-height: 300px;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
    }

    .founder-image {
        max-width: 260px;
        margin: 0 auto;
    }

    .founder-cta {
        justify-content: center;
    }

    .grid-4-why {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4-why {
        grid-template-columns: 1fr;
    }

    .where-operate-list {
        grid-template-columns: 1fr;
    }

    .founder-card {
        padding: 24px;
        gap: 24px;
    }
}

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.product-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-modal-image {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.product-modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-modal-info {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-modal-category {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    text-transform: capitalize;
}

.product-modal-info h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text);
}

.product-modal-info p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.product-modal-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.product-modal-actions .btn {
    text-align: center;
    justify-content: center;
}

/* Product card clickable elements */
.product-card .product-image,
.product-card .product-name {
    cursor: pointer;
}

.product-card .product-image:hover {
    opacity: 0.85;
    transition: opacity 0.2s;
}

.product-card .product-name:hover {
    color: var(--color-primary);
    transition: color 0.2s;
}

@media (max-width: 768px) {
    .product-modal-content {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: 24px;
    }

    .product-modal-info {
        padding: 24px;
    }
}

/* Dark mode support for product modal */
[data-theme="dark"] .product-modal-image {
    background: var(--color-surface);
}

[data-theme="dark"] .product-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}