/* =======================================================
   KONG'S TEA — ALL PAGES MODERN UI OVERRIDE
   Transforms vintage inline CSS to modern design
   Load AFTER inline <style> to override vintage styles
   ======================================================= */

/* ======= GLOBAL OVERRIDES ======= */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background: #FFFFFF !important;
    color: #1E293B !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
    color: #0F172A;
}

:root {
    --primary-color: #F97316 !important;
    --secondary-color: #EA580C !important;
    --dark-color: #0F172A !important;
    --light-color: #FFFFFF !important;
    --gray-color: #F1F5F9 !important;
    --text-color: #1E293B !important;
    --bg-color: #FFFFFF !important;
    --border-color: #E2E8F0 !important;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    --transition: all 0.3s ease !important;
    --border-radius: 16px !important;
    --font-family: 'Inter', sans-serif !important;
    --card-bg: rgba(255, 255, 255, 0.95) !important;
    --card-border: rgba(226, 232, 240, 1) !important;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06) !important;
    --hover-shadow: 0 16px 48px rgba(249, 115, 22, 0.15) !important;
}

/* ======= SHARED HERO SECTION — Premium Modern ======= */
.about-hero,
.contact-hero {
    position: relative !important;
    background: #FFFFFF !important;
    color: #1E293B !important;
    padding: 140px 0 100px !important;
    text-align: center !important;
    border-radius: 0 !important;
    margin-bottom: 60px !important;
    overflow: hidden !important;
    box-shadow: inset 0 -1px 0 #E2E8F0 !important;
}

/* Decorative gradient orbs */
.about-hero::before,
.contact-hero::before {
    content: "" !important;
    position: absolute !important;
    top: -120px !important;
    right: -80px !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.04) 40%, transparent 70%) !important;
    border-radius: 50% !important;
    filter: blur(40px) !important;
    z-index: 0 !important;
    opacity: 1 !important;
    animation: pulseOrb 8s ease-in-out infinite !important;
}

.about-hero::after,
.contact-hero::after {
    content: "" !important;
    position: absolute !important;
    bottom: -100px !important;
    left: -60px !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.03) 40%, transparent 70%) !important;
    border-radius: 50% !important;
    filter: blur(50px) !important;
    z-index: 0 !important;
    animation: pulseOrb 10s ease-in-out infinite 3s !important;
}

@keyframes pulseOrb {

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

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

/* Hero Title — Large, bold, modern */
.about-hero h1,
.contact-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    font-style: normal !important;
    margin-bottom: 12px !important;
    color: #0F172A !important;
    -webkit-text-fill-color: #0F172A !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
    letter-spacing: -0.03em !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
    line-height: 1.1 !important;
    position: relative !important;
    z-index: 2 !important;
    padding-bottom: 24px !important;
}

/* Orange accent underline */
.about-hero h1::after,
.contact-hero h1::after {
    content: "" !important;
    display: block !important;
    width: 80px !important;
    height: 5px !important;
    background: linear-gradient(90deg, #F97316, #FB923C) !important;
    border-radius: 5px !important;
    margin: 20px auto 0 !important;
    position: static !important;
    font-size: inherit !important;
    opacity: 1 !important;
    animation: none !important;
    top: unset !important;
    right: unset !important;
    left: unset !important;
}

/* Hide ::before pseudo */
.about-hero h1::before,
.contact-hero h1::before {
    display: none !important;
}

/* Hero Subtitle / description */
.about-hero p,
.contact-hero p {
    font-size: 1.15rem !important;
    max-width: 580px !important;
    margin: 0 auto 40px !important;
    color: #64748B !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    font-style: normal !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Hero content wrapper */
.about-hero-content,
.contact-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

/* Floating bubbles — glassmorphism style */
.tea-bubble,
.about-hero .bubble,
.contact-hero .bubble {
    background: rgba(249, 115, 22, 0.06) !important;
    border: 1px solid rgba(249, 115, 22, 0.08) !important;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.06) !important;
    filter: none !important;
    backdrop-filter: blur(4px) !important;
    opacity: 0.5 !important;
}

/* ======= MODERN BUTTONS ======= */
.btn-modern,
.btn-vintage {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1rem !important;
}

.btn-modern:hover,
.btn-vintage:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4) !important;
    background: linear-gradient(135deg, #FB923C, #F97316) !important;
    color: #FFFFFF !important;
}

.btn-modern::before,
.btn-modern::after,
.btn-vintage::before,
.btn-vintage::after {
    display: none !important;
}

/* ======= SECTION HEADINGS — Modern Typography ======= */
.heading_container h2 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    font-style: normal !important;
    color: #0F172A !important;
    -webkit-text-fill-color: #0F172A !important;
    background: none !important;
    text-shadow: none !important;
    letter-spacing: -0.02em !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    text-transform: none !important;
}

.heading_container h2 span {
    color: #F97316 !important;
    -webkit-text-fill-color: #F97316 !important;
    background: none !important;
    font-style: normal !important;
}

.heading_container p {
    font-family: 'Inter', sans-serif !important;
    color: #64748B !important;
    font-style: normal !important;
}

/* ======= ABOUT PAGE — Story Cards ======= */
.story-card {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
    transition: all 0.4s ease !important;
    background: #FFFFFF;
}

.story-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
}

.story-card-img {
    height: 260px;
    overflow: hidden;
}

.story-card-img img {
    filter: none !important;
    transition: transform 0.6s ease !important;
}

.story-card:hover .story-card-img img {
    transform: scale(1.06) !important;
}

.story-card-content {
    padding: 28px !important;
    background: #FFFFFF !important;
}

.story-card-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 12px !important;
}

.story-card-text {
    color: #64748B !important;
    line-height: 1.7 !important;
    font-size: 0.95rem;
}

.story-card-year {
    background: #F97316 !important;
    color: #FFFFFF !important;
    padding: 6px 16px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif !important;
}

/* ======= ABOUT PAGE — Process Section ======= */
.tea-process {
    padding: 100px 0 !important;
    background-color: #F8FAFC !important;
    overflow: hidden;
}

.tea-process .heading_container h2 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    -webkit-text-fill-color: #0F172A !important;
    background: none !important;
    text-shadow: none !important;
    font-family: 'Inter', sans-serif !important;
}

.tea-process .heading_container h2::after {
    background: #F97316 !important;
    height: 4px !important;
    border-radius: 4px !important;
}

.process-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25) !important;
}

.process-icon i {
    font-size: 32px !important;
    color: #FFFFFF !important;
}

.process-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
}

.process-text {
    color: #64748B !important;
    line-height: 1.7 !important;
    font-size: 0.95rem;
}

.process-connector {
    background: linear-gradient(90deg, #F97316, #06B6D4) !important;
    height: 3px !important;
    border-radius: 3px !important;
}

.process-step::after {
    background: linear-gradient(180deg, #F97316, #06B6D4) !important;
    width: 3px !important;
}

/* ======= ABOUT PAGE — Team Section ======= */
.team-section {
    padding: 100px 0 !important;
    background: #FFFFFF !important;
}

.team-member {
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.team-member:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
}

.team-img img {
    filter: none !important;
}

.team-name {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

/* ======= MENU PAGE ======= */
.food_section {
    background: #FFFFFF !important;
    padding: 100px 0 !important;
}

.food_section::before,
.food_section::after {
    display: none !important;
}

.food_section .heading_container {
    margin-bottom: 48px !important;
}

.food_section .heading_container h2 {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    font-weight: 800 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #0F172A !important;
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em !important;
}

.menu-subtitle {
    font-size: 1.1rem !important;
    font-style: normal !important;
    color: #F97316 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.menu-subtitle::before,
.menu-subtitle::after {
    background: #F97316 !important;
    width: 32px !important;
    height: 2px !important;
}

/* Search Bar */
.search-input {
    border-radius: 14px !important;
    border: 2px solid #E2E8F0 !important;
    background: #F8FAFC !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    padding: 16px 48px 16px 20px !important;
    transition: all 0.3s ease !important;
}

.search-input:focus {
    border-color: #F97316 !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1) !important;
    background: #FFFFFF !important;
}

/* Filters */
.filters_menu li {
    padding: 10px 24px !important;
    border-radius: 12px !important;
    background: #F1F5F9 !important;
    border: 1px solid #E2E8F0 !important;
    color: #475569 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    backdrop-filter: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.filters_menu li:hover,
.filters_menu li.active {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    color: #FFFFFF !important;
    border-color: #F97316 !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* Menu Product Cards */
.food_section .product-card-front,
.food_section .product-card-back {
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #E2E8F0 !important;
}

.food_section .product-card-front {
    background-color: #FFFFFF !important;
}

.food_section .product-card-front img {
    filter: none !important;
}

.food_section .product-card-back {
    background-color: #FFFFFF !important;
}

.food_section .product-card-back h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    color: #0F172A !important;
}

.food_section .product-card-back p {
    color: #64748B !important;
}

.food_section .product-overlay h3 {
    font-family: 'Inter', sans-serif !important;
}

.food_section .product-price {
    background: #F97316 !important;
    border-radius: 10px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Pagination */
.page-btn {
    border-radius: 12px !important;
    border: 1px solid #E2E8F0 !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
}

.page-btn:hover,
.page-btn.active {
    background: #F97316 !important;
    border-color: #F97316 !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* ======= CONTACT PAGE ======= */
.contact-hero p {
    font-family: 'Inter', sans-serif !important;
}

/* Branch Tabs */
.branch-tabs-container {
    background: #FFFFFF !important;
}

.branch-tab {
    font-family: 'Inter', sans-serif !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
}

.branch-tab.active,
.branch-tab:hover {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    color: #FFFFFF !important;
}

/* Contact Cards */
.contact-card,
.branch-card {
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    transition: all 0.4s ease !important;
}

.contact-card:hover,
.branch-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
}

.contact-card i,
.branch-card i {
    color: #F97316 !important;
}

/* Contact Form */
.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 2px solid #E2E8F0 !important;
    border-radius: 14px !important;
    font-family: 'Inter', sans-serif !important;
    background: #F8FAFC !important;
    padding: 14px 18px !important;
    transition: all 0.3s ease !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #F97316 !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1) !important;
    background: #FFFFFF !important;
}

.contact-form button[type="submit"],
.contact-form .btn-submit {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3) !important;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4) !important;
}

/* Opening Hours */
.opening-hours-dynamic {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #E2E8F0 !important;
}

.opening-hours-dynamic::before {
    background: linear-gradient(180deg, #F97316, #EA580C) !important;
    width: 4px !important;
    border-radius: 4px !important;
}

.opening-hours-title {
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
}

.hours-day {
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
}

.hours-time {
    color: #64748B !important;
}

/* ======= GALLERY PAGE — Premium Modern ======= */
.immersive-gallery {
    background: #FFFFFF !important;
}

/* Gallery Intro — White with gradient orbs */
.gallery-intro {
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: none !important;
    position: relative !important;
}

.gallery-intro::before {
    content: "" !important;
    position: absolute !important;
    top: -100px !important;
    right: -60px !important;
    width: 450px !important;
    height: 450px !important;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.03) 40%, transparent 70%) !important;
    border-radius: 50% !important;
    filter: blur(40px) !important;
    z-index: 0 !important;
    animation: pulseOrb 8s ease-in-out infinite !important;
}

.gallery-intro::after {
    content: "" !important;
    position: absolute !important;
    bottom: -80px !important;
    left: -40px !important;
    width: 350px !important;
    height: 350px !important;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%) !important;
    border-radius: 50% !important;
    filter: blur(50px) !important;
    z-index: 0 !important;
    animation: pulseOrb 10s ease-in-out infinite 3s !important;
}

.gallery-intro .char {
    font-family: 'Inter', sans-serif !important;
    color: #0F172A !important;
    text-shadow: none !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

.gallery-intro .subtitle-animation {
    font-family: 'Inter', sans-serif !important;
    font-style: normal !important;
    color: #64748B !important;
    text-shadow: none !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.gallery-intro .scroll-text {
    color: #94A3B8 !important;
}

.gallery-intro .mouse {
    border-color: rgba(15, 23, 42, 0.2) !important;
}

.gallery-intro .wheel {
    background: rgba(15, 23, 42, 0.3) !important;
}

.gallery-intro .bubble {
    background: rgba(249, 115, 22, 0.06) !important;
    border: 1px solid rgba(249, 115, 22, 0.05) !important;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.04) !important;
    backdrop-filter: blur(4px) !important;
}

/* Gallery Section Title — Modern */
.section-title h2 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    text-shadow: none !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

.section-title h2::before,
.section-title h2::after {
    display: none !important;
}

.section-title p {
    font-family: 'Inter', sans-serif !important;
    color: #64748B !important;
}

/* Gallery Categories */
.gallery-categories {
    padding: 24px 0 !important;
    background: #FFFFFF !important;
    border-top: none !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.category-tab {
    padding: 10px 24px !important;
    background: #F1F5F9 !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    color: #475569 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}

.category-tab::before,
.category-tab::after {
    display: none !important;
}

.category-tab.active,
.category-tab:hover {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    color: #FFFFFF !important;
    border-color: #F97316 !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25) !important;
    transform: translateY(-2px) scale(1) !important;
}

/* View Toggle */
.view-btn {
    border-radius: 12px !important;
    background: #F1F5F9 !important;
    border: 1px solid #E2E8F0 !important;
    color: #64748B !important;
    box-shadow: none !important;
}

.view-btn.active,
.view-btn:hover {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25) !important;
    transform: translateY(-1px) !important;
}

/* Gallery Showcase */
.gallery-showcase {
    background: #F8FAFC !important;
    padding: 60px 0 !important;
}

/* Gallery Section Title */
.section-title h2 {
    font-family: 'Inter', sans-serif !important;
    color: #0F172A !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-shadow: none !important;
    text-transform: none !important;
}

.section-title h2::before,
.section-title h2::after {
    display: none !important;
}

.section-title p {
    color: #64748B !important;
    font-family: 'Inter', sans-serif !important;
}

/* Gallery Grid Items */
.gallery-item {
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    background: #FFFFFF !important;
    padding: 0 !important;
    border: 1px solid #E2E8F0 !important;
    transition: all 0.4s ease !important;
}

.gallery-item::before {
    display: none !important;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
}

.item-front img {
    filter: none !important;
    border-radius: 20px !important;
}

.gallery-item:hover .item-front img {
    filter: none !important;
    transform: scale(1.04) !important;
}

/* Gallery Back Card */
.item-back {
    background: #FFFFFF !important;
    color: #0F172A !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 20px !important;
    box-shadow: none !important;
}

.item-content h3 {
    font-family: 'Inter', sans-serif !important;
    color: #0F172A !important;
    text-shadow: none !important;
    letter-spacing: 0 !important;
    font-size: 1.3rem !important;
}

.item-content p {
    font-family: 'Inter', sans-serif !important;
    color: #64748B !important;
    font-style: normal !important;
}

/* Masonry View */
.masonry-view .gallery-item {
    border-radius: 20px !important;
}

.masonry-view .gallery-item img {
    filter: none !important;
}

.masonry-view .gallery-item:hover img {
    filter: none !important;
    transform: scale(1.04) !important;
}

/* Carousel */
.carousel-stage {
    border-radius: 24px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1) !important;
}

.carousel-slide img {
    filter: none !important;
}

.carousel-slide.active img {
    filter: none !important;
}

.slide-caption h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.slide-caption p {
    font-family: 'Inter', sans-serif !important;
    font-style: normal !important;
}

.carousel-prev,
.carousel-next {
    border-radius: 14px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    color: #64748B !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #F97316 !important;
    color: #FFFFFF !important;
    border-color: #F97316 !important;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25) !important;
    transform: translateY(-2px) !important;
}

.carousel-dots .dot {
    background-color: #CBD5E1 !important;
    width: 10px !important;
    height: 10px !important;
}

.carousel-dots .dot.active {
    background: #F97316 !important;
    transform: scale(1.3);
}

/* ======= MODERN FOOTER (all pages) ======= */
.modern-footer {
    position: relative;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%) !important;
    padding: 80px 0 32px !important;
    overflow: hidden;
    color: #475569 !important;
    border-top: 1px solid #E2E8F0;
}

.footer-bubbles .bubble {
    background: rgba(249, 115, 22, 0.06) !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-brand-name {
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
}

.footer-logo {
    border-radius: 12px !important;
}

.footer-desc {
    color: #64748B !important;
    font-family: 'Inter', sans-serif !important;
}

.social-link {
    border-radius: 12px !important;
    background: #FFFFFF !important;
    color: #64748B !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.social-link:hover {
    background: #F97316 !important;
    color: #FFFFFF !important;
    border-color: #F97316 !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3) !important;
}

.footer-title {
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
}

.footer-title::after {
    background: #F97316 !important;
    width: 40px !important;
    border-radius: 4px !important;
}

.footer-links a {
    color: #64748B !important;
    font-family: 'Inter', sans-serif !important;
}

.footer-links a::before {
    color: #F97316 !important;
}

.footer-links a:hover {
    color: #F97316 !important;
}

.oh-item {
    color: #64748B !important;
}

.oh-day {
    color: #1E293B !important;
}

.contact-item i {
    background: rgba(249, 115, 22, 0.12) !important;
    border-radius: 12px !important;
    color: #F97316 !important;
}

.contact-item h5 {
    color: #0F172A !important;
    font-family: 'Inter', sans-serif !important;
}

.contact-item a {
    color: #64748B !important;
}

.contact-item a:hover {
    color: #F97316 !important;
}

.footer-bottom {
    border-top: 1px solid #E2E8F0 !important;
}

.copyright {
    color: #94A3B8 !important;
}

.copyright a {
    color: #F97316 !important;
}

.footer-bottom-links a {
    color: #94A3B8 !important;
}

.footer-bottom-links a:hover {
    color: #F97316 !important;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
    background: #F97316 !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #EA580C !important;
}

::-webkit-scrollbar-track {
    background: #F1F5F9 !important;
}

/* Body paper texture override */
body::before {
    display: none !important;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {

    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem !important;
    }

    .about-hero,
    .contact-hero {
        padding: 80px 0 60px !important;
    }

    .gallery-intro .char {
        font-size: 3rem !important;
    }

    .category-tab {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {

    .about-hero h1,
    .contact-hero h1 {
        font-size: 1.8rem !important;
    }

    .gallery-intro .char {
        font-size: 2.5rem !important;
    }
}