/* ============================================
   DR.DEN - MODERN RESPONSIVE STYLES
   ============================================ */

/* CSS Variables - Color Scheme based on CI */
:root {
    /* Primary Colors - Warm Gold Theme */
    --primary-color: #E6B030;
    --primary-dark: #C9A020;
    --primary-light: #FFD955;
    --secondary-color: #E6A830;
    --accent-color: #D4941F;
    --gold-gradient: linear-gradient(135deg, #E6B030 0%, #C9A020 100%);
    
    /* Neutrals */
    --dark-bg: #1a1a2e;
    --dark-text: #2c3e50;
    --text-color: #2c3e50;
    --text-secondary: #555555;
    --light-bg: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --text-gray: #6c757d;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E6B030 0%, #C9A020 100%);
    --gradient-secondary: linear-gradient(135deg, #E6A830 0%, #D4941F 100%);
    --gradient-gold: linear-gradient(135deg, #FFD955 0%, #E6B030 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
    overflow-x: clip;
    position: relative;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   MODERN EFFECTS
   ============================================ */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.6), transparent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: rippleEffect 1s ease-out forwards;
    z-index: 9999;
}

@keyframes rippleEffect {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Smooth transitions for cards */
.service-card,
.promo-card,
.review-card,
.doctor-card,
.doctor-preview-card,
.branch-card,
.blog-card,
.article-card,
.feature-card,
.info-card-row {
    transition: transform 0.1s ease-out !important;
}

/* ============================================
   BASE CARD STYLES (Shared across all pages)
   ============================================ */
.card-base {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    overflow: hidden;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

section {
    padding: var(--spacing-xl) 0;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-text);
}

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

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Long URLs and emails should break */
a[href*="mailto:"],
a[href*="tel:"],
a[href*="http"] {
    word-break: break-word;
    overflow-wrap: break-word;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateZ(-1px) scale(1.5);
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 176, 48, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 176, 48, 0.3);
}

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

.btn-block {
    width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.section-badge:hover::before {
    width: 300px;
    height: 300px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FLOATING CONTACT BUTTONS — Enhanced CTA
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    max-width: calc(100vw - 4rem);
}

.floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #E6B030 0%, #D4941F 40%, #E6B030 60%, #FFD54F 100%);
    background-size: 200% 200%;
    animation: fabGradientShift 3s ease infinite;
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow:
        0 4px 20px rgba(230, 176, 48, 0.45),
        0 0 40px rgba(230, 176, 48, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    z-index: 2;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow:
        0 8px 32px rgba(230, 176, 48, 0.55),
        0 0 60px rgba(230, 176, 48, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.floating-btn:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

/* Icon wrapper with bounce */
.fab-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
    animation: fabIconBounce 2s ease-in-out infinite;
}

.fab-icon-wrap i {
    font-size: 1.15rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

/* Label text */
.fab-label {
    letter-spacing: 0.03em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    white-space: nowrap;
}

/* FREE badge */
.fab-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff3b5c;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(255, 59, 92, 0.5);
    animation: fabBadgePop 2s ease-in-out infinite;
    z-index: 3;
}

/* Pulse rings */
.fab-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 60px;
    border: 2px solid rgba(230, 176, 48, 0.5);
    animation: fabPulseRing 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

.fab-ring-2 {
    animation-delay: 1.25s;
}

/* Sparkle dots */
.fab-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFD54F;
    pointer-events: none;
    opacity: 0;
    animation: fabSparkle 3s ease-in-out infinite;
}

.fab-sp1 { top: -10px; left: 20%; animation-delay: 0s; }
.fab-sp2 { bottom: -8px; right: 15%; animation-delay: 1s; }
.fab-sp3 { top: 50%; left: -10px; animation-delay: 2s; }

/* ---- Keyframes ---- */
@keyframes fabGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes fabBadgePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes fabPulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes fabSparkle {
    0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
    30% { opacity: 1; transform: scale(1) translateY(-6px); }
    60% { opacity: 0.5; transform: scale(0.5) translateY(-12px); }
}

.floating-menu {
    position: absolute;
    bottom: 5rem;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.contact-item:hover {
    transform: scale(1.1);
}

.contact-item.phone {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.contact-item.line {
    background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
}

.contact-item.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #1877F2 100%);
}

.contact-item.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: relative;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(230, 176, 48, 0.1);
}

#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* When mobile menu is open, switch to fixed so navbar doesn't jump */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open #header-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(230, 176, 48, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

/* On desktop, reorder: logo(1) nav-menu(2) pass-zone(3) nav-actions(4) */
.nav-wrapper .logo { order: 1; }
.nav-wrapper .nav-menu { order: 2; flex: 1; justify-content: flex-end; }
.nav-wrapper .nav-pass-zone { order: 3; }
.nav-wrapper .nav-actions { order: 4; }

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(230, 176, 48, 0.4));
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
    transition: all 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(360deg);
    box-shadow: 0 6px 20px rgba(230, 176, 48, 0.5);
}

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

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
}

.logo h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

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

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

.btn-primary-nav {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--transition-base);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   DR.DEN PASS ZONE — Distinct Section in Nav
   ============================================ */

/* Desktop zone container */
.nav-pass-zone {
    order: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.25rem;
}

/* Vertical divider line */
.pass-zone-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(192, 132, 252, 0.35), transparent);
    flex-shrink: 0;
}

/* Inner wrapper — card-like zone */
.pass-zone-inner {
    position: relative;
    display: flex;
    align-items: center;
}

/* NEW badge */
.pass-zone-badge {
    position: absolute;
    top: -10px;
    right: -8px;
    background: linear-gradient(135deg, #FF6B9D, #FF3D7F);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 61, 127, 0.4);
    animation: passBadgeBounce 2s ease-in-out infinite;
    line-height: 1.3;
}

@keyframes passBadgeBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-2px); }
}

/* The main Pass button */
.btn-drden-pass {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem 0.55rem 0.75rem;
    background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399);
    background-size: 300% 300%;
    animation: passGradientShift 4s ease infinite;
    color: white;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 14px rgba(192, 132, 252, 0.3);
    white-space: nowrap;
}

/* Icon wrapper — circular bg */
.pass-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(4px);
}

.pass-icon-wrap i {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

/* Text wrapper — two lines */
.pass-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.pass-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pass-subtitle {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 2px;
    letter-spacing: 0.2px;
}

/* Hover effects */
.btn-drden-pass:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(192, 132, 252, 0.45),
                0 0 20px rgba(96, 165, 250, 0.25);
    color: white;
}

.btn-drden-pass:hover .pass-icon-wrap {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(-6deg) scale(1.1);
}

.btn-drden-pass:active {
    transform: translateY(-1px) scale(0.98);
}

/* Sparkle / Shine sweep effect */
.pass-sparkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 70%
    );
    transition: none;
    pointer-events: none;
}

.btn-drden-pass:hover .pass-sparkle {
    animation: passShineSweep 0.7s ease forwards;
}

/* Gradient animation */
@keyframes passGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shine sweep animation */
@keyframes passShineSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Subtle pulse glow behind */
.btn-drden-pass::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF6B9D, #C084FC, #60A5FA, #34D399);
    background-size: 300% 300%;
    animation: passGradientShift 4s ease infinite;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.35s ease;
}

.btn-drden-pass:hover::before {
    opacity: 0.6;
}

/* Mobile: hide desktop zone, show inside menu */
.nav-pass-zone-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ============================================
   NAV ACTIONS (Search + Mobile Toggle)
   ============================================ */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.nav-search-btn:hover {
    background: rgba(230, 176, 48, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-search-btn:active {
    transform: scale(0.95);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.search-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-overlay-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

/* Close Button */
.search-close-btn {
    position: absolute;
    top: 1rem;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.search-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

/* Search Input */
.search-input-wrapper {
    padding-top: 3rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.search-input-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 0 1.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(230, 176, 48, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.search-input-box:focus-within {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 0 2px var(--primary-color);
    background: #fff;
}

.search-input-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1.1rem 0;
    font-size: 1.15rem;
    font-family: 'Prompt', sans-serif;
    color: var(--text-color);
    outline: none;
    min-width: 0;
}

.search-input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.search-shortcut {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    font-family: monospace;
}

/* Search Results Container */
.search-results-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.search-results-container::-webkit-scrollbar {
    width: 5px;
}

.search-results-container::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* Search Default State (Popular & Quick Links) */
.search-section {
    margin-bottom: 2rem;
}

.search-section-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Popular Tags */
.search-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.search-tag {
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.25s ease;
}

.search-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.4);
}

/* Quick Links */
.search-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.search-quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.9rem;
}

.search-quick-link i {
    font-size: 1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.search-quick-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(230, 176, 48, 0.4);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   SEARCH LIVE RESULTS
   ============================================ */
.search-result-group {
    margin-bottom: 1.5rem;
}

.search-result-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-group-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-group-title i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.search-result-count {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Result Item */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(230, 176, 48, 0.3);
    transform: translateX(4px);
}

.search-result-item:hover .search-result-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Thumbnail */
.search-result-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
}

.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon placeholder (for services/pages without images) */
.search-result-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(230,176,48,0.2), rgba(212,148,31,0.1));
    color: var(--primary-color);
}

/* Result Text */
.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-title mark {
    background: rgba(230, 176, 48, 0.35);
    color: #FFD54F;
    padding: 0 2px;
    border-radius: 3px;
}

.search-result-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.search-result-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    background: rgba(230, 176, 48, 0.2);
    color: #FFD54F;
    font-weight: 500;
}

.search-result-stat {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Arrow */
.search-result-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease;
}

/* No Results */
.search-no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.search-no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.search-no-results h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.search-no-results p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Search Results Summary */
.search-results-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.search-results-summary-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.search-results-summary-text strong {
    color: var(--primary-color);
}

.search-results-clear {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.search-results-clear:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* Keyboard Navigation Highlight */
.search-result-item.keyboard-active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.search-result-item.keyboard-active .search-result-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SEARCH OVERLAY RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .search-overlay-content {
        padding: 1rem;
        max-width: 100%;
    }

    .search-input-wrapper {
        padding-top: 2rem;
    }

    .search-input-box {
        padding: 0 1rem;
        border-radius: 12px;
    }

    .search-input {
        font-size: 1rem;
        padding: 1rem 0;
    }

    .search-shortcut {
        display: none;
    }

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

    .search-result-thumb,
    .search-result-icon {
        width: 48px;
        height: 48px;
    }

    .search-result-title {
        font-size: 0.9rem;
    }

    .search-close-btn {
        top: 0.5rem;
        right: 0.25rem;
    }

    .nav-search-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .search-quick-links {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .search-quick-link {
        padding: 0.7rem;
        font-size: 0.8rem;
    }

    .search-popular-tags {
        gap: 0.4rem;
    }

    .search-tag {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   HERO BANNER SECTION
   ============================================ */
.hero-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner-slide {
    display: none;
    margin: 0;
    padding: 0;
}

.hero-banner-slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
    font-size: 1.25rem;
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: white;
    width: 35px;
    border-radius: 10px;
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 0.5rem;
    }
    
    .next-btn {
        right: 0.5rem;
    }
    
    .slider-dots {
        bottom: 1rem;
        gap: 0.75rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9e6 0%, #fffef0 25%, #ffffff 50%, #fff9e6 75%, #fffef0 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(201, 160, 32, 0.05));
    animation: floatShape 20s ease-in-out infinite;
}

.hero::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: -5s;
}

.hero::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fffef0 0%, #fff9e6 50%, #fff4dc 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 100%;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 176, 48, 0.12);
    transition: all 0.3s ease;
    container-type: inline-size;
    position: relative;
    overflow: hidden;
}

.hero-stats .stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.hero-stats .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(230, 176, 48, 0.18);
    border-color: rgba(230, 176, 48, 0.3);
}

.hero-stats .stat-item.stat-highlight {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    border-color: rgba(230, 176, 48, 0.25);
}

.hero-stats .stat-item h3 {
    font-size: clamp(1.75rem, 18cqi, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: 0.7em;
    opacity: 0.8;
}

.hero-stats .stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--light-bg);
}

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

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid rgba(230, 176, 48, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 176, 48, 0.2);
    border-color: rgba(230, 176, 48, 0.3);
}

.service-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.06) translateY(-4px);
}

.service-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(230, 176, 48, 0.4);
}

.service-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
}

.service-card-body p {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

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

.service-link:hover {
    gap: 0.875rem;
    color: var(--accent-color);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
    margin: 3rem 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.05) 0%, rgba(201, 160, 32, 0.05) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    position: relative;
    container-type: inline-size;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 176, 48, 0.2);
}

.stat-number {
    font-size: clamp(1.5rem, 15cqi, 3rem);
    font-weight: 800 !important;
    color: #E6B030 !important;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-label {
    font-size: 1.1rem;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f2 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-us-header .section-description {
    max-width: 650px;
    margin: 0 auto;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== BENTO GRID GALLERY ===== */
.why-us-bento-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 140px);
    gap: 1rem;
    position: relative;
}

/* Bento Item Base Styles */
.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bento-label {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Main Image - Spans 2 columns, 2 rows */
.bento-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    box-shadow: 0 20px 50px rgba(230, 176, 48, 0.2);
}

.bento-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.bento-main:hover::before {
    opacity: 1;
}

/* Top Right */
.bento-top-right {
    grid-column: 3;
    grid-row: 1;
}

/* Middle Right */
.bento-mid-right {
    grid-column: 3;
    grid-row: 2;
}

/* Bottom Left */
.bento-bottom-left {
    grid-column: 1;
    grid-row: 3;
}

/* Stats Card - Spans 2 columns */
.bento-stats {
    grid-column: 2 / 4;
    grid-row: 3;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.bento-stats:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 176, 48, 0.4);
}

.bento-stats-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 1rem;
}

.bento-stat {
    text-align: center;
}

.bento-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.bento-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Decorative floating elements */
.why-us-bento-gallery::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: floatBento 4s ease-in-out infinite;
}

.why-us-bento-gallery::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: floatBento 4s ease-in-out infinite reverse;
}

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

/* Old Visual Side - Keep for fallback */
.why-us-visual {
    position: relative;
    display: none;
}

.why-us-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-us-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.why-us-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-us-visual:hover .why-us-img-wrapper img {
    transform: scale(1.03);
}

.why-us-floating-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.floating-stat {
    background: white;
    padding: 1rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(230, 176, 48, 0.15);
}

.floating-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.floating-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* Features Side */
.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-feature-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(230, 176, 48, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-feature-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(230, 176, 48, 0.12);
    border-color: rgba(230, 176, 48, 0.2);
}

.why-feature-card:hover::after {
    opacity: 1;
}

.why-feature-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(230, 176, 48, 0.15);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
    font-family: 'Prompt', sans-serif;
}

.why-feature-card:hover .why-feature-number {
    color: rgba(230, 176, 48, 0.35);
}

.why-feature-content {
    flex: 1;
}

.why-feature-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.why-feature-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF6DE 0%, #FFEEBB 100%);
    border-radius: 14px;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 176, 48, 0.3);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    background: var(--light-gray);
}

.reviews-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.review-card:hover::after {
    transform: scaleX(1);
}

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

.review-image .image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.review-image .image-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
}

.review-content {
    padding: 1.5rem;
}

.review-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.review-content h4 {
    margin-bottom: 0.5rem;
}

/* ============================================
   PROMOTION SECTION
   ============================================ */
.promotion {
    background: white;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    overflow: hidden;
    container-type: inline-size;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.promo-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(230, 176, 48, 0.3);
    border-color: transparent;
}

.promo-card.featured {
    background: linear-gradient(135deg, #fffef0 0%, #fff9e6 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(230, 176, 48, 0.3);
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
}

.promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.promo-card h3 {
    margin-bottom: 1.5rem;
}

.promo-price {
    margin-bottom: 2rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    font-size: clamp(1.25rem, 12cqi, 2.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.promo-features {
    text-align: left;
    margin-bottom: 2rem;
}

.promo-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-features li:last-child {
    border-bottom: none;
}

.promo-features i {
    color: var(--primary-color);
}

/* ============================================
   PROMOTION CAROUSEL SECTION (IMAGE ONLY)
   ============================================ */
.promotion-carousel-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFFDF5 0%, #FFF8E6 50%, #FFF3D4 100%);
    overflow: hidden;
    position: relative;
}

.promo-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Header */
.promo-carousel-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.promo-carousel-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.promo-carousel-subtitle {
    font-size: 1.1rem;
    color: var(--primary-dark);
    opacity: 0.9;
}

/* Image Carousel Container */
.promo-image-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Carousel Viewport - the visible area */
.promo-carousel-viewport {
    overflow: visible;
    width: 100%;
    padding: 2.5rem 0 2rem;
}

/* Carousel Track */
.promo-carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
}

/* Individual Image Slide */
.promo-image-slide {
    flex: 0 0 auto;
    width: 18%;
    min-width: 160px;
    max-width: 200px;
    transition: all 0.4s ease;
    transform-origin: center bottom;
    margin: 0 0.6rem;
}

/* Position-based tilt effects (based on visible position, not HTML index) */
/* Desktop: 5 visible - pos-1 to pos-5 */
/* Pattern: left-tilt, right-tilt, straight, left-tilt, right-tilt */
.promo-image-slide.pos-1 {
    transform: rotate(-3deg) scale(0.92);
    opacity: 0.85;
    filter: brightness(0.95);
}

.promo-image-slide.pos-2 {
    transform: rotate(2deg) scale(0.96);
    opacity: 0.92;
}

.promo-image-slide.pos-3 {
    transform: rotate(0deg);
}

.promo-image-slide.pos-4 {
    transform: rotate(-2deg) scale(0.96);
    opacity: 0.92;
}

.promo-image-slide.pos-5 {
    transform: rotate(3deg) scale(0.92);
    opacity: 0.85;
    filter: brightness(0.95);
}

/* ===== CENTER SLIDE SPOTLIGHT EFFECT ===== */
.promo-image-slide.is-center {
    transform: rotate(0deg) scale(1.08);
    z-index: 10;
    opacity: 1;
    filter: brightness(1);
}

.promo-image-slide.is-center .promo-image-link {
    box-shadow: 
        0 0 0 3px rgba(230, 176, 48, 0.6),
        0 0 30px rgba(230, 176, 48, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

/* Golden glow animation for center */
.promo-image-slide.is-center .promo-image-link::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, 
        var(--primary-light) 0%, 
        var(--primary-color) 50%, 
        var(--primary-dark) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.85;
    animation: centerGlow 2s ease-in-out infinite alternate;
}

@keyframes centerGlow {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(230, 176, 48, 0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 35px rgba(230, 176, 48, 0.8);
    }
}

.promo-image-link {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: white;
}

/* Allow pseudo-elements to show outside */
.promo-image-slide.is-center .promo-image-link {
    overflow: visible;
}

.promo-image-slide.is-center .promo-image-link img {
    border-radius: 18px;
}

.promo-image-link:hover {
    transform: translateY(-12px) scale(1.05) rotate(0deg) !important;
    box-shadow: 0 20px 50px rgba(230, 176, 48, 0.4);
    z-index: 10;
}

.promo-image-slide:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.promo-image-slide img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.promo-image-link:hover img {
    transform: scale(1.08);
}

/* Fade Overlays for Edge Effect */
.promo-fade-left,
.promo-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 5;
}

.promo-fade-left {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(255, 248, 230, 1) 0%, 
        rgba(255, 248, 230, 0.7) 40%,
        rgba(255, 248, 230, 0) 100%);
}

.promo-fade-right {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(255, 248, 230, 1) 0%, 
        rgba(255, 248, 230, 0.7) 40%,
        rgba(255, 248, 230, 0) 100%);
}

/* Navigation Buttons */
.promo-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 176, 48, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(230, 176, 48, 0.5);
}

.promo-carousel-nav.prev {
    left: 10px;
}

.promo-carousel-nav.next {
    right: 10px;
}

/* Carousel Dots */
.promo-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.promo-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(230, 176, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-carousel-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(230, 176, 48, 0.5);
}

/* Installment Banner */
.promo-installment-banner {
    margin-top: 2.5rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px rgba(230, 176, 48, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(230, 176, 48, 0.2);
}

.installment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.installment-text {
    flex: 1;
}

.installment-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.installment-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight-text {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.highlight-percent {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

.highlight-months {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.installment-banks {
    display: flex;
    gap: 0.75rem;
    font-size: 2rem;
    color: #666;
}

.installment-cta {
    white-space: nowrap;
}

/* Footer CTA */
.promo-carousel-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Desktop: Show 5 images */
@media (min-width: 993px) {
    .promo-carousel-track {
        gap: 0;
        padding: 1.5rem 1rem 1rem;
    }
    
    .promo-image-slide {
        width: calc((100% - 6rem) / 5);
        min-width: 0;
        max-width: none;
        margin: 0 0.6rem;
    }
}

/* Tablet/iPad: Show 5 images but smaller */
@media (max-width: 992px) and (min-width: 769px) {
    .promo-carousel-track {
        gap: 0;
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .promo-image-slide {
        width: calc((100% - 5rem) / 5);
        min-width: 0;
        max-width: none;
        margin: 0 0.5rem;
    }
    
    .promo-carousel-nav {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .promo-fade-left,
    .promo-fade-right {
        width: 60px;
    }
}

/* Mobile: Show 3 images */
@media (max-width: 768px) {
    .promotion-carousel-section {
        padding: 3rem 0;
    }
    
    .promo-carousel-header {
        margin-bottom: 2rem;
    }
    
    .promo-carousel-viewport {
        padding: 1.5rem 0;
    }
    
    .promo-carousel-track {
        gap: 0;
        padding: 1.5rem 0.5rem 1rem;
    }
    
    .promo-image-slide {
        width: calc((100% - 3rem) / 3);
        min-width: 0;
        max-width: none;
        margin: 0 0.5rem;
    }
    
    .promo-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .promo-carousel-nav.prev {
        left: 5px;
    }
    
    .promo-carousel-nav.next {
        right: 5px;
    }
    
    .promo-fade-left,
    .promo-fade-right {
        width: 30px;
    }
    
    .promo-installment-banner {
        padding: 1.25rem 1.5rem;
        margin-top: 2rem;
    }
    
    .installment-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .installment-highlight {
        justify-content: center;
    }
    
    .highlight-percent {
        font-size: 1.75rem;
    }
    
    .highlight-months {
        font-size: 1.25rem;
    }
    
    .promo-image-link {
        border-radius: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .promo-carousel-track {
        gap: 0;
        padding: 1.5rem 0.35rem 1rem;
    }
    
    .promo-image-slide {
        width: calc((100% - 2.1rem) / 3);
        min-width: 0;
        max-width: none;
        margin: 0 0.35rem;
    }
    
    .promo-fade-left,
    .promo-fade-right {
        width: 20px;
    }
    
    .promo-carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ============================================
   DOCTORS PREVIEW SECTION
   ============================================ */
.doctors-preview {
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.05), rgba(201, 160, 32, 0.05));
}

.doctors-preview .doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.doctors-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.doctor-preview-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.doctor-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 176, 48, 0.2);
    border-color: var(--primary-color);
}

.doctor-preview-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 5px 20px rgba(230, 176, 48, 0.3);
}

.doctor-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.doctor-preview-title {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.doctor-preview-specialties {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.doctor-preview-specialties span {
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(201, 160, 32, 0.1));
    color: var(--primary-dark);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(230, 176, 48, 0.3);
}

/* ============================================
   BRANCHES SECTION
   ============================================ */
.branches {
    background: var(--light-gray);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.branch-image .image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.branch-content {
    padding: 1.5rem;
}

.branch-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.branch-info {
    margin-bottom: 1.5rem;
}

.branch-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.branch-info i {
    color: var(--primary-color);
    width: 20px;
}

.branch-actions {
    display: flex;
    gap: 1rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-card:hover .blog-image::after {
    opacity: 0.3;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.blog-link:hover {
    gap: 1rem;
}

/* ============================================
   CONTACT SECTION - REDESIGNED
   ============================================ */
.contact {
    background: linear-gradient(160deg, #fffef5 0%, #fff9e6 30%, #ffffff 70%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Layout: 2-column split */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

/* === Left: Contact Info === */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-intro h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-intro h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-intro p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Info Card Rows */
.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.info-card-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(230, 176, 48, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

a.info-card-row {
    cursor: pointer;
}

a.info-card-row:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(230, 176, 48, 0.12);
    border-color: rgba(230, 176, 48, 0.25);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-card-text {
    flex: 1;
    min-width: 0;
}

.info-card-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.15rem;
}

.info-card-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.info-card-arrow {
    color: var(--primary-color);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

a.info-card-row:hover .info-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.info-card-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Social Section */
.contact-social-section {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(230, 176, 48, 0.08);
}

.contact-social-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 0.65rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #1877F2 100%);
}

.social-icon.line {
    background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #010101 0%, #333333 100%);
}

/* === Right: Booking Form === */
.contact-form-wrapper {
    background: white;
    padding: 2.25rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 176, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.form-header-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(230, 176, 48, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.35rem;
}

.form-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Form rows */
.booking-form .form-row {
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

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

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

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

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.3rem;
    font-size: 0.82rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-family: 'Prompt', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fafafa;
}

.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(230, 176, 48, 0.12);
    background: white;
}

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

/* Submit button */
.btn-submit-booking {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 176, 48, 0.35);
}

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

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.footer-top {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: flex-start;
}

.footer-brand {
    flex: 0 0 350px;
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    font-size: 1.75rem;
    margin: 0;
    color: white;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.footer-logo h3 span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(230, 176, 48, 0.3);
}

.footer-links-group {
    flex: 1;
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    font-size: 0.9375rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

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

.footer-contact i {
    color: var(--primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

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

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

.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

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

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Landscape - 992px and below */
@media (max-width: 992px) {

    /* Navbar - reduce gap, smaller nav links */
    .nav-menu {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn-primary-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-drden-pass {
        padding: 0.45rem 1rem 0.45rem 0.6rem;
    }

    .pass-label {
        font-size: 0.8rem;
    }

    .pass-subtitle {
        font-size: 0.55rem;
    }

    .pass-icon-wrap {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .logo-img {
        height: 48px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-image {
        order: -1;
    }

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

    .hero-stats {
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-wrapper {
        height: 380px;
        max-width: 480px;
        margin: 0 auto;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Bento Grid Responsive - Tablet */
    .why-us-bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 140px;
        gap: 0.75rem;
    }

    .bento-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .bento-top-right {
        grid-column: 1;
        grid-row: 2;
    }

    .bento-mid-right {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-bottom-left {
        grid-column: 1;
        grid-row: 3;
    }

    .bento-stats {
        grid-column: 2;
        grid-row: 3;
    }

    .bento-stat-number {
        font-size: 1.5rem;
    }

    .why-us-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .why-us-img-wrapper img {
        height: 380px;
    }

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

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

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

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

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

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

    /* Homepage doctors grid - tablet */
    .doctors-preview .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .promo-card.featured {
        transform: scale(1);
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    /* Footer tablet - reduce gap, allow wrap */
    .footer-main {
        gap: 2.5rem;
    }

    .footer-brand {
        flex: 0 0 280px;
        max-width: 280px;
    }

    /* Branch showcase padding tablet */
    .branch-showcase {
        padding: 4rem 0 3rem;
    }

    /* Why-doctors padding tablet */
    .why-doctors {
        padding: 4rem 0;
    }

    /* Section spacing tablet */
    section {
        padding: 4rem 0;
    }
}

/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Navigation */
    .mobile-toggle {
        display: flex;
    }

    /* On mobile: logo(1) nav-actions(2) with search+hamburger, nav-menu(3) as slide-in, pass-zone hidden */
    .nav-wrapper .nav-actions { order: 2; }
    .nav-wrapper .nav-menu { order: 3; }
    .nav-wrapper .nav-pass-zone { order: 4; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition-base);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-link {
        padding: 1rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .btn-primary-nav {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }

    /* Dr.den Pass — hide desktop zone, show mobile version in menu */
    .nav-pass-zone {
        display: none !important;
    }

    .nav-pass-zone-mobile {
        display: block !important;
        padding: 0.75rem 0 0.25rem;
        border-top: 1px dashed rgba(192, 132, 252, 0.2);
        margin-top: 0.5rem;
    }

    .nav-pass-zone-mobile .pass-zone-inner {
        justify-content: center;
    }

    .nav-pass-zone-mobile .btn-drden-pass {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem 0.85rem 1rem;
        border-radius: 14px;
    }

    .nav-pass-zone-mobile .pass-zone-badge {
        top: -8px;
        right: 10px;
    }

    /* Logo responsive */
    .logo-img {
        height: 45px;
    }

    .footer-logo-img {
        height: 50px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 2rem 0 1.5rem;
    }

    .hero-text {
        padding: 0 0.5rem;
    }

    .hero-badge {
        padding: 0.5rem 1.1rem;
        font-size: 0.82rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero image — clean card style */
    .hero-image {
        order: -1;
        display: block;
        position: relative;
    }

    .hero-image-wrapper {
        height: auto;
        max-width: 100%;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
        border-radius: 16px;
        margin-bottom: 0;
    }

    .hero-image-wrapper .hero-img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
        object-position: center top;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    /* Hide floating cards on mobile — cleaner look */
    .floating-card {
        display: none;
    }

    /* Hero decorative shapes smaller */
    .hero::before {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -60px;
    }

    .hero::after {
        width: 120px;
        height: 120px;
        bottom: -30px;
        left: -30px;
    }

    /* Hero stats — compact 3-col */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        max-width: 100%;
        margin: 0;
    }

    .hero-stats .stat-item {
        padding: 0.85rem 0.4rem;
        overflow: visible;
        container-type: normal;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .hero-stats .stat-item p {
        font-size: 0.72rem;
        white-space: nowrap;
    }

    /* Grids → responsive columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    /* Bento Grid Mobile */
    .why-us-bento-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 150px 150px 120px 100px;
        gap: 0.5rem;
    }

    .bento-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .bento-top-right {
        grid-column: 1;
        grid-row: 2;
    }

    .bento-mid-right {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-bottom-left {
        grid-column: 1;
        grid-row: 3;
    }

    .bento-stats {
        grid-column: 2 / 3;
        grid-row: 3 / 5;
        flex-direction: column;
    }

    .bento-stats-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .bento-stat-number {
        font-size: 1.25rem;
    }

    .bento-stat-label {
        font-size: 0.7rem;
    }

    .bento-label {
        font-size: 0.75rem;
    }

    .why-us-bento-gallery::before,
    .why-us-bento-gallery::after {
        display: none;
    }

    .promotion-grid,
    .reviews-grid,
    .branches-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }

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

    /* Branch showcase padding */
    .branch-showcase {
        padding: 3rem 0 2.5rem;
    }

    /* Why-doctors padding */
    .why-doctors {
        padding: 3rem 0;
    }

    .social-links {
        justify-content: center;
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-brand {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Floating Button */
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .floating-btn .fab-label {
        display: none;
    }

    .fab-icon-wrap {
        width: 28px;
        height: 28px;
        background: transparent;
    }

    .fab-badge {
        top: -6px;
        right: -6px;
        font-size: 0.5rem;
        padding: 2px 5px;
    }

    .fab-pulse-ring {
        border-radius: 50%;
    }

    /* Section spacing */
    section {
        padding: 4rem 0;
    }

    .section-badge {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.85rem;
    }

    .hero-description {
        font-size: 0.88rem;
        margin-bottom: 1.25rem;
    }

    .hero-image-wrapper .hero-img {
        max-height: 260px;
    }

    .hero-stats .stat-item {
        padding: 0.65rem 0.3rem;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.1rem;
    }

    .hero-stats .stat-item p {
        font-size: 0.65rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .container {
        padding: 0 0.75rem;
    }

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

    .why-us-img-wrapper img {
        height: 280px;
    }

    .why-us-floating-stats {
        flex-direction: row;
        gap: 0.75rem;
    }

    .floating-stat {
        padding: 0.75rem 1.25rem;
        min-width: 100px;
    }

    .floating-stat-number {
        font-size: 1.35rem;
    }

    .why-feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .why-feature-number {
        font-size: 1.5rem;
        min-width: 36px;
    }

    section {
        padding: 2rem 0;
    }

    .branch-actions {
        flex-direction: column;
    }

    .branch-actions .btn {
        width: 100%;
    }

    .reviews-filter {
        gap: 0.5rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.813rem;
        min-height: 44px;
    }

    /* Contact section mobile */
    .contact-intro h3 {
        font-size: 1.15rem;
    }

    .contact-intro p {
        font-size: 0.85rem;
    }

    .info-card-row {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }

    .info-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .info-card-text h4 {
        font-size: 0.88rem;
    }

    .info-card-text p {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem 1rem;
    }

    .form-header-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .form-header h3 {
        font-size: 1.15rem;
    }

    .btn-submit-booking {
        font-size: 0.92rem;
        padding: 0.8rem 1rem;
    }

    /* Branch showcase padding mobile */
    .branch-showcase {
        padding: 2rem 0 1.5rem;
    }

    /* Why-doctors padding mobile */
    .why-doctors {
        padding: 2.5rem 0;
    }

    .promo-price .new-price {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }

    .service-card-img {
        height: 200px;
    }

    .service-card-body {
        padding: 1.25rem;
    }

    .footer-links-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-col {
        flex: 0 0 calc(50% - 1rem);
    }

    .nav-menu {
        padding: 1.5rem;
    }

    /* Slider controls smaller on mobile */
    .slider-btn {
        width: 35px;
        height: 35px;
    }

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

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots .dot.active {
        width: 24px;
    }
}

/* Large Desktop - 1400px and above */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-contact,
    .hero-wave,
    .btn {
        display: none;
    }

    body {
        background: white;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #d81b60;
        --text-gray: #333333;
    }

    .btn-outline {
        border-width: 3px;
    }
}

/* Utility Classes */
.text-wrap {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-nowrap {
    white-space: nowrap;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* FIX: Reset all text to normal display */
h1, h2, h3, h4, h5, h6, p, span, div:not(.contact-icon), a {
    word-break: normal !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
}

/* Only break URLs */
a[href^="http"],
a[href^="mailto:"],
a[href^="tel:"] {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   REVIEWS PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffef0 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 160, 32, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-color);
}

.page-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.page-stats .stat,
.page-stats .stat-item {
    text-align: center;
}

/* Stat styling is inherited from global .stat-number and .stat-label */

/* Reviews Page Section */
.reviews-page {
    padding: 4rem 0;
    background: white;
}

/* Enhanced Filter Buttons */
.reviews-filter-enhanced {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.9375rem;
}

.filter-btn-enhanced i {
    font-size: 1.125rem;
    transition: transform var(--transition-base);
}

.filter-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.filter-btn-enhanced.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
}

.filter-btn-enhanced.active i {
    transform: scale(1.1);
}

/* Reviews Controls */
.reviews-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: 'Prompt', sans-serif;
    color: var(--text-color);
    font-weight: 500;
}

.search-box input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 176, 48, 0.1);
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-box label {
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.sort-box select {
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: white;
    transition: all var(--transition-base);
    font-family: 'Prompt', sans-serif;
    appearance: none;
    color: var(--text-color);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.sort-box select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 176, 48, 0.1);
}

/* Enhanced Reviews Grid - Image Gallery */
.reviews-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Enhanced Review Card - Image Only */
.review-card-enhanced {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Hide review text content - image-only gallery */
.review-content-enhanced {
    display: none !important;
}

.review-image-enhanced {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.review-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.review-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-badge i {
    font-size: 1rem;
}

.review-content-enhanced {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

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

.review-date {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    color: #E6B030;
    font-size: 1rem;
}

.review-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    flex: 1;
}

.review-treatment {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(201, 160, 32, 0.05));
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
}

.review-treatment i {
    color: var(--primary);
    font-size: 1.125rem;
}

.review-treatment span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    min-width: 250px;
    margin-bottom: 1rem;
}

.reviews-count {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-buttons .btn-outline {
    background: white;
    color: var(--primary);
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .reviews-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-header {
        padding: 80px 0 50px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-stats {
        gap: 1.5rem;
    }

    .reviews-filter-enhanced {
        gap: 0.5rem;
    }

    .filter-btn-enhanced {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .reviews-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .sort-box {
        justify-content: space-between;
    }

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

    .review-image-enhanced {
        aspect-ratio: 1 / 1;
    }

    .cta-section {
        padding: 3rem 0;
    }

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

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

@media (max-width: 480px) {
    .filter-btn-enhanced span {
        display: none;
    }

    .filter-btn-enhanced {
        padding: 0.75rem;
    }

    .filter-btn-enhanced i {
        margin: 0;
    }

    .reviews-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* ===================================
   PROMOTIONS PAGE STYLES
   =================================== */

/* Promotions Header */
.promotions-header {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        #ff6b6b 100%);
    position: relative;
    overflow: hidden;
}

.promotions-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: headerPulse 4s ease-in-out infinite;
}

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

.promo-timer-hero {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: inline-block;
}

.timer-label {
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timer-display {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    container-type: inline-size;
}

.timer-value {
    font-size: clamp(1.25rem, 20cqi, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.timer-text {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 600;
}

.timer-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.timer-expired {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
}

/* ===== PROMOTIONS PAGE - MASONRY LAYOUT ===== */

/* Masonry Section */
.promo-masonry-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #FFFDF5 0%, #FFF8E6 50%, white 100%);
}

/* Filter Tabs */
.promo-filter-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.promo-filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.promo-filter-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 176, 48, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.promo-filter-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(230, 176, 48, 0.4);
}

.promo-filter-tab i {
    font-size: 1rem;
}

/* Results Info */
.promo-results-info {
    text-align: center;
    margin-bottom: 2rem;
}

.promo-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Masonry Grid */
.promo-masonry-grid {
    columns: 3;
    column-gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Masonry Card */
.promo-masonry-card {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.promo-masonry-card.promo-visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.promo-card-inner:hover {
    box-shadow: 0 12px 40px rgba(230, 176, 48, 0.25);
    transform: translateY(-6px);
}

.promo-card-inner img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.promo-card-inner:hover img {
    transform: scale(1.05);
}

/* Card Badge */
.promo-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.promo-card-badge i {
    font-size: 0.7rem;
}

/* Card Overlay */
.promo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.promo-card-inner:hover .promo-card-overlay {
    opacity: 1;
}

.promo-card-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.promo-card-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.promo-btn-view {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-btn-view:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: scale(1.1);
}

.promo-btn-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(230, 176, 48, 0.4);
}

.promo-btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(230, 176, 48, 0.5);
}

/* Featured Card */
.promo-card-featured .promo-card-inner {
    border: 2px solid rgba(230, 176, 48, 0.4);
}

.promo-card-featured .promo-card-inner:hover {
    border-color: var(--primary-color);
}

/* Installment Banner */
.promo-installment-banner {
    margin-top: 3rem;
}

.installment-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(230, 176, 48, 0.12);
    border: 2px solid rgba(230, 176, 48, 0.15);
}

.installment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.installment-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.installment-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.installment-cards {
    display: flex;
    gap: 0.75rem;
    font-size: 2.5rem;
    color: var(--text-secondary);
}

/* ===== LIGHTBOX MODAL ===== */
.promo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.promo-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 90vw;
    max-height: 92vh;
    z-index: 1;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lightbox-close:hover {
    background: white;
    color: #333;
    border-color: white;
}

.lightbox-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.promo-lightbox.active .lightbox-image {
    animation: lightboxZoomIn 0.35s ease;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    justify-content: center;
}

.lightbox-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 15px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lightbox-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.lightbox-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(230, 176, 48, 0.4);
}

.lightbox-book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Fade-in animation for filter */
@keyframes promoFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PROMOTIONS RESPONSIVE ===== */
@media (max-width: 992px) {
    .promo-masonry-grid {
        columns: 2;
        column-gap: 1rem;
    }
}

@media (max-width: 768px) {
    .promo-masonry-section {
        padding: 2rem 0 3rem;
    }

    .promo-filter-tabs {
        gap: 0.5rem;
    }

    .promo-filter-tab {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }

    .promo-masonry-grid {
        columns: 2;
        column-gap: 0.75rem;
    }

    .promo-masonry-card {
        margin-bottom: 0.75rem;
    }

    .promo-card-overlay {
        opacity: 1;
        background: linear-gradient(to top,
            rgba(0, 0, 0, 0.6) 0%,
            transparent 60%);
    }

    .promo-card-title {
        font-size: 0.85rem;
    }

    .promo-btn-view {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .promo-btn-book {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    .promo-card-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.65rem;
        top: 8px;
        left: 8px;
    }

    /* Lightbox mobile */
    .lightbox-container {
        flex-direction: column;
        max-width: 95vw;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .lightbox-close {
        top: -2.5rem;
        right: 0.5rem;
    }

    .lightbox-image {
        max-height: 55vh;
        border-radius: 10px;
    }

    .lightbox-info {
        padding: 0.75rem 1rem;
        gap: 0.6rem;
    }

    .lightbox-title {
        font-size: 0.9rem;
    }

    .installment-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .installment-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .installment-cards {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .promo-masonry-grid {
        columns: 1;
        column-gap: 0;
    }

    .promo-masonry-card {
        margin-bottom: 1rem;
    }

    .promo-filter-tab span {
        display: none;
    }

    .promo-filter-tab {
        padding: 0.65rem;
        font-size: 1.1rem;
    }

    .lightbox-nav.lightbox-prev,
    .lightbox-nav.lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }

    .lightbox-nav.lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-nav.lightbox-next {
        right: 0.5rem;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Header */
.services-header {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 50%, #ffffff 100%);
}

/* Services Page Section */
.services-page {
    padding: 4rem 0;
    background: white;
}

/* Category Buttons */
.services-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.services-search-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.services-search-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.services-search-input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-xl);
    padding: 0.85rem 1rem 0.85rem 2.6rem;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-search-input:focus,
.services-sort-select:focus,
.category-btn:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 176, 48, 0.18);
}

.services-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-sort-wrap label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.services-sort-select {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-text);
    background: #fff;
}

.services-result-meta {
    margin-bottom: 1.5rem;
}

.services-result-count {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
    font-family: 'Prompt', sans-serif;
}

.category-btn i {
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(230, 176, 48, 0.3);
}

.category-btn.active i {
    transform: scale(1.15);
}

/* Enhanced Services Grid */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 2.5rem;
}

/* Enhanced Service Card */
.service-card-enhanced {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-base);
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-enhanced.in-view {
    opacity: 1;
    transform: translateY(0);
}

.service-card-enhanced.is-hidden {
    display: none;
}

/* Service Image */
.service-image {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fdf8ec 0%, #fef6e0 50%, #fdf0d0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    padding: 0.5rem;
}

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

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
    pointer-events: none;
    z-index: 1;
}

.service-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.premium {
    background: linear-gradient(135deg, #E6B030, #D4941F);
    color: white;
}

/* Service Content */
.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.service-content > p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    flex: 1;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(230, 176, 48, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    color: var(--dark-text);
    font-weight: 500;
}

.feature-tag i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* Service Brands */
.service-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.brand-chip {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, rgba(230,176,48,0.12), rgba(212,148,31,0.08));
    border: 1px solid rgba(230,176,48,0.25);
    border-radius: 50px;
    font-size: 0.775rem;
    font-weight: 600;
    color: #8B6914;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.brand-chip:hover {
    background: linear-gradient(135deg, rgba(230,176,48,0.22), rgba(212,148,31,0.15));
    transform: translateY(-1px);
}

/* Service Footer */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
    margin-top: auto;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    container-type: inline-size;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: clamp(1rem, 15cqi, 1.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-base);
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffef0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    border: 1px solid rgba(230, 176, 48, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 176, 48, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(230, 176, 48, 0.3);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
    .services-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .services-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .services-search-wrap {
        min-width: 100%;
    }

    .services-sort-wrap {
        justify-content: space-between;
    }

    .services-categories {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .category-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .services-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-btn span {
        display: none;
    }

    .category-btn {
        padding: 0.875rem;
    }

    .category-btn i {
        margin: 0;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .service-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

.services-empty-state {
    margin-top: 1.25rem;
    text-align: center;
    padding: 2.25rem 1.25rem;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-xl);
    background: #fffdfa;
    color: var(--text-gray);
}

.services-empty-state i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.services-empty-state h3 {
    margin: 0 0 0.45rem;
    color: var(--dark-text);
    font-size: 1.2rem;
}

.services-empty-state p {
    margin: 0;
    line-height: 1.6;
}


/* ===== DOCTORS PAGE - NEW PROFILE CARDS ===== */

/* Profiles Section */
.doc-profiles-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #fdfaf0 0%, #ffffff 40%, #fdfaf0 100%);
    position: relative;
}

.doc-profiles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(230, 176, 48, 0.04), transparent);
    pointer-events: none;
}

/* Filter Tabs */
.doc-filter-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.doc-filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #f0ead6;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.doc-filter-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 176, 48, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.doc-filter-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(230, 176, 48, 0.4);
}

.doc-filter-tab i {
    font-size: 1rem;
}

/* Results Info */
.doc-results-info {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.doc-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Profiles Grid */
.doc-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Profile Card */
.doc-profile-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(230, 176, 48, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.doc-profile-card.doc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.doc-profile-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(230, 176, 48, 0.18);
    border-color: rgba(230, 176, 48, 0.25);
}

/* Featured Card */
.doc-card-featured {
    border: 2px solid rgba(230, 176, 48, 0.3);
}

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

/* Photo Area */
.doc-photo-area {
    position: relative;
    background: linear-gradient(180deg, #faf5e4 0%, #f5eed8 100%);
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.doc-photo {
    width: 100%;
    height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.doc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-profile-card:hover .doc-photo img {
    transform: scale(1.04) translateY(-4px);
}

.doc-photo-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(230, 176, 48, 0.12), transparent);
    z-index: 0;
}

/* ===== Brand Image Switcher (Card & Modal) ===== */
.doc-brand-switcher {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.brand-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2.5px solid var(--dot-color);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
    flex-shrink: 0;
}

.brand-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dot-color);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

.brand-dot:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.brand-dot.active {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--dot-color) 25%, transparent);
}

/* Brand dot label tooltip */
.brand-dot-label {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(30, 30, 30, 0.9);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.brand-dot-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(30, 30, 30, 0.9);
}

.brand-dot:hover .brand-dot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Modal brand switcher overrides */
.modal-hero .doc-brand-switcher {
    bottom: auto;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    padding: 7px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.modal-hero .brand-dot {
    width: 26px;
    height: 26px;
}

.modal-hero .brand-dot::after {
    width: 12px;
    height: 12px;
}

.modal-hero .brand-dot-label {
    font-size: 0.72rem;
    padding: 4px 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .doc-brand-switcher {
        bottom: 10px;
        right: 10px;
        gap: 6px;
        padding: 5px 8px;
    }

    .brand-dot {
        width: 18px;
        height: 18px;
    }

    .brand-dot::after {
        width: 8px;
        height: 8px;
    }

    .modal-hero .doc-brand-switcher {
        top: 14px;
        right: 14px;
    }

    .modal-hero .brand-dot {
        width: 22px;
        height: 22px;
    }
}

/* Role Badge */
.doc-role-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 3px 12px rgba(230, 176, 48, 0.4);
    letter-spacing: 0.3px;
}

.doc-role-badge i {
    font-size: 0.7rem;
}

/* Info Area */
.doc-info-area {
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
}

.doc-nickname {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.doc-fullname {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    line-height: 1.5;
}

.doc-license {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.doc-license strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Specialty Chips */
.doc-specialties-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.doc-specialty-chip {
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.08), rgba(230, 176, 48, 0.15));
    color: var(--primary-dark);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(230, 176, 48, 0.15);
}

/* Divider */
.doc-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 1rem;
    border-radius: 1px;
}

/* Branches Row */
.doc-branches-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* Book Button */
.doc-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
}

.doc-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 176, 48, 0.4);
    filter: brightness(1.05);
}

/* Filter fade-in animation */
@keyframes docFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== DOCTORS PAGE RESPONSIVE ===== */
@media (max-width: 992px) {
    .doc-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .doc-profiles-section {
        padding: 3rem 0 4rem;
    }

    .doc-filter-tabs {
        gap: 0.5rem;
    }

    .doc-filter-tab {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }

    .doc-profiles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
        margin: 0 auto;
    }

    .doc-photo-area {
        min-height: 300px;
    }

    .doc-photo {
        height: 300px;
    }

    .doc-info-area {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .doc-nickname {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .doc-filter-tab span {
        display: none;
    }

    .doc-filter-tab {
        padding: 0.65rem;
        font-size: 1.1rem;
    }

    .doc-nickname {
        font-size: 1.25rem;
    }

    .doc-specialty-chip {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ===================================
   DOCTORS PAGE STYLES
   =================================== */

/* Doctors Header */
.doctors-header {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        #D4941F 100%);
    position: relative;
    overflow: hidden;
}

.doctors-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: headerPulse 4s ease-in-out infinite;
}

/* Removed .header-stats - use .page-stats instead for consistency */

/* Doctors Page */
.doctors-page {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #fdfaf0 0%, #ffffff 40%, #fdfaf0 100%);
    position: relative;
}

.doctors-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(230, 176, 48, 0.04), transparent);
    pointer-events: none;
}

/* Category Filter */
.doctor-categories {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

.doctor-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #f0ead6;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.doctor-category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.doctor-category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 176, 48, 0.25);
    border-color: var(--primary-color);
}

.doctor-category-btn.active {
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 25px rgba(230, 176, 48, 0.4);
}

.doctor-category-btn.active::before {
    opacity: 1;
}

.doctor-category-btn i,
.doctor-category-btn span {
    position: relative;
    z-index: 1;
}

.doctor-category-btn i {
    font-size: 1rem;
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Doctor Card - Premium Arch Design */
.doctor-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(230, 176, 48, 0.08);
}

.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(230, 176, 48, 0.18), 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(230, 176, 48, 0.25);
}

.doctor-image-wrapper {
    position: relative;
    background: linear-gradient(180deg, #faf5e4 0%, #f5eed8 100%);
    padding: 0;
    text-align: center;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.doctor-image-wrapper::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: 85%;
    background: linear-gradient(180deg, rgba(230, 176, 48, 0.10) 0%, rgba(230, 176, 48, 0.02) 70%, transparent 100%);
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    z-index: 0;
}

.doctor-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(230, 176, 48, 0.10), transparent);
    z-index: 0;
}

.doctor-image {
    width: 100%;
    height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.04) translateY(-4px);
}

.doctor-image i {
    font-size: 6rem;
    color: rgba(230, 176, 48, 0.2);
    margin-bottom: 2rem;
}

.doctor-content {
    background: white;
    padding: 1.75rem 2rem 2rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.doctor-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgba(230, 176, 48, 0.3);
    border-radius: 2px;
}

.doctor-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.doctor-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    line-height: 1.6;
    font-weight: 400;
}

.doctor-license {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.1rem;
    line-height: 1.6;
}

.doctor-license strong {
    font-weight: 700;
    color: var(--primary-color);
}

.doctor-divider {
    width: 40px;
    height: 2px;
    background: rgba(230, 176, 48, 0.3);
    margin: 0 auto 1.1rem;
    border-radius: 1px;
}

.doctor-branches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.branch-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.branch-tag:hover {
    transform: scale(1.05);
}

.branch-tag.paragon {
    background: rgba(230, 176, 48, 0.9);
    backdrop-filter: blur(4px);
}

.branch-tag.nirvana {
    background: rgba(2, 136, 209, 0.9);
    backdrop-filter: blur(4px);
}

.branch-tag.fxc {
    background: rgba(139, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.branch-tag.branch-custom {
    background: rgba(100, 100, 100, 0.85);
    backdrop-filter: blur(4px);
}

/* Doctor Card Entrance Animation */
@keyframes doctorCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctors-grid .doctor-card {
    animation: doctorCardFadeIn 0.6s ease forwards;
    opacity: 0;
}

.doctors-grid .doctor-card:nth-child(1) { animation-delay: 0.05s; }
.doctors-grid .doctor-card:nth-child(2) { animation-delay: 0.12s; }
.doctors-grid .doctor-card:nth-child(3) { animation-delay: 0.19s; }
.doctors-grid .doctor-card:nth-child(4) { animation-delay: 0.26s; }
.doctors-grid .doctor-card:nth-child(5) { animation-delay: 0.33s; }
.doctors-grid .doctor-card:nth-child(6) { animation-delay: 0.40s; }
.doctors-grid .doctor-card:nth-child(7) { animation-delay: 0.47s; }
.doctors-grid .doctor-card:nth-child(8) { animation-delay: 0.54s; }
.doctors-grid .doctor-card:nth-child(9) { animation-delay: 0.61s; }

/* Hide old elements that are no longer used in new design */
.doctor-badge,
.doctor-specialties,
.doctor-info,
.doctor-content .btn.btn-outline {
    /* Keep these styles for backward compatibility but hidden in new design */
}

.doctor-badge {
    display: none;
}

.doctor-specialties {
    display: none;
}

.doctor-info {
    display: none;
}

.doctor-content .btn.btn-outline {
    display: none;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.doctor-content .btn {
    width: 100%;
    justify-content: center;
}

/* Why Doctors Section */
.why-doctors {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf0 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(230, 176, 48, 0.1);
    position: relative;
    overflow: hidden;
}

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

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(230, 176, 48, 0.15);
    border-color: rgba(230, 176, 48, 0.2);
}

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

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, #faf5e4, #f5eed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 176, 48, 0.1);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 24px rgba(230, 176, 48, 0.3);
    transform: scale(1.05);
}

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

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Doctor Modal - Large Profile Popup */
.doctor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.doctor-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.doctor-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 28px;
    max-width: 820px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(230, 176, 48, 0.1);
    z-index: 1;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-modal .modal-content::-webkit-scrollbar {
    width: 6px;
}

.doctor-modal .modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.doctor-modal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(230, 176, 48, 0.3);
    border-radius: 3px;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes modalSlideDown {
    from {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
    }
}

.doctor-modal.closing .modal-content {
    animation: modalSlideDown 0.25s ease forwards;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.4);
    border-color: transparent;
}

/* Modal Hero Banner */
.modal-hero {
    position: relative;
    background: linear-gradient(160deg, #faf5e4 0%, #f0e8d0 40%, #e8ddc2 100%);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.modal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 176, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(230, 176, 48, 0.06) 0%, transparent 40%);
    z-index: 0;
}

.modal-hero-img {
    position: relative;
    z-index: 1;
    max-height: 280px;
    max-width: 70%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.15));
}

.modal-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
    z-index: 2;
}

.modal-hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.4);
    letter-spacing: 0.3px;
}

.modal-hero-badge i {
    font-size: 0.75rem;
}

/* Modal Body Content */
.modal-body {
    padding: 0;
    position: relative;
    z-index: 3;
}

.modal-body-inner {
    padding: 0 2.5rem 2.5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

/* Doctor Header Info */
.modal-doctor-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(230, 176, 48, 0.12);
    text-align: center;
}

.modal-doctor-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    letter-spacing: 0.3px;
}

.modal-doctor-fullname {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.modal-doctor-license {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.modal-doctor-license strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Meta Badges Row */
.modal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.modal-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.modal-meta-badge:hover {
    transform: translateY(-1px);
}

.modal-meta-badge.experience {
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(201, 160, 32, 0.15));
    color: var(--primary-dark);
    border: 1px solid rgba(230, 176, 48, 0.2);
}

.modal-meta-badge.license-badge {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.15));
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Doctor Bio */
.modal-bio {
    background: linear-gradient(135deg, #fdfaf0, #faf5e4);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(230, 176, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-bio::before {
    content: '\201C';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 4rem;
    color: rgba(230, 176, 48, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.modal-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Modal Sections */
.modal-section {
    margin-bottom: 1.75rem;
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(230, 176, 48, 0.12);
}

.modal-section-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.08), rgba(230, 176, 48, 0.15));
    border-radius: 10px;
    flex-shrink: 0;
}

/* Specialties Grid */
.modal-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-specialty-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.08), rgba(230, 176, 48, 0.15));
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(230, 176, 48, 0.15);
    transition: all 0.2s ease;
}

.modal-specialty-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(230, 176, 48, 0.3);
}

.modal-specialty-tag i {
    font-size: 0.8rem;
}

/* Education & Certifications List */
.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.modal-list li i {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Expertise Tags */
.modal-expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-expertise-tag {
    padding: 0.45rem 0.95rem;
    background: white;
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.modal-expertise-tag:hover {
    border-color: rgba(230, 176, 48, 0.4);
    color: var(--primary-dark);
    background: rgba(230, 176, 48, 0.05);
}

/* Branches Grid in Modal */
.modal-branches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.modal-branch-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    background: white;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.modal-branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.modal-branch-card i {
    color: var(--primary-color);
}

/* Brand-colored modal branch cards */
.modal-branch-card.paragon {
    border-color: rgba(230, 176, 48, 0.3);
    background: rgba(230, 176, 48, 0.06);
}
.modal-branch-card.paragon i { color: #E6B030; }
.modal-branch-card.paragon:hover {
    border-color: rgba(230, 176, 48, 0.5);
    background: rgba(230, 176, 48, 0.1);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.15);
}

.modal-branch-card.nirvana {
    border-color: rgba(2, 136, 209, 0.3);
    background: rgba(2, 136, 209, 0.06);
}
.modal-branch-card.nirvana i { color: #0288D1; }
.modal-branch-card.nirvana:hover {
    border-color: rgba(2, 136, 209, 0.5);
    background: rgba(2, 136, 209, 0.1);
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.15);
}

.modal-branch-card.fxc {
    border-color: rgba(139, 0, 0, 0.3);
    background: rgba(139, 0, 0, 0.06);
}
.modal-branch-card.fxc i { color: #8B0000; }
.modal-branch-card.fxc:hover {
    border-color: rgba(139, 0, 0, 0.5);
    background: rgba(139, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.15);
}

.modal-branch-card.branch-custom {
    border-color: rgba(100, 100, 100, 0.3);
    background: rgba(100, 100, 100, 0.06);
}
.modal-branch-card.branch-custom i { color: #666; }
.modal-branch-card.branch-custom:hover {
    border-color: rgba(100, 100, 100, 0.5);
    background: rgba(100, 100, 100, 0.1);
}

/* Modal CTA Buttons */
.modal-cta {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 2px solid rgba(230, 176, 48, 0.12);
    display: flex;
    gap: 0.75rem;
}

.modal-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.modal-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    box-shadow: 0 4px 18px rgba(230, 176, 48, 0.35);
}

.modal-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(230, 176, 48, 0.45);
    filter: brightness(1.05);
}

.modal-cta .btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(230, 176, 48, 0.3);
}

.modal-cta .btn-outline:hover {
    background: rgba(230, 176, 48, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* View Profile Overlay on Cards */
.doc-view-profile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    z-index: 4;
}

.doc-profile-card {
    cursor: default;
}

.doc-profile-card:hover .doc-view-profile {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .doctor-modal .modal-content {
        width: 92%;
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .page-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .doctor-categories {
        gap: 0.5rem;
    }

    .doctor-category-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
        margin: 0 auto;
    }

    .doctor-image-wrapper {
        min-height: 300px;
    }

    .doctor-image {
        height: 300px;
    }

    .doctor-content {
        padding: 1.5rem;
    }

    .doctor-content h3 {
        font-size: 1.5rem;
    }

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

    .why-card {
        padding: 1.5rem 1rem;
    }

    .doctor-modal .modal-content {
        width: 95%;
        max-height: 88vh;
        border-radius: 22px;
    }

    .modal-body-inner {
        padding: 0 1.5rem 1.5rem;
    }

    .modal-hero {
        min-height: 230px;
        border-radius: 22px 22px 0 0;
    }

    .modal-hero-img {
        max-height: 230px;
    }

    .modal-doctor-header h2 {
        font-size: 1.6rem;
    }

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

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

@media (max-width: 480px) {
    .page-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .doctor-category-btn span {
        display: none;
    }

    .doctor-category-btn {
        padding: 0.75rem;
    }

    .doctor-content h3 {
        font-size: 1.25rem;
    }

    /* Why-grid → 1 column on mobile */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .why-card {
        padding: 1.5rem 1.25rem;
    }

    .branch-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .modal-section-title {
        font-size: 1.05rem;
    }

    .modal-hero {
        min-height: 200px;
    }

    .modal-hero-img {
        max-height: 200px;
    }

    .modal-doctor-header h2 {
        font-size: 1.4rem;
    }

    .modal-bio {
        padding: 1.2rem;
    }
}

/* ============================================
   BRANCH NETWORK SHOWCASE SECTION
   ============================================ */
.branch-showcase {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #fdfaf0 0%, #ffffff 50%, #fdfaf0 100%);
    position: relative;
    overflow: hidden;
}

.branch-showcase::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 176, 48, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.showcase-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
}

/* Brand Tabs */
.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.brand-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: white;
    border: 2px solid #f0ead6;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand-tab:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.15);
    transform: translateY(-2px);
}

.brand-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(230, 176, 48, 0.35);
}

.brand-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(230, 176, 48, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-tab.active .brand-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.brand-tab-label {
    font-weight: 600;
}

.brand-tab-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.paragon-dot { background: #E6B030; }
.nirvana-dot { background: #0288D1; }
.fxc-dot { background: #8B0000; }

/* Branch Network Grid */
.branch-network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Branch Network Card */
.branch-network-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(230, 176, 48, 0.06);
    position: relative;
}

.branch-network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 176, 48, 0.15), 0 5px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(230, 176, 48, 0.2);
}

/* Card Top Bar */
.branch-network-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-network-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.branch-network-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.branch-network-overlay .branch-network-number {
    position: absolute;
    top: 0.75rem;
    left: 0.85rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Prompt', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.branch-network-brand-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.branch-network-brand-badge .brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.branch-network-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    background: rgba(230, 176, 48, 0.85);
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.paragon-bg { background: rgba(230, 176, 48, 0.9); }
.nirvana-bg { background: rgba(2, 136, 209, 0.9); }
.fxc-bg { background: rgba(139, 0, 0, 0.9); }

/* Card Body */
.branch-network-body {
    padding: 1.4rem 1.25rem 1.5rem;
}

.branch-network-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.6rem;
}

.branch-network-location {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.branch-network-location a {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.branch-network-location a i,
.branch-network-location i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Contact Info */
.branch-network-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.branch-phone,
.branch-line {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.branch-phone:hover,
.branch-line:hover {
    color: var(--primary-color);
}

.branch-phone i { color: var(--primary-color); font-size: 0.8rem; }
.branch-line i { color: #06c755; font-size: 0.9rem; }

/* Action Buttons */
.branch-network-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-network-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(230, 176, 48, 0.25);
}

.btn-network-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.4);
}

.btn-network-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    background: white;
    color: var(--text-color);
    border: 1.5px solid #e8e0cc;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-network-outline:hover {
    border-color: #06c755;
    color: #06c755;
    background: rgba(6, 199, 85, 0.04);
}

/* Card entrance animation */
@keyframes branchCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-network-card {
    animation: branchCardSlideIn 0.5s ease forwards;
    opacity: 0;
}

.branch-network-card:nth-child(1) { animation-delay: 0.05s; }
.branch-network-card:nth-child(2) { animation-delay: 0.1s; }
.branch-network-card:nth-child(3) { animation-delay: 0.15s; }
.branch-network-card:nth-child(4) { animation-delay: 0.2s; }
.branch-network-card:nth-child(5) { animation-delay: 0.25s; }
.branch-network-card:nth-child(6) { animation-delay: 0.3s; }
.branch-network-card:nth-child(7) { animation-delay: 0.35s; }
.branch-network-card:nth-child(8) { animation-delay: 0.4s; }
.branch-network-card:nth-child(9) { animation-delay: 0.45s; }

/* ============================================
   BRANCHES PAGE
   ============================================ */
.branches-page {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 50%, #f8f9fa 100%);
}

/* Region Filter */
.branch-regions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.region-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--medium-gray);
    background: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-btn i {
    font-size: 1.1rem;
}

.region-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 176, 48, 0.2);
}

.region-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
}

/* Branches Grid */
.branches-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.branch-card-page {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.branch-card-page:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Branch Image */
.branch-image-page {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.branch-image-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.branch-image-page .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.branch-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.branch-badge.premium {
    background: linear-gradient(135deg, #E6B030, #D4941F);
}

.branch-badge.new {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.branch-badge.coming {
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

/* Branch Content */
.branch-content-page {
    padding: 1.5rem;
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.branch-header h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.branch-region-tag {
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(201, 160, 32, 0.1));
    color: var(--primary-dark);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(230, 176, 48, 0.3);
}

.branch-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Branch Info */
.branch-info-page {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.05), rgba(201, 160, 32, 0.05));
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.info-row i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-row a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Branch Facilities */
.branch-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.facility-tag {
    background: rgba(230, 176, 48, 0.1);
    color: var(--text-color);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid rgba(230, 176, 48, 0.2);
}

.facility-tag i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Branch Actions */
.branch-actions-page {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.branch-actions-page .btn {
    flex: 1;
    min-width: 100px;
    justify-content: center;
}

.branch-actions-page .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Branches Features Section */
.branches-features {
    margin-top: 5rem;
    text-align: center;
}

.features-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

@media (max-width: 768px) {
    .branch-network-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .branch-network-image {
        height: 220px;
    }

    .brand-tabs {
        gap: 0.5rem;
    }

    .brand-tab {
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }

    .brand-tab-icon {
        display: none;
    }

    .showcase-title {
        font-size: 1.6rem;
    }

    .branches-grid-page {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .branch-regions {
        gap: 0.75rem;
    }

    .region-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .region-btn span {
        display: none;
    }

    .region-btn.active span {
        display: inline;
    }

    .branch-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .branch-region-tag {
        align-self: flex-start;
    }

    .branch-actions-page {
        flex-direction: column;
    }

    .branch-actions-page .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .branches-features {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .branches-page {
        padding: 2rem 0;
    }

    .branch-image-page {
        height: 180px;
    }

    .branch-content-page {
        padding: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================
   ARTICLES PAGE
   ============================================ */
.articles-page {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Category Filter */
.article-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.article-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--medium-gray);
    background: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-category-btn i {
    font-size: 1.1rem;
}

.article-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 176, 48, 0.2);
}

.article-category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
}

/* Search Box */
.article-search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.article-search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.article-search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.article-search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.2);
}

/* Featured Article */
.featured-article {
    margin-bottom: 4rem;
}

.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

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

.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

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

.featured-article-image {
    position: relative;
    aspect-ratio: 1536 / 488;
    height: auto;
    overflow: hidden;
    background: #f7f7f7;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article-card:hover .featured-article-image img {
    transform: scale(1.03);
}

.featured-article-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.featured-article-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category-tag {
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.15), rgba(201, 160, 32, 0.15));
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(230, 176, 48, 0.3);
}

.article-category-tag.small {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-date-small {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.featured-article-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-article-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(230, 176, 48, 0.1);
    color: var(--text-color);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.tag i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

/* Article Card Link */
.article-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card-link:hover {
    color: inherit;
}

/* Article Image */
.article-image {
    position: relative;
    aspect-ratio: 1536 / 488;
    height: auto;
    overflow: hidden;
    background: #f7f7f7;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-image .image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article-badge.new {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.article-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.article-badge.trending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Article Content */
.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta-small {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* Article Footer */
.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.article-stats i {
    color: var(--primary-color);
}

.article-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.article-link i {
    font-size: 0.85rem;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results-message i {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.no-results-message h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.no-results-message p {
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.newsletter-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s ease;
}

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

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-article-card {
        grid-template-columns: 1fr;
    }

    .featured-article-image {
        aspect-ratio: 1536 / 488;
        height: auto;
    }

    .featured-article-content {
        padding: 2rem;
    }

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

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-categories {
        gap: 0.75rem;
    }

    .article-category-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .articles-page {
        padding: 2rem 0;
    }

    .article-image,
    .featured-article-image {
        aspect-ratio: 1536 / 488;
        height: auto;
    }

    .article-content,
    .featured-article-content {
        padding: 1rem;
    }

    .featured-article-content h2 {
        font-size: 1.25rem;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .article-category-btn span {
        display: none;
    }

    .article-category-btn.active span {
        display: inline;
    }
}

/* ============================================
   ARTICLE DETAIL PAGE
   ============================================ */

/* Loading & Not Found */
.article-loading {
    padding: 6rem 0;
    text-align: center;
}

.article-loading-spinner {
    font-size: 3rem;
    color: var(--primary-color);
}

.article-loading-spinner p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.article-not-found {
    padding: 6rem 0;
}

.not-found-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.not-found-content i {
    font-size: 5rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.not-found-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.not-found-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Article Hero */
.article-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.35) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.article-back-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

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

.article-hero-content .article-category-tag {
    background: rgba(230, 176, 48, 0.25);
    color: #FFD54F;
    border: 1px solid rgba(230, 176, 48, 0.6);
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.article-hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.4), 0 0 40px rgba(0,0,0,0.3);
}

.article-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.meta-item i {
    color: var(--primary-color);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* Article Body Wrapper */
.article-body-wrapper {
    padding: 3rem 0 4rem;
    background: #fafafa;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Article Main */
.article-main {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.article-featured-image {
    margin: -2.5rem -2.5rem 2rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    max-height: 500px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Article Body Content */
.article-body-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.article-body-content .article-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-body-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230,176,48,0.2);
}

.article-body-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 2rem 0 0.75rem;
}

.article-body-content p {
    margin-bottom: 1.25rem;
}

.article-body-content ul,
.article-body-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-body-content strong {
    color: #222;
}

/* Article Table */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
}

.article-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.article-table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
}

.article-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
}

.article-table tbody tr:hover {
    background: rgba(230,176,48,0.05);
}

/* Article Tags Section */
.article-tags-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.article-tags-section h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tag-chip {
    background: rgba(230,176,48,0.1);
    color: #8B6914;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.article-tag-chip i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

/* Article Share */
.article-share {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 12px;
}

.article-share h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Prompt', sans-serif;
}

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

.share-facebook:hover {
    background: #0d6efd;
}

.share-line {
    background: #06c755;
    color: white;
}

.share-line:hover {
    background: #05b34c;
}

.share-copy {
    background: #e9ecef;
    color: #495057;
}

.share-copy:hover {
    background: #dee2e6;
}

/* Article CTA Box */
.article-cta-box {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fffef5 0%, #fff8e1 100%);
    border: 2px solid rgba(230,176,48,0.25);
    border-radius: 16px;
    text-align: center;
}

.cta-box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.article-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.15) transparent;
}

.article-sidebar::-webkit-scrollbar {
    width: 4px;
}

.article-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.article-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.sidebar-card h4 i {
    color: var(--primary-color);
}

/* TOC */
.sidebar-toc nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-toc nav ul li {
    margin-bottom: 0;
}

.sidebar-toc nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    line-height: 1.4;
}

.sidebar-toc nav a:hover,
.sidebar-toc nav a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(230,176,48,0.05);
}

/* Related Articles */
.related-article-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

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

.related-article-item:hover {
    background: rgba(230,176,48,0.03);
}

.related-article-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-info {
    flex: 1;
    min-width: 0;
}

.related-article-cat {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-article-info h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0.25rem 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Article Detail Responsive */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 6rem 0 2.5rem;
        min-height: 300px;
    }

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

    .article-meta-detail {
        gap: 1rem;
    }

    .article-main {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .article-featured-image {
        margin: -1.5rem -1.5rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .article-body-content {
        font-size: 1rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-toc {
        display: none;
    }

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

    .article-table {
        font-size: 0.8rem;
    }

    .article-table th,
    .article-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding: 5rem 0 2rem;
        min-height: 250px;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .article-cta-box {
        padding: 1.5rem;
    }
}

/* ============================================
   BRANCH CTA POPUP - เลือกสาขาแล้วติดต่อ
   ============================================ */

.branch-cta-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.branch-cta-modal.active {
    opacity: 1;
    pointer-events: all;
}

.bcta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bcta-panel {
    position: relative;
    background: white;
    border-radius: 28px;
    max-width: 520px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(230, 176, 48, 0.08);
    z-index: 1;
    animation: bctaSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.branch-cta-modal.closing .bcta-panel {
    animation: bctaSlideDown 0.25s ease forwards;
}

@keyframes bctaSlideUp {
    from { transform: translateY(50px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes bctaSlideDown {
    from { transform: translateY(0) scale(1); opacity: 1; }
    to { transform: translateY(50px) scale(0.96); opacity: 0; }
}

.bcta-panel::-webkit-scrollbar {
    width: 5px;
}

.bcta-panel::-webkit-scrollbar-track {
    background: transparent;
}

.bcta-panel::-webkit-scrollbar-thumb {
    background: rgba(230, 176, 48, 0.25);
    border-radius: 3px;
}

.bcta-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.bcta-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.bcta-body {
    padding: 2rem;
}

/* ===== Header ===== */
.bcta-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bcta-icon-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.1), rgba(230, 176, 48, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.bcta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.bcta-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Branch List ===== */
.bcta-branch-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bcta-brand-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bcta-brand-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bcta-brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bcta-brand-dot.paragon {
    background: #E6B030;
}

.bcta-brand-dot.nirvana {
    background: #0288D1;
}

.bcta-brand-dot.fxc {
    background: #8B0000;
}

.bcta-brand-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
    font-weight: 400;
}

.bcta-branch-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    margin-bottom: 0.4rem;
    font-family: inherit;
}

.bcta-branch-item:hover {
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.04), rgba(230, 176, 48, 0.08));
    border-color: rgba(230, 176, 48, 0.25);
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(230, 176, 48, 0.1);
}

.bcta-branch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bcta-branch-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.bcta-branch-region {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.bcta-branch-region i {
    font-size: 0.7rem;
    margin-right: 0.2rem;
}

.bcta-branch-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    white-space: nowrap;
}

.bcta-branch-badge.premium {
    background: linear-gradient(135deg, #8B0000, #C62828);
}

.bcta-arrow {
    color: var(--text-secondary);
    opacity: 0.3;
    font-size: 0.75rem;
    transition: all 0.25s ease;
}

.bcta-branch-item:hover .bcta-arrow {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(3px);
}

/* ===== Contact View ===== */
.bcta-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-family: inherit;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.bcta-back-btn:hover {
    background: rgba(230, 176, 48, 0.1);
    color: var(--primary-color);
}

.bcta-selected-branch {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.bcta-selected-branch .bcta-brand-dot {
    width: 12px;
    height: 12px;
}

.bcta-selected-branch .bcta-title {
    text-align: left;
    margin-bottom: 0;
}

.bcta-selected-branch .bcta-subtitle {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bcta-selected-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.bcta-selected-badge.premium {
    background: linear-gradient(135deg, #8B0000, #C62828);
}

.bcta-branch-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.bcta-branch-detail span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.bcta-branch-detail i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* ===== Contact Cards ===== */
.bcta-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.bcta-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bcta-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.bcta-contact-card.phone {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.06), rgba(76, 175, 80, 0.12));
    border-color: rgba(76, 175, 80, 0.15);
}

.bcta-contact-card.phone:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.18));
    border-color: rgba(76, 175, 80, 0.3);
}

.bcta-contact-card.line {
    background: linear-gradient(135deg, rgba(0, 185, 0, 0.06), rgba(0, 185, 0, 0.12));
    border-color: rgba(0, 185, 0, 0.15);
}

.bcta-contact-card.line:hover {
    background: linear-gradient(135deg, rgba(0, 185, 0, 0.1), rgba(0, 185, 0, 0.18));
    border-color: rgba(0, 185, 0, 0.3);
}

.bcta-contact-card.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.06), rgba(24, 119, 242, 0.12));
    border-color: rgba(24, 119, 242, 0.15);
}

.bcta-contact-card.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.18));
    border-color: rgba(24, 119, 242, 0.3);
}

.bcta-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bcta-contact-card.phone .bcta-contact-icon {
    background: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
}

.bcta-contact-card.line .bcta-contact-icon {
    background: rgba(0, 185, 0, 0.15);
    color: #00b900;
}

.bcta-contact-card.facebook .bcta-contact-icon {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
}

.bcta-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.bcta-contact-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bcta-contact-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
}

.bcta-contact-arrow {
    color: var(--text-secondary);
    opacity: 0.3;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.bcta-contact-card:hover .bcta-contact-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.bcta-contact-card.phone:hover .bcta-contact-arrow { color: #2e7d32; }
.bcta-contact-card.line:hover .bcta-contact-arrow { color: #00b900; }
.bcta-contact-card.facebook:hover .bcta-contact-arrow { color: #1877f2; }

/* ===== Divider ===== */
.bcta-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
    margin: 1.25rem 0;
}

/* ===== Quick Message ===== */
.bcta-quick-msg {
    text-align: center;
}

.bcta-quick-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.bcta-quick-label i {
    color: var(--primary-color);
}

.bcta-quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.bcta-quick-btn {
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, rgba(230, 176, 48, 0.06), rgba(230, 176, 48, 0.12));
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(230, 176, 48, 0.15);
    transition: all 0.25s ease;
}

.bcta-quick-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(230, 176, 48, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .bcta-panel {
        width: 95%;
        max-height: 88vh;
        border-radius: 22px;
    }

    .bcta-body {
        padding: 1.5rem;
    }

    .bcta-title {
        font-size: 1.25rem;
    }

    .bcta-contact-card {
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 480px) {
    .bcta-panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 22px 22px 0 0;
        position: absolute;
        bottom: 0;
    }

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

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

    .bcta-body {
        padding: 1.25rem 1rem 2rem;
    }

    .bcta-branch-detail {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    .bcta-quick-btns {
        flex-direction: column;
    }

    .bcta-quick-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* ===== 576px Breakpoint (Small Tablets / Large Phones) ===== */
@media (max-width: 576px) {
    /* Container spacing */
    .container {
        padding: 0 1rem;
    }

    /* Section spacing */
    section {
        padding: 2.5rem 0;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Services grid - 2 columns but smaller cards */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .service-card-img {
        height: 180px;
    }

    .service-card-body {
        padding: 1rem;
    }

    .service-card-body h3 {
        font-size: 0.95rem;
    }

    .service-card-body p {
        font-size: 0.8rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-link {
        font-size: 0.8rem;
    }

    /* Reviews filter - scrollable */
    .reviews-filter {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0 0.5rem 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

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

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Reviews grid - 1 column */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Why-us features compact */
    .why-feature-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .why-feature-number {
        font-size: 1.25rem;
        min-width: 30px;
    }

    .why-feature-content h4 {
        font-size: 0.95rem;
    }

    .why-feature-content p {
        font-size: 0.8rem;
    }

    .why-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Promo carousel */
    .promo-carousel-header {
        margin-bottom: 1.5rem;
    }

    .promo-carousel-title {
        font-size: 1.5rem;
    }

    .promo-carousel-subtitle {
        font-size: 0.9rem;
    }

    /* Installment banner compact */
    .promo-installment-banner {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .installment-content {
        gap: 0.75rem;
    }

    .installment-label {
        font-size: 0.8rem;
    }

    .highlight-percent {
        font-size: 1.5rem;
    }

    .highlight-months {
        font-size: 1.1rem;
    }

    .installment-banks {
        font-size: 1.5rem;
        gap: 0.5rem;
    }

    /* Doctors preview - 1 column on small screens */
    .doctors-preview .doctors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Branch cards */
    .branch-network-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .branch-network-image {
        height: 200px;
    }

    .branch-network-body {
        padding: 1rem;
    }

    .branch-network-name {
        font-size: 1rem;
    }

    .branch-network-contact {
        gap: 0.5rem;
    }

    .branch-network-actions {
        gap: 0.4rem;
    }

    .btn-network-primary,
    .btn-network-outline {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Brand tabs - horizontal scroll */
    .brand-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 2rem;
        justify-content: flex-start;
    }

    .brand-tabs::-webkit-scrollbar {
        display: none;
    }

    .brand-tab {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .brand-tab-label {
        font-size: 0.78rem;
    }

    /* Contact section compact */
    .contact-layout {
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem 1rem;
    }

    .form-header h3 {
        font-size: 1.15rem;
    }

    /* Blog / Articles grid */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .article-image {
        aspect-ratio: 1536 / 488;
        height: auto;
    }

    .article-content h3 {
        font-size: 1rem;
    }

    .article-content p {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Buttons - ensure minimum touch target */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer adjustments */
    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }
}

/* ===== 360px Breakpoint (Very small phones) ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-image-wrapper .hero-img {
        max-height: 220px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }

    .hero-stats .stat-item {
        padding: 0.5rem 0.2rem;
    }

    .hero-stats .stat-item h3 {
        font-size: 0.95rem;
    }

    .hero-stats .stat-item p {
        font-size: 0.58rem;
        white-space: nowrap;
    }

    /* Services - single column on very small */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Sections tighter */
    section {
        padding: 1.75rem 0;
    }

    h2 {
        font-size: 1.2rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    /* Promo carousel - 2 images on very small */
    .promo-image-slide {
        width: calc((100% - 1.4rem) / 2) !important;
        margin: 0 0.35rem !important;
    }

    /* Brand tabs - icon only */
    .brand-tab-label {
        display: none;
    }

    .brand-tab {
        padding: 0.5rem 0.75rem;
    }
}

/* ===== Global Mobile Touch & Interaction Improvements ===== */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch devices (performance) */
    .service-card:hover,
    .branch-network-card:hover,
    .article-card:hover,
    .doc-profile-card:hover,
    .review-card-enhanced:hover {
        transform: none !important;
    }

    /* Show overlays permanently on touch */
    .promo-card-overlay {
        opacity: 1;
    }

    /* Ensure all interactive elements are at least 44x44 */
    .filter-btn,
    .brand-tab,
    .category-btn,
    .doc-filter-tab,
    .promo-filter-tab,
    .article-category-btn {
        min-height: 44px;
    }

    /* Smoother scrolling for all scrollable areas */
    .reviews-filter,
    .brand-tabs,
    .services-categories,
    .doc-filter-tabs,
    .article-categories,
    .promo-filter-tabs {
        -webkit-overflow-scrolling: touch;
    }

    /* Remove hover-dependent card elevation */
    .service-card,
    .review-card,
    .article-card,
    .feature-card {
        will-change: auto;
    }
}

/* ===== Fix potential horizontal overflow issues ===== */
@media (max-width: 768px) {
    /* Prevent grids with minmax from causing overflow */
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .reviews-grid-enhanced {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .services-grid-enhanced {
        grid-template-columns: 1fr !important;
    }

    .articles-grid {
        grid-template-columns: 1fr !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* Nav menu accessibility */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure images don't overflow */
    .hero-banner img,
    .slide-image {
        max-width: 100%;
        height: auto;
    }

    /* Better spacing for page headers */
    .page-header {
        padding: 80px 0 40px;
    }

    .page-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .page-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* Doctor grid - wider on tablets */
    .doc-profiles-grid {
        max-width: 520px;
    }

    .doctors-grid {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Bento items - better mobile proportions */
    .bento-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    /* Scrollable filter with gradient mask */
    .reviews-filter-enhanced {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-filter-enhanced::-webkit-scrollbar {
        display: none;
    }

    .filter-btn-enhanced {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* ===== Improved 480px mobile styles ===== */
@media (max-width: 480px) {
    /* Page headers more compact */
    .page-header {
        padding: 70px 0 30px;
    }

    .page-stats {
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-stats .stat,
    .page-stats .stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

    /* Slider nav very compact */
    .slider-btn {
        width: 32px;
        height: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .slider-btn i {
        font-size: 0.8rem;
    }

    .prev-btn {
        left: 0.35rem;
    }

    .next-btn {
        right: 0.35rem;
    }

    /* Slider dots smaller */
    .slider-dots {
        bottom: 0.5rem;
        gap: 0.5rem;
    }

    .slider-dots .dot {
        width: 7px;
        height: 7px;
    }

    .slider-dots .dot.active {
        width: 20px;
    }

    /* Doctor preview cards */
    .doc-photo-area {
        min-height: 280px;
    }

    .doc-photo {
        height: 280px;
    }

    .doc-info-area {
        padding: 1.25rem 1rem;
    }

    /* Branch network compact */
    .branch-network-image {
        height: 180px;
    }

    .branch-network-contact a {
        font-size: 0.82rem;
    }

    .branch-network-location a {
        font-size: 0.82rem;
    }

    /* CTA section compact */
    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    /* Doctor modal - full screen on mobile */
    .doctor-modal .modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 92vh;
    }

    /* Lightbox full-width on mobile */
    .lightbox-container {
        max-width: 100vw;
        border-radius: 8px;
    }

    .lightbox-image {
        max-height: 50vh;
    }

    /* Newsletter compact */
    .newsletter-section {
        padding: 2.5rem 0;
    }

    .newsletter-content h2 {
        font-size: 1.3rem;
    }

    /* Line break removal on mobile for readability */
    .hero-description br,
    .section-description br,
    .page-description br {
        display: none;
    }
}

/* ===== Landscape Phone Orientation ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-image {
        order: 0;
    }

    .hero-image-wrapper {
        height: auto;
        overflow: visible;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .hero-stats .stat-item {
        padding: 0.5rem;
        overflow: visible;
    }

    /* Nav menu as columns in landscape */
    .nav-menu.active {
        max-height: calc(100vh - 60px);
    }

    .page-header {
        padding: 70px 0 30px;
    }
}

/* ===== Safe Area (iPhone notch support) ===== */
@supports (padding: max(0px)) {
    .navbar .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .floating-contact {
        bottom: max(2rem, calc(env(safe-area-inset-bottom) + 0.5rem));
        right: max(2rem, env(safe-area-inset-right));
    }

    @media (max-width: 768px) {
        .floating-contact {
            bottom: max(1rem, calc(env(safe-area-inset-bottom) + 0.5rem));
            right: max(1rem, env(safe-area-inset-right));
        }
    }

    @media (max-width: 480px) {
        .bcta-panel {
            padding-bottom: max(1rem, env(safe-area-inset-bottom));
        }
    }
}

/* ============================================
   3B CAMPAIGN TEASER SECTION (Homepage)
   ============================================ */
.bb-teaser {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    color: white;
}

.bb-teaser-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bb-teaser-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: bbTeaserFloat 10s ease-in-out infinite;
}

.bb-teaser-orb--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #E6B030, transparent 70%);
    top: -80px;
    right: 10%;
}

.bb-teaser-orb--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #60a5fa, transparent 70%);
    bottom: -60px;
    left: 5%;
    animation-delay: -3s;
    animation-direction: reverse;
}

.bb-teaser-orb--3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #a78bfa, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes bbTeaserFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.08); }
}

.bb-teaser-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left Content */
.bb-teaser-left {
    max-width: 520px;
}

.bb-teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230, 176, 48, 0.15);
    border: 1px solid rgba(230, 176, 48, 0.35);
    color: #FFD700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.bb-teaser-badge i {
    animation: bbTeaserSpin 3s linear infinite;
}

@keyframes bbTeaserSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bb-teaser-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.bb-teaser-gold {
    background: linear-gradient(90deg, #E6B030 0%, #FFD700 25%, #FFF8DC 50%, #FFD700 75%, #E6B030 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bbTeaserShimmer 3s ease-in-out infinite;
}

@keyframes bbTeaserShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.bb-teaser-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.bb-teaser-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

/* 3 Pillar Mini Cards */
.bb-teaser-pillars {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bb-teaser-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0.85rem;
    border-radius: 12px;
    flex: 1;
    min-width: 140px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bb-teaser-pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(230, 176, 48, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bb-teaser-pillar-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.bb-teaser-pillar--bio .bb-teaser-pillar-icon {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.bb-teaser-pillar--build .bb-teaser-pillar-icon {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.bb-teaser-pillar--bal .bb-teaser-pillar-icon {
    background: linear-gradient(135deg, #059669, #34d399);
}

.bb-teaser-pillar strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
}

.bb-teaser-pillar span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button */
.bb-teaser-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #E6B030, #C9A020);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(230, 176, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.bb-teaser-cta::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;
}

.bb-teaser-cta:hover::before {
    left: 100%;
}

.bb-teaser-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(230, 176, 48, 0.45);
}

.bb-teaser-cta i {
    transition: transform 0.3s ease;
}

.bb-teaser-cta:hover i {
    transform: translateX(4px);
}

/* Right Visual — Orbital Ring */
.bb-teaser-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bb-teaser-visual {
    position: relative;
    width: 320px;
    height: 320px;
}

.bb-teaser-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(230, 176, 48, 0.15);
}

.bb-teaser-ring--outer {
    width: 320px;
    height: 320px;
    top: 0;
    left: 0;
    animation: bbTeaserOrbit 20s linear infinite;
}

.bb-teaser-ring--middle {
    width: 240px;
    height: 240px;
    top: 40px;
    left: 40px;
    border-color: rgba(255, 255, 255, 0.08);
    animation: bbTeaserOrbit 15s linear infinite reverse;
}

.bb-teaser-ring--inner {
    width: 160px;
    height: 160px;
    top: 80px;
    left: 80px;
    border-color: rgba(230, 176, 48, 0.2);
    animation: bbTeaserOrbit 10s linear infinite;
}

@keyframes bbTeaserOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bb-teaser-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.bb-teaser-center-b {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #E6B030, #FFD700, #FFF8DC, #FFD700, #E6B030);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bbTeaserShimmer 3s ease-in-out infinite;
    line-height: 1;
    filter: drop-shadow(0 2px 10px rgba(230, 176, 48, 0.4));
}

.bb-teaser-center-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Floating Icons */
.bb-teaser-float {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bb-teaser-float--1 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    top: 10px;
    right: 40px;
    animation: bbTeaserIconFloat 4s ease-in-out infinite;
}

.bb-teaser-float--2 {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    bottom: 30px;
    left: 10px;
    animation: bbTeaserIconFloat 5s ease-in-out infinite;
    animation-delay: -1.5s;
}

.bb-teaser-float--3 {
    background: linear-gradient(135deg, #059669, #34d399);
    bottom: 10px;
    right: 20px;
    animation: bbTeaserIconFloat 4.5s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes bbTeaserIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(8deg); }
}

/* ============================================
   3B TEASER — RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .bb-teaser-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .bb-teaser-left {
        max-width: 100%;
    }

    .bb-teaser-pillars {
        justify-content: center;
    }

    .bb-teaser-visual {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }

    .bb-teaser-ring--outer {
        width: 260px;
        height: 260px;
    }

    .bb-teaser-ring--middle {
        width: 195px;
        height: 195px;
        top: 32.5px;
        left: 32.5px;
    }

    .bb-teaser-ring--inner {
        width: 130px;
        height: 130px;
        top: 65px;
        left: 65px;
    }

    .bb-teaser-center-b {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .bb-teaser {
        padding: 3.5rem 0;
    }

    .bb-teaser-title {
        font-size: 1.65rem;
    }

    .bb-teaser-pillars {
        flex-direction: column;
        align-items: center;
    }

    .bb-teaser-pillar {
        width: 100%;
        max-width: 280px;
    }

    .bb-teaser-visual {
        width: 220px;
        height: 220px;
    }

    .bb-teaser-ring--outer {
        width: 220px;
        height: 220px;
    }

    .bb-teaser-ring--middle {
        width: 165px;
        height: 165px;
        top: 27.5px;
        left: 27.5px;
    }

    .bb-teaser-ring--inner {
        width: 110px;
        height: 110px;
        top: 55px;
        left: 55px;
    }

    .bb-teaser-center-b {
        font-size: 2.25rem;
    }

    .bb-teaser-float {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .bb-teaser-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   3B CAMPAIGN BANNER (Services page etc.)
   ============================================ */
.bb-banner {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.bb-banner-link {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(230, 176, 48, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bb-banner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 176, 48, 0.05), transparent);
    transition: left 0.6s ease;
}

.bb-banner-link:hover::before {
    left: 100%;
}

.bb-banner-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 176, 48, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.bb-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.bb-banner-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E6B030, #C9A020);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: white;
    flex-shrink: 0;
}

.bb-banner-icon i {
    animation: bbTeaserSpin 3s linear infinite;
}

.bb-banner-text {
    flex: 1;
}

.bb-banner-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #FFD700;
    background: rgba(230, 176, 48, 0.15);
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    margin-bottom: 0.25rem;
}

.bb-banner-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.bb-banner-sub {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.bb-banner-arrow {
    width: 36px;
    height: 36px;
    background: rgba(230, 176, 48, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bb-banner-link:hover .bb-banner-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .bb-banner-content {
        flex-wrap: wrap;
    }

    .bb-banner-arrow {
        display: none;
    }
}