/* ========================================
   Klinik Pergigian Luna - Main Stylesheet
   ======================================== */

/* CSS Variables - Nude Theme (Darker) */
:root {
    --primary-color: #a07855;
    --primary-dark: #8b6544;
    --primary-light: #b8956f;
    --secondary-color: #b07070;
    --accent-color: #c9a68a;
    --success-color: #7a9c74;
    --warning-color: #c4a35a;
    --danger-color: #b56b6b;

    --text-dark: #3a302a;
    --text-medium: #5a4d42;
    --text-light: #7a6b5e;
    --text-white: #ffffff;

    --bg-white: #faf7f4;
    --bg-light: #f0ebe5;
    --bg-gray: #e5ded5;
    --bg-dark: #2d251f;

    --border-color: #e8ddd3;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    /* Dental Pattern Background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23d4c4b5' stroke-width='0.8' opacity='0.35'%3E%3C!-- Tooth 1 --%3E%3Cpath d='M25 30c0-8 5-12 10-12s10 4 10 12c0 5-2 15-4 20-1 3-3 5-6 5s-5-2-6-5c-2-5-4-15-4-20z'/%3E%3C!-- Dental Mirror --%3E%3Ccircle cx='85' cy='25' r='10'/%3E%3Cline x1='85' y1='35' x2='85' y2='55'/%3E%3C!-- Tooth 2 --%3E%3Cpath d='M140 25c0-6 4-10 8-10s8 4 8 10c0 4-1.5 12-3 16-1 2.5-2.5 4-5 4s-4-1.5-5-4c-1.5-4-3-12-3-16z'/%3E%3C!-- Scaler --%3E%3Cpath d='M175 20l-5 15 3 3 7-13z'/%3E%3Cline x1='177' y1='38' x2='180' y2='55'/%3E%3C!-- Braces --%3E%3Crect x='20' y='90' width='8' height='6' rx='1'/%3E%3Crect x='32' y='90' width='8' height='6' rx='1'/%3E%3Crect x='44' y='90' width='8' height='6' rx='1'/%3E%3Cline x1='20' y1='93' x2='52' y2='93'/%3E%3C!-- Tooth 3 --%3E%3Cpath d='M90 85c0-7 4.5-11 9-11s9 4 9 11c0 4.5-1.8 13.5-3.5 18-1 2.8-2.8 4.5-5.5 4.5s-4.5-1.7-5.5-4.5c-1.7-4.5-3.5-13.5-3.5-18z'/%3E%3C!-- Dental Probe --%3E%3Cpath d='M150 80c0 0 2 3 2 8'/%3E%3Cline x1='152' y1='88' x2='152' y2='110'/%3E%3Ccircle cx='152' cy='78' r='3'/%3E%3C!-- Tooth 4 --%3E%3Cpath d='M20 150c0-7 4-10 8-10s8 3 8 10c0 4-1.5 11-3 15-1 2.5-2.5 4-5 4s-4-1.5-5-4c-1.5-4-3-11-3-15z'/%3E%3C!-- Toothbrush --%3E%3Crect x='70' y='145' width='15' height='8' rx='2'/%3E%3Crect x='85' y='147' width='30' height='4' rx='1'/%3E%3Cline x1='72' y1='148' x2='72' y2='153'/%3E%3Cline x1='75' y1='148' x2='75' y2='153'/%3E%3Cline x1='78' y1='148' x2='78' y2='153'/%3E%3Cline x1='81' y1='148' x2='81' y2='153'/%3E%3C!-- Molar --%3E%3Cpath d='M145 145c0-5 3-8 6-8 2 0 3 1 4 3 1-2 2-3 4-3 3 0 6 3 6 8 0 4-1 10-3 14-1 2-2 3-4 3-1 0-2-0.5-3-2-1 1.5-2 2-3 2-2 0-3-1-4-3-2-4-3-10-3-14z'/%3E%3C!-- Floss --%3E%3Cellipse cx='180' cy='160' rx='8' ry='10'/%3E%3Cpath d='M180 170c0 0-5 10-5 15'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section */
.section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(180deg, #faf7f4 0%, #fff5eb 50%, #faf7f4 100%);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5c4033, #8b6544, #5c4033, transparent);
}

.section:nth-child(even) {
    background: linear-gradient(180deg, #fff5eb 0%, #faf7f4 50%, #fff5eb 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #5c4033 0%, #6b4423 50%, #8b6544 100%);
    background-size: 200% 200%;
    animation: goldShimmer 3s ease infinite;
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(92, 64, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: tagShine 2s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes tagShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
}

.highlight {
    background: linear-gradient(135deg, #5c4033 0%, #8b6544 50%, #a07855 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 700;
    display: inline-block;
    padding: 0 8px;
    animation: shimmerText 3s ease-in-out infinite;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #5c4033, #8b6544, #a07855, #8b6544, #5c4033, transparent);
    border-radius: 2px;
    animation: shimmerLine 2s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes shimmerLine {
    0% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.5); opacity: 0.5; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #5c4033 0%, #6b4423 50%, #5c4033 100%);
    background-size: 200% 200%;
    color: var(--text-white);
    border-color: #6b4423;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(92, 64, 51, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6b4423 0%, #8b6544 50%, #6b4423 100%);
    background-size: 200% 200%;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.5);
    color: var(--text-white);
    border-color: #8b6544;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: #25D366;
    color: #ffffff;
    border: 2px solid #25D366;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-outline-white:hover {
    background: #128C7E;
    color: #ffffff;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #4a3728 0%, #5c4033 50%, #6b4423 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.4);
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(135deg, #3d2b1f 0%, #4a3728 50%, #5c4033 100%);
    box-shadow: 0 6px 30px rgba(61, 43, 31, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

.logo i {
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo .logo-text .logo-main {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.logo .logo-text .logo-branch {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo strong {
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.625rem 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition-fast);
    background: transparent;
    border: 1px solid transparent;
}

.nav-dropdown .dropdown-toggle:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-dropdown .dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}


.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
    transform: rotate(45deg);
}

/* Click to open - controlled by JavaScript */
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu li {
    display: block;
}

.nav-dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    border-radius: 10px;
    background: transparent;
    margin: 2px 0;
}

.nav-dropdown .dropdown-menu li a:hover,
.nav-dropdown .dropdown-menu li a.active {
    background: linear-gradient(135deg, rgba(160, 120, 85, 0.12), rgba(160, 120, 85, 0.05));
    color: var(--primary-dark);
}

.nav-dropdown .dropdown-menu li a i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(160, 120, 85, 0.15), rgba(160, 120, 85, 0.08));
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.nav-dropdown .dropdown-menu li a:hover i {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: scale(1.05);
}

/* Nav Booking Button - Prominent CTA */
.nav-booking-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #ffffff !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
}

.nav-booking-btn:hover {
    background: linear-gradient(135deg, #20c05c, #0f7a6b) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

.nav-booking-btn i {
    font-size: 0.9rem;
}

.navbar.scrolled .nav-booking-btn {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Ensure nav-booking-btn is always green */
.navbar .nav-booking-btn,
.nav-menu .nav-booking-btn,
body:not(.dark-mode) .navbar .nav-booking-btn,
body:not(.dark-mode) .nav-menu .nav-booking-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #ffffff !important;
}

body:not(.dark-mode) .navbar .nav-booking-btn:hover,
body:not(.dark-mode) .nav-menu .nav-booking-btn:hover {
    background: linear-gradient(135deg, #20c05c, #0f7a6b) !important;
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4a3728 0%, #5c4033 25%, #6b4423 50%, #5c4033 75%, #4a3728 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    padding-top: 80px;
    overflow: hidden;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 124, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(160, 120, 85, 0.2) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
    animation: heroShine 8s linear infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    color: var(--text-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content h1 .highlight {
    color: #fff5eb;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-feature i {
    font-size: 1.25rem;
    color: #fff5eb;
}

/* ========================================
   Quick Info Bar
   ======================================== */
.quick-info {
    background: linear-gradient(135deg, #2d1f15 0%, #3d2b1f 50%, #4a3728 100%);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.quick-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 101, 68, 0.15), transparent);
    animation: quickInfoShine 4s ease-in-out infinite;
}

@keyframes quickInfoShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(139, 101, 68, 0.25);
    transform: translateY(-3px);
}

.info-item i {
    font-size: 1.5rem;
    color: #c9a87c;
    text-shadow: 0 0 10px rgba(139, 101, 68, 0.5);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.info-item strong {
    font-weight: 600;
}

/* ========================================
   About Preview Section
   ======================================== */
.about-preview {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-xl);
    padding: 4rem;
    text-align: center;
    color: var(--text-white);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.image-placeholder i {
    font-size: 5rem;
    opacity: 0.9;
}

.image-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

.about-content .section-tag {
    margin-bottom: 0.75rem;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.about-features {
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.about-features i {
    color: var(--success-color);
    font-size: 1.125rem;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

/* Service Image Style */
.service-img {
    width: 100%;
    height: 180px;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

/* Service Icon Style (fallback) */
.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #a07855 0%, #8b6544 50%, #6d4c35 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(107, 76, 53, 0.3);
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #c9a87c, #8b6544, #5c4033);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 76, 53, 0.4);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Service Icon Color Variations */
.service-icon.icon-teal {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.35);
}

.service-icon.icon-gold {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.35);
}

.service-icon.icon-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.service-icon.icon-pink {
    background: linear-gradient(135deg, #db2777 0%, #ec4899 50%, #f472b6 100%);
    box-shadow: 0 10px 30px rgba(219, 39, 119, 0.35);
}

.service-icon.icon-red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.35);
}

.service-icon.icon-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.service-icon.icon-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.35);
}

.service-icon.icon-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.35);
}

.service-icon.icon-amber {
    background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.35);
}

.service-icon.icon-indigo {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #818cf8 100%);
    box-shadow: 0 10px 30px rgba(67, 56, 202, 0.35);
}

.service-icon.icon-cyan {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.35);
}

.service-icon.icon-rose {
    background: linear-gradient(135deg, #e11d48 0%, #f43f5e 50%, #fb7185 100%);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.35);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.service-link:hover {
    gap: 0.75rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    background: linear-gradient(135deg, var(--bg-dark), #1e3a5f);
    color: var(--text-white);
}

.why-us .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.why-us .section-header h2 {
    color: var(--text-white);
}

.why-us .highlight {
    color: var(--accent-color);
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* ========================================
   Locations Section
   ======================================== */
.locations {
    background: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.location-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.location-details i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.location-details a {
    color: var(--text-medium);
}

.location-details a:hover {
    color: var(--primary-color);
}

.location-hours h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.location-hours h4 i {
    color: var(--primary-color);
}

.location-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 0.9375rem;
}

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

.location-card .btn {
    margin-top: 1.5rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #3d2b1f 0%, #4a3728 30%, #5c4033 50%, #6b4423 70%, #5c4033 100%);
    background-size: 300% 300%;
    animation: ctaGradient 10s ease infinite;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 40%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: ctaShine 5s linear infinite;
}

@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Staff Contact Section
   ======================================== */
.staff-contact {
    background: var(--bg-white);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.staff-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

.staff-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-avatar i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.staff-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.staff-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.staff-card .btn {
    margin: 0.25rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: var(--text-white);
}

/* ========================================
   Page Header (for inner pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--text-white);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Service Detail Page
   ======================================== */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-main h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-main p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.service-main ul {
    margin: 1.5rem 0;
}

.service-main ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.service-main ul li i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-medium);
}

.service-list a:hover {
    color: var(--primary-color);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-family);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-card h3 i {
    color: var(--primary-color);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-medium);
    padding: 0.25rem 0;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.map-container {
    margin-top: 3rem;
}

.map-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   About Page
   ======================================== */
.about-section {
    padding: 4rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-intro-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.mission-card,
.vision-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.mission-card h3,
.vision-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-card h3 i,
.vision-card h3 i {
    color: var(--primary-color);
}

.mission-card p,
.vision-card p {
    color: var(--text-medium);
}

.values-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-booking-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem !important;
        border-radius: 8px !important;
        margin: 0.5rem 0;
    }

    /* Mobile Dropdown */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        border-radius: 8px;
        margin: 0.5rem 0;
        padding: 0;
    }

    .nav-dropdown .dropdown-toggle {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .about-grid,
    .locations-grid,
    .contact-grid,
    .about-intro,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .staff-grid,
    .why-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Language Switcher - Button Toggle Style
   ======================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4px;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}

.lang-switcher::before {
    content: '\f0ac';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: white;
    position: absolute;
    left: 10px;
    opacity: 0.8;
}

.lang-btn {
    padding: 0.45rem 0.9rem;
    padding-left: 0.7rem;
    border: none;
    background: transparent;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: white;
}

.lang-btn.active {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.lang-btn:first-child {
    margin-left: 18px;
}

.navbar.scrolled .lang-switcher {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lang-switcher {
        margin-top: 0.5rem;
    }

    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   Cart Link & Badge
   ======================================== */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background: var(--danger-color);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ========================================
   Shop Section
   ======================================== */
.shop-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow-x: auto;
}

.filter-label {
    font-weight: 500;
    color: var(--text-medium);
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(160, 120, 85, 0.25), 0 12px 24px -8px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card .product-image {
    position: relative;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card:hover .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(160, 120, 85, 0.1), transparent);
    pointer-events: none;
}

.product-card .product-image i {
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.out-of-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--danger-color);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.product-actions .btn {
    min-width: 140px;
    justify-content: center;
}

/* ========================================
   Cart Section
   ======================================== */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.empty-cart h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

.cart-items-wrapper {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 120px 1fr 50px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 120px 1fr 50px;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-light);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.cart-item-total {
    font-weight: 600;
    color: var(--text-dark);
}

.remove-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.remove-btn:hover {
    color: var(--danger-color);
}

.cart-actions {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-medium);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 2px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-note {
    background: rgba(37, 99, 235, 0.1);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--primary-color);
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.promo-code {
    margin: 1.5rem 0;
}

.promo-code label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.promo-input {
    display: flex;
    gap: 0.5rem;
}

.promo-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
}

.payment-icons {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.payment-icons span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.payment-icons .icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-icons .icons i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.security-badge {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.875rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ========================================
   Checkout Section
   ======================================== */
.checkout-progress {
    background: var(--bg-light);
    padding: 2rem 0;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-step.active .step-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.progress-step.completed .step-icon {
    background: var(--success-color);
    border-color: var(--success-color);
    color: var(--text-white);
}

.progress-step span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--text-dark);
    font-weight: 500;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: var(--border-color);
    margin: 0 -10px;
    margin-bottom: 1.5rem;
}

.progress-line.completed {
    background: var(--success-color);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.checkout-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.checkout-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-card h3 i {
    color: var(--primary-color);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.payment-option input:checked + .payment-card {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.payment-icon.fpx {
    background: #1a4b8c;
    color: white;
}

.payment-icon.card {
    background: linear-gradient(135deg, #1a1f71, #c99700);
    color: white;
}

.payment-icon.tng {
    background: #015ffe;
    color: white;
}

.payment-icon.cod {
    background: var(--success-color);
    color: white;
}

.payment-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.payment-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.payment-check {
    margin-left: auto;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition-fast);
}

.payment-option input:checked + .payment-card .payment-check {
    opacity: 1;
}

.card-details,
.fpx-banks {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.fpx-banks label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.fpx-banks select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
}

/* Pickup Option */
.pickup-option {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 0.25rem;
}

.pickup-branches {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.pickup-branches label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pickup-branches select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.order-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item .item-qty {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item .item-details {
    flex: 1;
}

.order-item .item-details h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.order-item .item-details p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.order-item .item-total {
    font-weight: 600;
    color: var(--text-dark);
}

.order-totals {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.total-row.discount {
    color: var(--success-color);
}

.total-row.grand-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 2px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.secure-checkout {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.875rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-support {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.checkout-support h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.checkout-support p {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ========================================
   Bundles Section
   ======================================== */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bundle-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.bundle-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.bundle-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bundle-card.featured .bundle-badge {
    background: var(--warning-color);
}

.bundle-image {
    width: 100px;
    height: 100px;
    margin: 1rem auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-image i {
    font-size: 2.5rem;
    color: white;
}

.bundle-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bundle-card p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.bundle-price {
    margin-bottom: 1.5rem;
}

.bundle-price .original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.bundle-price .discounted {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   Shop Benefits
   ======================================== */
.shop-benefits {
    background: var(--bg-light);
}

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

.benefit-card {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* ========================================
   Contact Page Enhancements
   ======================================== */
.contact-hours ul {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.contact-hours ul li {
    padding: 0.25rem 0;
}

.contact-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dsa-card {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.05), rgba(74, 55, 40, 0.05));
}

.dsa-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.dsa-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
}

.social-card {
    text-align: center;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-size: 0.875rem;
    font-weight: 500;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.tiktok {
    background: #010101;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.maps-section {
    margin-top: 4rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--primary-color);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.map-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-card h3 {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
}

.inquiry-section {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-xl);
    padding: 3rem;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.inquiry-content h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inquiry-content p {
    color: rgba(255, 255, 255, 0.9);
}

.inquiry-form {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    margin-bottom: 1rem;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--primary-color);
}

.booking-note i {
    margin-right: 0.5rem;
}

/* ========================================
   Recommended Products
   ======================================== */
.recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card-mini {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-mini:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.product-card-mini .product-image {
    height: 150px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-mini .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-mini .product-image i {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.product-card-mini .product-info {
    padding: 1rem;
    text-align: center;
}

.product-card-mini h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-card-mini .price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ========================================
   Cart Float Button
   ======================================== */
.cart-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--transition);
}

.cart-float:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    color: var(--text-white);
}

.cart-float-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 24px;
    height: 24px;
    background: var(--danger-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Notifications
   ======================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-success {
    border-left: 4px solid var(--success-color);
}

.notification-success i {
    color: var(--success-color);
}

.notification-error {
    border-left: 4px solid var(--danger-color);
}

.notification-error i {
    color: var(--danger-color);
}

.notification-info {
    border-left: 4px solid var(--primary-color);
}

.notification-info i {
    color: var(--primary-color);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* ========================================
   Animations
   ======================================== */
.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Form Error States */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--danger-color);
}

.error-message {
    display: block;
    color: var(--danger-color);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

/* ========================================
   Responsive Updates
   ======================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cart-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary {
        position: static;
    }

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

    .bundle-card.featured {
        transform: none;
    }

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

    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-header-row {
        display: none;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-total,
    .remove-btn {
        grid-column: 2;
    }

    .bundles-grid,
    .benefits-grid,
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        flex-wrap: wrap;
    }

    .progress-line {
        display: none;
    }

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

    .shop-filter {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
}

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

    .cart-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(160, 120, 85, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(160, 120, 85, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(160, 120, 85, 0.25);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.pricing-header i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-header i {
    transform: scale(1.2);
}

.pricing-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.pricing-body {
    padding: 1.5rem;
}

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

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-medium);
}

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

.pricing-list .price {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-list .price {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.pricing-note {
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.pricing-note p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: linear-gradient(135deg, #4a3728 0%, #5c4033 50%, #6b4423 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 124, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 101, 68, 0.1) 0%, transparent 50%);
}

.faq-section .section-header {
    position: relative;
    z-index: 1;
}

.faq-section .section-header h2 {
    color: #ffffff !important;
}

.faq-section .section-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(135deg, #6b4423 0%, #8b6544 100%);
    border: 2px solid #c9a87c;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: #c9a87c;
}

.faq-question i {
    color: #c9a87c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.testimonial-stars {
    margin-bottom: 1rem;
    color: #d4a574;
}

.testimonial-stars i {
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ========================================
   Health Tips Section
   ======================================== */
.health-tips-section {
    background: var(--bg-white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tip-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

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

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tip-icon i {
    font-size: 1.5rem;
    color: white;
}

.tip-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
}

.tip-card ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.75rem;
}

/* ========================================
   Payment Section
   ======================================== */
.payment-section {
    background: var(--bg-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.payment-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.payment-card .payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.payment-card .payment-icon i {
    font-size: 1.75rem;
    color: white;
}

.payment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-card > p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.payment-card ul {
    list-style: none;
}

.payment-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.payment-card ul li i {
    color: var(--success-color);
}

.payment-card .note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--primary-color);
}

/* ========================================
   Preparation Section
   ======================================== */
.preparation-section {
    background: var(--bg-white);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.preparation-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.preparation-card.before .preparation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.preparation-card.after .preparation-header {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.preparation-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preparation-header i {
    font-size: 2rem;
}

.preparation-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.preparation-body {
    padding: 2rem;
}

.preparation-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.preparation-body h4:first-child {
    margin-top: 0;
}

.preparation-body ul {
    list-style: none;
}

.preparation-body ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    padding-left: 1.5rem;
    position: relative;
}

.preparation-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.75rem;
}

.emergency-note {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.emergency-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* ========================================
   Centered Contact Box
   ======================================== */
.contact-box-centered {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-box-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    width: 500px;
    max-width: 100%;
    text-align: center;
}

.contact-box-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.contact-box-card h3 i {
    color: var(--primary-color);
}

.contact-box-info {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-box-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.contact-box-info p:last-child {
    border-bottom: none;
}

.contact-box-info p i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.15rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-box-info a {
    color: var(--text-medium);
}

.contact-box-info a:hover {
    color: var(--primary-color);
}

.contact-box-hours {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-box-hours h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-box-hours h4 i {
    color: var(--primary-color);
}

.contact-box-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-box-hours ul li:last-child {
    border-bottom: none;
}

.contact-box-hours ul li span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-box-actions {
    display: flex;
    justify-content: center;
}

.contact-box-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ========================================
   Responsive for New Sections
   ======================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .pricing-grid,
    .testimonials-grid,
    .payment-grid,
    .preparation-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .emergency-note {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        font-size: 0.9375rem;
        padding: 1rem;
    }
}

/* ========================================
   Scroll Animations
   ======================================== */

/* Base animation states - hidden before scroll */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fade up animation */
.fade-up {
    transform: translateY(40px);
}

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

/* Fade down animation */
.fade-down {
    transform: translateY(-40px);
}

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

/* Fade left animation */
.fade-left {
    transform: translateX(-40px);
}

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

/* Fade right animation */
.fade-right {
    transform: translateX(40px);
}

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

/* Scale up animation */
.scale-up {
    transform: scale(0.9);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Zoom in animation */
.zoom-in {
    transform: scale(0.8);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Flip animation */
.flip-up {
    transform: perspective(1000px) rotateX(10deg) translateY(20px);
}

.flip-up.visible {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Stagger animations for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Animation speed modifiers */
.animate-fast {
    transition-duration: 0.4s;
}

.animate-slow {
    transition-duration: 0.8s;
}

.animate-slower {
    transition-duration: 1s;
}

/* Bounce effect for special elements */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bounce-in.visible {
    animation: bounceIn 0.6s ease-out forwards;
}

/* Float animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Pulse animation for CTA buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(160, 120, 85, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(160, 120, 85, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Shimmer effect for cards */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Counter animation support */
.counter-animate {
    display: inline-block;
}

/* Typewriter effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 2s steps(30) forwards;
}

/* Slide in from sides for mobile menu */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .fade-up,
    .fade-down,
    .fade-left,
    .fade-right,
    .scale-up,
    .zoom-in,
    .flip-up {
        transition: none;
        transform: none;
        opacity: 1;
    }

    .float-animation,
    .pulse-glow,
    .shimmer-effect {
        animation: none;
    }
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 99999 !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn:active {
    transform: scale(0.95);
}

/* Pulse ring animation */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip label */
.whatsapp-float-label {
    background: white;
    color: #128C7E;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
}

/* Notification badge */
.whatsapp-float-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    border: 2px solid white;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* JIMAT Badge for Discounted Products */
.jimat-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.4);
    z-index: 5;
    animation: jimat-pulse 2s infinite;
}

@keyframes jimat-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(46, 204, 113, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(46, 204, 113, 0.6);
    }
}

/* Cart Add Animation */
@keyframes addToCartBounce {
    0% { transform: scale(1); }
    25% { transform: scale(0.95); }
    50% { transform: scale(1.1); }
    75% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

@keyframes flyToCart {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.3);
    }
}

.btn-add-cart-animate {
    animation: addToCartBounce 0.5s ease-out;
}

.cart-fly-icon {
    position: fixed;
    z-index: 9999;
    font-size: 1.5rem;
    color: var(--primary-color);
    pointer-events: none;
    animation: flyToCart 0.8s ease-in-out forwards;
}

/* Product Card Price Styling Improved */
.product-price .price-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.product-price .original-price {
    color: #999;
    font-size: 0.85em;
    text-decoration: line-through;
}

.product-price .discounted-price {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1em;
}

/* Featured Products Section */
.featured-products-section {
    background: linear-gradient(135deg, #f5f0eb 0%, #ede5dc 100%);
    padding: 3rem 0;
}

.featured-products-section .section-header {
    margin-bottom: 2rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-badge i {
    animation: pulse 2s infinite;
}

/* ========================================
   NEW FEATURES - Beautification
   ======================================== */

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

.bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, rgba(160, 120, 85, 0.25), rgba(176, 112, 112, 0.2));
    border-radius: 50%;
    animation: floatUp linear infinite;
    border: 1px solid rgba(160, 120, 85, 0.15);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Confetti Styles */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    z-index: 9999;
    pointer-events: none;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Progress Bar for Free Shipping */
.shipping-progress-bar {
    background: linear-gradient(135deg, #f5f0eb, #ede5dc);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shipping-progress-bar .progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.shipping-progress-bar .progress-text strong {
    color: var(--primary-color);
}

.shipping-progress-bar .progress-track {
    height: 8px;
    background: var(--bg-gray);
    border-radius: 10px;
    overflow: hidden;
}

.shipping-progress-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.shipping-progress-bar.complete .progress-fill {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.shipping-progress-bar .free-shipping-msg {
    text-align: center;
    color: #27ae60;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9998;
    background: white;
    border: 2px solid #a07855;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(160, 120, 85, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.dark-mode-toggle i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover i {
    transform: rotate(20deg);
}

/* Light Mode Reset (ensure proper colors when dark mode is off) */
body:not(.dark-mode) {
    background-color: #ffffff !important;
    color: #333333 !important;
}

body:not(.dark-mode) .about-section,
body:not(.dark-mode) .services-section,
body:not(.dark-mode) .contact-section,
body:not(.dark-mode) .booking-section,
body:not(.dark-mode) .gallery-section,
body:not(.dark-mode) .tips-section,
body:not(.dark-mode) .values-section,
body:not(.dark-mode) .doctor-section,
body:not(.dark-mode) .testimonials-section,
body:not(.dark-mode) .about-preview {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%) !important;
    color: #333333 !important;
}

body:not(.dark-mode) .why-us {
    background: linear-gradient(135deg, #3d2b1f 0%, #4a3728 50%, #5c4033 100%) !important;
    color: #ffffff !important;
}

body:not(.dark-mode) .why-us h2,
body:not(.dark-mode) .why-us h3,
body:not(.dark-mode) .why-us p {
    color: #ffffff !important;
}

body:not(.dark-mode) .why-us .why-number {
    color: #c9a87c !important;
}

body:not(.dark-mode) .faq-section {
    background: linear-gradient(135deg, #4a3728 0%, #5c4033 50%, #6b4423 100%) !important;
}

body:not(.dark-mode) .faq-section h2,
body:not(.dark-mode) .faq-section p,
body:not(.dark-mode) .faq-question {
    color: #ffffff !important;
}

body:not(.dark-mode) .faq-answer p {
    color: rgba(255, 255, 255, 0.85) !important;
}

body:not(.dark-mode) .navbar,
body:not(.dark-mode) header,
body:not(.dark-mode) nav {
    background: linear-gradient(135deg, #4a3728 0%, #5c4033 50%, #6b4423 100%) !important;
}

body:not(.dark-mode) footer,
body:not(.dark-mode) .footer {
    background: #2c2c2c !important;
    color: #ffffff !important;
}

body:not(.dark-mode) .page-header,
body:not(.dark-mode) .about-header,
body:not(.dark-mode) .contact-header {
    background: linear-gradient(135deg, #a07855 0%, #c9a87c 100%) !important;
}

/* Light sections - dark text */
body:not(.dark-mode) .about-section h1, body:not(.dark-mode) .about-section h2, body:not(.dark-mode) .about-section h3,
body:not(.dark-mode) .services-section h1, body:not(.dark-mode) .services-section h2, body:not(.dark-mode) .services-section h3,
body:not(.dark-mode) .contact-section h1, body:not(.dark-mode) .contact-section h2, body:not(.dark-mode) .contact-section h3,
body:not(.dark-mode) .booking-section h1, body:not(.dark-mode) .booking-section h2, body:not(.dark-mode) .booking-section h3,
body:not(.dark-mode) .gallery-section h1, body:not(.dark-mode) .gallery-section h2, body:not(.dark-mode) .gallery-section h3,
body:not(.dark-mode) .tips-section h1, body:not(.dark-mode) .tips-section h2, body:not(.dark-mode) .tips-section h3,
body:not(.dark-mode) .values-section h1, body:not(.dark-mode) .values-section h2, body:not(.dark-mode) .values-section h3,
body:not(.dark-mode) .doctor-section h1, body:not(.dark-mode) .doctor-section h2, body:not(.dark-mode) .doctor-section h3,
body:not(.dark-mode) .testimonials-section h1, body:not(.dark-mode) .testimonials-section h2, body:not(.dark-mode) .testimonials-section h3,
body:not(.dark-mode) .about-preview h1, body:not(.dark-mode) .about-preview h2, body:not(.dark-mode) .about-preview h3 {
    color: #333333 !important;
}

body:not(.dark-mode) .about-section p, body:not(.dark-mode) .services-section p,
body:not(.dark-mode) .contact-section p, body:not(.dark-mode) .booking-section p,
body:not(.dark-mode) .gallery-section p, body:not(.dark-mode) .tips-section p,
body:not(.dark-mode) .values-section p, body:not(.dark-mode) .doctor-section p,
body:not(.dark-mode) .testimonials-section p, body:not(.dark-mode) .about-preview p {
    color: #666666 !important;
}

/* Dark sections - white text */
body:not(.dark-mode) .hero h1, body:not(.dark-mode) .hero h2, body:not(.dark-mode) .hero h3,
body:not(.dark-mode) .hero p, body:not(.dark-mode) .hero span {
    color: #ffffff !important;
}

body:not(.dark-mode) .cta-section h1, body:not(.dark-mode) .cta-section h2, body:not(.dark-mode) .cta-section h3,
body:not(.dark-mode) .cta-section p {
    color: #ffffff !important;
}

body:not(.dark-mode) .quick-info h1, body:not(.dark-mode) .quick-info h2, body:not(.dark-mode) .quick-info h3,
body:not(.dark-mode) .quick-info p, body:not(.dark-mode) .quick-info span {
    color: #ffffff !important;
}

body:not(.dark-mode) .page-header h1, body:not(.dark-mode) .page-header h2,
body:not(.dark-mode) .page-header p, body:not(.dark-mode) .page-header span {
    color: #ffffff !important;
}

body:not(.dark-mode) .navbar a, body:not(.dark-mode) .nav-menu a {
    color: #ffffff !important;
}

body:not(.dark-mode) footer h1, body:not(.dark-mode) footer h2, body:not(.dark-mode) footer h3,
body:not(.dark-mode) footer h4, body:not(.dark-mode) footer p, body:not(.dark-mode) footer a,
body:not(.dark-mode) footer span, body:not(.dark-mode) footer li {
    color: #ffffff !important;
}

body:not(.dark-mode) .card,
body:not(.dark-mode) .product-card,
body:not(.dark-mode) .service-card,
body:not(.dark-mode) .value-card,
body:not(.dark-mode) .testimonial-card,
body:not(.dark-mode) .doctor-card,
body:not(.dark-mode) .pricing-card,
body:not(.dark-mode) .tip-card,
body:not(.dark-mode) .gallery-item {
    background: #ffffff !important;
    color: #333333 !important;
}

body:not(.dark-mode) .card h3, body:not(.dark-mode) .card h4,
body:not(.dark-mode) .product-card h3, body:not(.dark-mode) .product-card h4,
body:not(.dark-mode) .service-card h3, body:not(.dark-mode) .service-card h4,
body:not(.dark-mode) .pricing-card h3, body:not(.dark-mode) .pricing-card h4,
body:not(.dark-mode) .tip-card h3, body:not(.dark-mode) .tip-card h4 {
    color: #333333 !important;
}

body:not(.dark-mode) .card p, body:not(.dark-mode) .product-card p,
body:not(.dark-mode) .service-card p, body:not(.dark-mode) .pricing-card p,
body:not(.dark-mode) .tip-card p {
    color: #666666 !important;
}

body:not(.dark-mode) .pricing-section {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%) !important;
}

body:not(.dark-mode) .pricing-section h2, body:not(.dark-mode) .pricing-section h3 {
    color: #333333 !important;
}

body:not(.dark-mode) .pricing-section p {
    color: #666666 !important;
}

body:not(.dark-mode) .premium-contact-bg {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%) !important;
}

body:not(.dark-mode) input,
body:not(.dark-mode) textarea,
body:not(.dark-mode) select,
body:not(.dark-mode) .form-control {
    background: #ffffff !important;
    border-color: #ddd !important;
    color: #333333 !important;
}

/* Dark Mode Styles */
body.dark-mode {
    --bg-white: #1a1a2e;
    --bg-light: #16213e;
    --bg-gray: #0f3460;
    --bg-dark: #e8e8e8;
    --text-dark: #eaeaea;
    --text-medium: #b8b8b8;
    --text-light: #888888;
    --border-color: #2a2a4a;
    background-color: #1a1a2e !important;
    color: #eaeaea !important;
}

body.dark-mode .navbar,
body.dark-mode header,
body.dark-mode nav {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

body.dark-mode .product-card,
body.dark-mode .card,
body.dark-mode .service-card,
body.dark-mode .tip-card,
body.dark-mode .gallery-item,
body.dark-mode .team-member,
body.dark-mode .testimonial-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
    color: #eaeaea !important;
}

body.dark-mode .promo-banner,
body.dark-mode .featured-products-section,
body.dark-mode section,
body.dark-mode .hero,
body.dark-mode .about-section,
body.dark-mode .services-section,
body.dark-mode .contact-section,
body.dark-mode .booking-section,
body.dark-mode .gallery-section,
body.dark-mode .tips-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%) !important;
    color: #eaeaea !important;
}

body.dark-mode footer,
body.dark-mode .footer {
    background: #0f0f1a !important;
    color: #b8b8b8 !important;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6,
body.dark-mode .section-title,
body.dark-mode .card-title {
    color: #eaeaea !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode li,
body.dark-mode label {
    color: #b8b8b8 !important;
}

body.dark-mode a {
    color: #c9a87c !important;
}

body.dark-mode .btn-primary,
body.dark-mode .btn {
    background: #a07855 !important;
    color: #fff !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select,
body.dark-mode .form-control {
    background: #16213e !important;
    border-color: #2a2a4a !important;
    color: #eaeaea !important;
}

body.dark-mode .modal-content,
body.dark-mode .dropdown-menu {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

body.dark-mode table,
body.dark-mode th,
body.dark-mode td {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
    color: #eaeaea !important;
}

body.dark-mode .breadcrumb,
body.dark-mode .page-header {
    background: #16213e !important;
}

/* Dark Mode - About & Contact Pages */
body.dark-mode .page-header,
body.dark-mode .about-header,
body.dark-mode .contact-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

body.dark-mode .header-bg-overlay {
    background: rgba(26, 26, 46, 0.8) !important;
}

body.dark-mode .about-section,
body.dark-mode .values-section,
body.dark-mode .why-us,
body.dark-mode .doctor-section,
body.dark-mode .team-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%) !important;
}

body.dark-mode .about-intro-content,
body.dark-mode .header-content,
body.dark-mode .section-header {
    color: #eaeaea !important;
}

body.dark-mode .section-tag,
body.dark-mode .header-badge {
    background: rgba(160, 120, 85, 0.3) !important;
    color: #c9a87c !important;
}

body.dark-mode .value-card,
body.dark-mode .feature-card,
body.dark-mode .doctor-card,
body.dark-mode .info-card,
body.dark-mode .contact-card {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
    color: #eaeaea !important;
}

body.dark-mode .premium-contact-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

body.dark-mode .floating-icons svg,
body.dark-mode .floating-icon {
    opacity: 0.3 !important;
}

body.dark-mode .contact-info,
body.dark-mode .contact-form,
body.dark-mode .map-container {
    background: #1a1a2e !important;
    border-color: #2a2a4a !important;
}

body.dark-mode .contact-item,
body.dark-mode .info-item {
    background: #16213e !important;
    color: #eaeaea !important;
}

body.dark-mode .contact-item i,
body.dark-mode .info-item i {
    color: #c9a87c !important;
}

/* Product Zoom Effect */
.product-card .product-image {
    overflow: hidden;
    cursor: zoom-in;
}

.product-card .product-image img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Product Image Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.zoom-modal.active {
    display: flex;
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Tooth Mascot */
.tooth-mascot {
    position: fixed;
    bottom: 120px;
    left: 20px;
    z-index: 9997;
    cursor: pointer;
    animation: mascotBounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.tooth-mascot:hover {
    animation-play-state: paused;
    transform: scale(1.2) rotate(-10deg);
}

.tooth-mascot svg {
    width: 70px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(160, 120, 85, 0.3));
}

.tooth-mascot .speech-bubble {
    position: absolute;
    top: 15px;
    left: 90px;
    background: white;
    padding: 10px 18px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    opacity: 1;
    min-width: 200px;
}

.tooth-mascot .speech-bubble::after {
    display: none;
}

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

/* Cursor Sparkle Trail */
.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700 0%, #ff6b6b 50%, #a07855 100%);
    box-shadow: 0 0 10px #ffd700, 0 0 20px #ff6b6b;
    animation: sparkle-fade 1s ease-out forwards;
}

@keyframes sparkle-fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 180px;
    right: 30px;
    z-index: 9996;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a07855, #8b6544);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(160, 120, 85, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(160, 120, 85, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .whatsapp-float-label {
        display: none;
    }
}

/* Hide on very small screens when keyboard is open */
@media (max-height: 500px) {
    .whatsapp-float {
        display: none;
    }
}

/* ========================================
   Enhanced Gallery - Before/After & Video
   ======================================== */

/* Gallery Section Styling */
.gallery-section {
    margin-top: 2rem;
    animation: fadeInUp 0.5s ease forwards;
}

.gallery-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gallery-section-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.gallery-section-title h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 600;
}

/* Before/After Slider */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f5f0eb;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.before-after-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-after-slider .before-image {
    z-index: 1;
}

.before-after-slider .after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.before-after-slider .slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
}

.before-after-slider .slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.before-after-slider .slider-handle::after {
    content: '\f053  \f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: var(--primary-color);
}

.before-after-labels {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 4;
    pointer-events: none;
}

.before-after-labels span {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.before-after-labels .label-before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.before-after-labels .label-after {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.before-after-info {
    padding: 1.25rem;
    background: white;
    text-align: center;
}

.before-after-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.before-after-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Custom Video Cover - Clean & Professional */
.video-cover {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5c4033 0%, #8b6544 50%, #a07855 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.video-cover-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.75rem;
}

.video-cover-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.video-cover-logo {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.video-cover-logo i {
    margin-right: 4px;
}

/* Play Button - Center */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.video-play-btn i {
    margin-left: 3px;
}

.video-cover:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* TikTok Special Style */
.video-cover-tiktok .video-cover-bg {
    background: linear-gradient(135deg, #010101 0%, #161823 100%);
}

.video-play-tiktok {
    background: linear-gradient(135deg, #00f2ea, #ff0050) !important;
    color: white !important;
}

.video-play-tiktok i {
    margin-left: 0;
}

/* Duration Badge */
.video-cover .video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

/* Legacy thumbnail support */
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail .play-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail:hover .play-btn {
    transform: scale(1.1);
    background: white;
}

.video-thumbnail .play-btn i {
    margin-left: 4px;
}

.video-thumbnail .video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-thumbnail .placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.video-info {
    padding: 1.25rem;
    background: white;
}

.video-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.video-info p {
    color: var(--text-medium);
    font-size: 0.85rem;
    margin: 0;
}

.video-info .video-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.video-info .video-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Gallery Section Titles */
.gallery-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.gallery-section-title:first-of-type {
    margin-top: 0;
}

.gallery-section-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.gallery-section-title h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

.video-modal video,
.video-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: #000;
}

@media (max-width: 768px) {
    .video-grid,
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .before-after-container {
        max-width: 100%;
    }

    .video-modal {
        padding: 1rem;
    }
}

/* Force green color for Tempah Temujanji button */
.nav-booking-btn,
a.nav-booking-btn,
.navbar a.nav-booking-btn,
.nav-menu a.nav-booking-btn,
.nav-menu li a.nav-booking-btn,
body .navbar .nav-booking-btn,
body .nav-menu .nav-booking-btn,
body:not(.dark-mode) .nav-booking-btn,
body:not(.dark-mode) a.nav-booking-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #ffffff !important;
    border: none !important;
}

.nav-booking-btn:hover,
a.nav-booking-btn:hover,
body .navbar .nav-booking-btn:hover,
body .nav-menu .nav-booking-btn:hover {
    background: linear-gradient(135deg, #20c05c, #0f7a6b) !important;
    color: #ffffff !important;
}
