/* ============================================
   SweetCrush - Premium Cake Boutique Stylesheet
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
    --lavender: #E8DFF5;
    --blush: #F8D7DA;
    --cream: #FFF8F0;
    --gold: #E8B4B8;
    --gold-light: #F0D0D4;
    --gold-dark: #C9949A;
    --charcoal: #333333;
    --charcoal-light: #555555;
    --white: #FFFFFF;
    --bg-primary: #FFF8F0;
    --bg-secondary: #FDF6F9;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: rgba(212, 175, 55, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.12);
    --br-sm: 8px;
    --br-md: 16px;
    --br-lg: 24px;
    --br-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --glass-blur: blur(20px);
    --section-padding: 100px 0;
}

/* ---------- Dark Mode ---------- */
[data-bs-theme="dark"] {
    --cream: #1a1a2e;
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --text-primary: #e8e8e8;
    --text-secondary: #bbbbbb;
    --text-muted: #888888;
    --charcoal: #e8e8e8;
    --charcoal-light: #cccccc;
    --border-color: rgba(212, 175, 55, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.6);
    --glass-bg: rgba(26, 26, 46, 0.8);
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .navbar {
    background: rgba(22, 33, 62, 0.9) !important;
}

[data-bs-theme="dark"] .footer {
    background: #0f0f23;
}

[data-bs-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(26, 26, 46, 0.9) 100%);
}

[data-bs-theme="dark"] .order-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
}

[data-bs-theme="dark"] .reviews-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

[data-bs-theme="dark"] .about-feature-item {
    background: rgba(255, 255, 255, 0.03);
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    color: #e8e8e8;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: #888;
}

[data-bs-theme="dark"] .collection-section {
    background: #16213e;
}

[data-bs-theme="dark"] .cake-card {
    background: rgba(26, 26, 46, 0.9);
    border-color: rgba(232, 180, 184, 0.1);
}

[data-bs-theme="dark"] .cake-card:hover {
    border-color: var(--gold);
}

[data-bs-theme="dark"] .cake-card-body {
    color: #e8e8e8;
}

[data-bs-theme="dark"] .cake-card-body h4 {
    color: #e8e8e8;
}

[data-bs-theme="dark"] .cake-card-footer {
    border-color: rgba(232, 180, 184, 0.15);
}

[data-bs-theme="dark"] .filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 180, 184, 0.15);
    color: #ccc;
}

[data-bs-theme="dark"] .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

[data-bs-theme="dark"] .faq-section {
    background: #16213e;
}

[data-bs-theme="dark"] .custom-accordion .accordion-item {
    background: rgba(26, 26, 46, 0.9);
    border-color: rgba(232, 180, 184, 0.15);
}

[data-bs-theme="dark"] .custom-accordion .accordion-button {
    background: transparent;
    color: #e8e8e8;
}

[data-bs-theme="dark"] .custom-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: rgba(232, 180, 184, 0.06);
}

[data-bs-theme="dark"] .custom-accordion .accordion-body {
    color: #bbb;
}

[data-bs-theme="dark"] .gallery-item::before {
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s ease, color 0.4s ease;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

/* ---------- Typography ---------- */
.section-tagline {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 3rem;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-cake {
    font-size: 4rem;
    color: var(--gold);
    animation: preloaderBounce 1s ease-in-out infinite;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: contain;
}

.preloader-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

@keyframes preloaderBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* ---------- WhatsApp Float Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
}

/* ---------- Dark Mode Toggle ---------- */
.dark-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

[data-bs-theme="dark"] .dark-toggle {
    background: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .dark-toggle .fa-moon::before {
    content: '\f185';
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

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

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

/* ---------- Navbar ---------- */
.navbar {
    padding: 15px 0;
    transition: var(--transition-slow);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

[data-bs-theme="dark"] .navbar.scrolled {
    background: rgba(22, 33, 62, 0.92) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
}

.navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(0deg) scale(1.05);
}

.navbar-brand .brand-text {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.85) 0%, rgba(248, 215, 218, 0.8) 40%, rgba(255, 248, 240, 0.88) 70%, rgba(232, 223, 245, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) translateX(0) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-100vh) translateX(100px) scale(1.5); }
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
}

.hero-title .title-line:first-child {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title .title-line.accent {
    color: var(--gold-dark);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: #fff;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.hero-btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.hero-btn-secondary:hover {
    background: var(--charcoal);
    color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.3s;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Cake Display */
.hero-cake-col {
    display: none;
}

@media (min-width: 992px) {
    .hero-cake-col {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-cake-col[data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

.hero-cake-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 380px;
    margin: 0 auto;
}

/* Orbit Rings */
.hero-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(212, 175, 55, 0.35);
    pointer-events: none;
}

.hero-orbit-ring.ring-1 {
    width: 380px;
    height: 380px;
    top: calc(50% - 190px);
    left: calc(50% - 190px);
    animation: orbitSpin 20s linear infinite;
    border-color: rgba(212, 175, 55, 0.35);
}

.hero-orbit-ring.ring-2 {
    width: 340px;
    height: 340px;
    top: calc(50% - 170px);
    left: calc(50% - 170px);
    animation: orbitSpin 15s linear infinite reverse;
    border-color: rgba(212, 175, 55, 0.25);
    border-style: dotted;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-cake-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 6s ease-in-out infinite;
    box-shadow: 0 0 0 20px rgba(232, 223, 245, 0.3), 0 0 0 40px rgba(232, 223, 245, 0.1), var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.hero-cake-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.hero-cake-circle-inner {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f5e6f0, #fce4ec, #fff8f0);
}

.hero-cake-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.hero-cake-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(212, 175, 55, 0.3);
    z-index: 1;
}

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

/* Floating Badge */
.hero-floating-badge {
    position: absolute;
    top: 5%;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5;
}

.hero-floating-badge span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

/* Floating Price Badge */
.hero-floating-price {
    position: absolute;
    bottom: 8%;
    left: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-radius: 16px;
    padding: 10px 18px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
    animation: floatPrice 4.5s ease-in-out infinite 0.5s;
    z-index: 5;
}

.hfp-from {
    display: block;
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hfp-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes floatPrice {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
}

/* Accent Dots */
.hero-accent-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    pointer-events: none;
}

.hero-accent-dot.dot-1 {
    width: 10px;
    height: 10px;
    top: 15%;
    left: 8%;
    animation: dotFloat 3s ease-in-out infinite;
}

.hero-accent-dot.dot-2 {
    width: 6px;
    height: 6px;
    bottom: 25%;
    right: 5%;
    animation: dotFloat 2.5s ease-in-out infinite 0.7s;
    background: var(--lavender);
}

.hero-accent-dot.dot-3 {
    width: 8px;
    height: 8px;
    top: 50%;
    right: 10%;
    animation: dotFloat 4s ease-in-out infinite 1.2s;
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.4); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.5s;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { height: 10px; opacity: 0.3; }
    50% { height: 40px; opacity: 1; }
}

/* ---------- About Section ---------- */
.about-section {
    background: var(--bg-primary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    max-width: 450px;
}

.about-image-main {
    border-radius: var(--br-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--br-lg);
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.about-experience-badge .exp-years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px 22px;
    background: var(--white);
    border-radius: var(--br-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

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

.about-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
}

.af-icon-wrap {
    position: relative;
    margin-bottom: 16px;
}

.af-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 22px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.about-feature-item:hover .af-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.af-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 2px dashed var(--gold);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.about-feature-item:hover .af-icon-wrap::after {
    opacity: 0.3;
    transform: scale(1);
}

.about-feature-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--charcoal);
    word-break: break-word;
    transition: color 0.3s ease;
}

.about-feature-item:hover h5 {
    color: var(--gold-dark);
}

.about-feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

/* ---------- Buttons ---------- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline-primary {
    border: 2px solid var(--gold);
    color: var(--gold-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    border: none;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.5);
    color: #fff;
}

/* ---------- Glass Card ---------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--br-lg);
    box-shadow: var(--glass-shadow);
    padding: 28px;
}

/* ---------- Cake Collection ---------- */
.collection-section {
    background: var(--bg-secondary);
    position: relative;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: var(--white);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.cake-card {
    background: var(--white);
    border-radius: var(--br-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.cake-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.cake-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.cake-card:hover .cake-card-img img {
    transform: scale(1.08);
}

.cake-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.cake-card:hover .cake-card-overlay {
    opacity: 1;
}

.cake-quick-view {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(10px);
}

.cake-card:hover .cake-quick-view {
    transform: translateY(0);
}

.cake-quick-view:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.cake-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.cake-card-body {
    padding: 18px;
}

.cake-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.cake-card-body .cake-category {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.cake-card-body .cake-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.cake-card-body .cake-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 3px;
}

.cake-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid var(--border-color);
}

.cake-rating {
    color: var(--gold);
    font-size: 0.85rem;
}

.cake-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 4px;
}

.cake-order-btn {
    padding: 7px 18px;
    border-radius: 50px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cake-order-btn:hover {
    background: var(--gold);
    color: #fff;
}

/* Quick View Modal */
#quickViewModal .modal-content {
    border: none;
    background: var(--white);
    border-radius: var(--br-xl);
}

#quickViewModal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.quick-view-image {
    width: 100%;
    border-radius: var(--br-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.quick-view-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.quick-view-details h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.quick-view-details .cake-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* ---------- Flavours Section ---------- */
.flavours-section {
    background: var(--bg-primary);
}

.flavour-card {
    padding: 0 !important;
    overflow: hidden;
    border-radius: var(--br-xl) !important;
    transition: var(--transition);
    height: 100%;
}

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

.flavour-header {
    padding: 22px 24px 18px;
    text-align: center;
    position: relative;
}

.flavour-header i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.flavour-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.flavour-header.basic {
    background: linear-gradient(135deg, var(--lavender), #f0e6fa);
    color: var(--charcoal);
}

.flavour-header.basic i {
    color: var(--gold-dark);
}

.flavour-header.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
}

.flavour-header.premium i {
    color: rgba(255, 255, 255, 0.9);
}

.flavour-header.special {
    background: linear-gradient(135deg, #333, #1a1a1a);
    color: #fff;
}

.flavour-header.special i {
    color: var(--gold);
}

.flavour-list {
    list-style: none;
    padding: 16px 24px 20px;
    margin: 0;
}

.flavour-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-primary);
    display: block;
}

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

.flavour-list li::before {
    content: '•';
    color: var(--gold-dark);
    font-weight: bold;
    margin-right: 8px;
}

/* Pricing inside each card */
.flavour-pricing {
    display: flex;
    gap: 8px;
    padding: 12px 24px 20px;
    flex-wrap: wrap;
}

.flavour-pricing .fp-item {
    flex: 1;
    min-width: 70px;
    background: rgba(232, 180, 184, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--br-md);
    padding: 10px 8px;
    text-align: center;
    transition: var(--transition);
}

.fp-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 180, 184, 0.3);
}

.fp-size {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.fp-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
}

[data-bs-theme="dark"] .fp-item {
    background: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .fp-price {
    color: var(--gold);
}

[data-bs-theme="dark"] .flavour-header.basic {
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.2), rgba(240, 230, 250, 0.1));
}

[data-bs-theme="dark"] .flavour-header.special {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

/* ---------- Order Section ---------- */
.order-section {
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.4) 0%, rgba(248, 215, 218, 0.35) 50%, rgba(255, 248, 240, 0.4) 100%);
    position: relative;
}

.order-form,
.pricing-panel {
    border-radius: var(--br-xl);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.required {
    color: #e74c3c;
}

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 14px;
    z-index: 3;
    pointer-events: none;
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    padding-left: 42px;
}

.form-control,
.form-select {
    border-radius: var(--br-md);
    border: 1.5px solid var(--border-color);
    padding: 12px 16px;
    font-size: 0.93rem;
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

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

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 2px dashed var(--border-color);
    border-radius: var(--br-md);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.file-upload-label i {
    font-size: 20px;
    color: var(--gold);
}

/* Pricing Panel */
.pricing-panel {
    position: sticky;
    top: 100px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.93rem;
    color: var(--text-secondary);
}

.price-value {
    font-weight: 600;
    color: var(--text-primary);
}

.price-value.total {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--gold-dark);
    font-weight: 700;
}

.pricing-note {
    background: rgba(212, 175, 55, 0.08);
    padding: 12px 14px;
    border-radius: var(--br-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.order-benefits {
    background: var(--white);
    border-radius: var(--br-lg);
    padding: 20px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.benefit-item i {
    color: #27ae60;
    font-size: 16px;
}

/* ---------- Why Choose Section ---------- */
.why-section {
    background: var(--bg-secondary);
}

.why-card {
    text-align: center;
    padding: 32px 22px;
    border-radius: var(--br-xl);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ---------- Reviews Section ---------- */
.reviews-section {
    background: linear-gradient(135deg, rgba(232, 223, 245, 0.5) 0%, rgba(248, 215, 218, 0.4) 100%);
}

.reviews-swiper {
    padding: 20px 10px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    border-radius: var(--br-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.review-card .review-stars {
    margin-bottom: 15px;
}

.review-card .review-stars i {
    color: var(--gold);
    font-size: 16px;
    margin: 0 1px;
}

.review-card .review-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 60px;
}

.review-card .reviewer-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 10px;
}

.review-card .reviewer-name {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1rem;
}

.review-card .reviewer-occasion {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
}

.swiper-pagination-bullet {
    background: var(--gold) !important;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ---------- Instagram Section ---------- */
.instagram-section {
    background: var(--bg-primary);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.instagram-item {
    position: relative;
    border-radius: var(--br-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(131, 58, 180, 0.4));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.instagram-item:hover::before {
    opacity: 1;
}

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

.instagram-item-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 28px;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .instagram-item-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- FAQ Section ---------- */
.faq-section {
    background: var(--bg-secondary);
}

.custom-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--br-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    background: transparent;
    padding: 18px 22px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.04);
}

.custom-accordion .accordion-button::after {
    background-size: 16px;
}

.custom-accordion .accordion-body {
    padding: 0 22px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Contact Section ---------- */
/* ---------- Contact Section (Premium Redesign) ---------- */
.contact-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 215, 218, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .contact-section::after {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }
}

.contact-bg-decor {
    position: absolute;
    top: -150px;
    right: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* --- Contact Sidebar Cards --- */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--br-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
    opacity: 0;
}

.contact-card-premium:hover::before {
    opacity: 1;
}

.contact-card-premium:nth-child(1)::before { background: #25D366; }
.contact-card-premium:nth-child(2)::before { background: var(--gold); }
.contact-card-premium:nth-child(3)::before { background: #EA4335; }

.contact-card-premium:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.ccp-icon-wrap {
    flex-shrink: 0;
}

.ccp-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: var(--transition);
}

.ccp-icon.whatsapp-bg { background: linear-gradient(135deg, #25D366, #128C7E); }
.ccp-icon.call-bg { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.ccp-icon.email-bg { background: linear-gradient(135deg, #EA4335, #BB001B); }

.contact-card-premium:hover .ccp-icon {
    transform: scale(1.08) rotate(-3deg);
}

.ccp-body {
    flex: 1;
    min-width: 0;
}

.ccp-body h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 2px;
    color: var(--charcoal);
}

.ccp-body p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ccp-number {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2px;
}

.ccp-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--transition);
    text-decoration: none;
}

.ccp-arrow:hover {
    background: var(--gold);
    color: #fff;
}

/* Contact Social Row */
.contact-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--br-lg);
    border: 1px solid var(--border-color);
    margin-top: 4px;
}

.csr-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.csr-icons {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.csr-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.csr-icons a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.csr-icons a:nth-child(1):hover { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.csr-icons a:nth-child(2):hover { background: #25D366; }

/* --- Contact Form Panel --- */
.contact-form-panel {
    background: var(--white);
    border-radius: var(--br-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-form-premium {
    padding: 36px;
}

.cfp-header {
    margin-bottom: 28px;
}

.cfp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.cfp-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 6px;
}

.cfp-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Floating Label Fields */
.cfp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.cfp-field {
    position: relative;
}

.cfp-field-full {
    margin-bottom: 18px;
}

.cfp-input {
    width: 100%;
    padding: 16px 14px 8px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.93rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: #fafafa;
    transition: var(--transition);
    outline: none;
}

.cfp-input:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
}

.cfp-input:focus ~ .cfp-label,
.cfp-input:not(:placeholder-shown) ~ .cfp-label {
    top: 6px;
    font-size: 0.7rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cfp-label {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 0.88rem;
    color: #aaa;
    pointer-events: none;
    transition: all 0.25s ease;
    font-weight: 400;
}

.cfp-label-static {
    top: 6px !important;
    font-size: 0.7rem !important;
    color: var(--gold-dark) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

.cfp-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-top: 22px;
    padding-bottom: 8px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    min-height: 52px;
}

.cfp-select option[disabled] {
    color: #999;
}

.cfp-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
    line-height: 1.6;
}

/* Captcha Inline */
.cfp-row-captcha {
    margin-bottom: 22px;
    grid-template-columns: 1fr;
}

.captcha-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fafafa;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px 16px;
}

.captcha-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 14px;
    flex-shrink: 0;
}

.captcha-question {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

.captcha-equals {
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
}

.captcha-answer {
    width: 70px;
    padding: 8px 10px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 600;
    text-align: center;
    color: var(--charcoal);
    background: #fff;
    outline: none;
    transition: var(--transition);
    -moz-appearance: textfield;
}

.captcha-answer::-webkit-outer-spin-button,
.captcha-answer::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-answer:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

/* Captcha Refresh Button */
.captcha-refresh {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1.5px solid var(--border-color);
    background: #fff;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: auto;
    padding: 0;
}

.captcha-refresh:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.06);
    transform: rotate(60deg);
}

[data-bs-theme="dark"] .captcha-refresh {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

[data-bs-theme="dark"] .captcha-refresh:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Submit Button */
.cfp-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.3px;
}

.cfp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.45);
}

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

.cfp-submit-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.cfp-submit:hover .cfp-submit-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

/* --- Map --- */
.map-wrapper {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    border-radius: var(--br-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.map-header i {
    font-size: 16px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-sidebar {
        order: 2;
    }

    .contact-form-panel {
        order: 1;
    }

    .contact-form-premium {
        padding: 24px;
    }

    .contact-card-premium {
        padding: 16px 18px;
        gap: 12px;
    }

    .ccp-body h5 {
        font-size: 0.9rem;
    }

    .ccp-body p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .contact-bg-decor {
        width: 300px;
        height: 300px;
        right: -120px;
        top: -80px;
    }

    .about-section::before {
        width: 250px;
        height: 250px;
        right: -60px;
    }

    .cfp-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .contact-form-premium {
        padding: 20px;
    }

    .cfp-header {
        margin-bottom: 22px;
    }

    .cfp-header h3 {
        font-size: 1.25rem;
    }

    .cfp-header p {
        font-size: 0.82rem;
    }

    .captcha-inline {
        flex-wrap: nowrap;
        gap: 6px;
        padding: 10px 12px;
    }

    .captcha-question {
        font-size: 0.85rem;
    }

    .captcha-answer {
        width: 60px;
        padding: 8px;
        font-size: 0.85rem;
    }

    .cfp-submit {
        padding: 14px 24px;
        font-size: 0.93rem;
    }

    .cfp-input {
        padding: 14px 12px 7px;
        font-size: 0.88rem;
    }

    .cfp-label {
        left: 12px;
        font-size: 0.82rem;
    }

    .cfp-textarea {
        min-height: 100px;
    }

    .contact-social-row {
        padding: 14px 16px;
        gap: 10px;
    }

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

    .map-header {
        padding: 12px 18px;
        font-size: 0.82rem;
    }
}

@media (max-width: 576px) {
    .contact-bg-decor {
        width: 200px;
        height: 200px;
        right: -80px;
        top: -50px;
    }

    .about-section::before {
        width: 150px;
        height: 150px;
        right: -40px;
    }

    .contact-card-premium {
        padding: 14px;
        gap: 10px;
    }

    .ccp-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 12px;
    }

    .ccp-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .ccp-body h5 {
        font-size: 0.85rem;
    }

    .ccp-number {
        font-size: 0.78rem;
    }

    .contact-form-premium {
        padding: 16px;
    }

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

    .cfp-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .cfp-input {
        padding: 12px 10px 6px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .cfp-label {
        left: 10px;
        top: 11px;
        font-size: 0.78rem;
    }

    .cfp-input:focus ~ .cfp-label,
    .cfp-input:not(:placeholder-shown) ~ .cfp-label {
        top: 4px;
        font-size: 0.65rem;
    }

    .cfp-submit {
        padding: 13px 20px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .cfp-submit-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .captcha-inline {
        padding: 8px 10px;
        gap: 4px;
        border-radius: 10px;
    }

    .captcha-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .captcha-question {
        font-size: 0.8rem;
    }

    .captcha-answer {
        width: 50px;
        padding: 6px;
        font-size: 0.8rem;
    }

    .captcha-refresh {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .contact-sidebar {
        gap: 8px;
    }

    .contact-social-row {
        padding: 12px 14px;
    }

    .csr-icons a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .map-wrapper {
        margin-top: 30px;
    }

    .map-header {
        padding: 10px 14px;
        font-size: 0.78rem;
    }
}

/* Dark mode adjustments for new contact */
[data-bs-theme="dark"] .contact-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
}

[data-bs-theme="dark"] .contact-card-premium:hover {
    background: rgba(212, 175, 55, 0.06);
}

[data-bs-theme="dark"] .contact-social-row {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
}

[data-bs-theme="dark"] .contact-form-panel {
    background: rgba(26, 26, 46, 0.9);
    border-color: rgba(212, 175, 55, 0.2);
}

[data-bs-theme="dark"] .cfp-input {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.15);
    color: #e8e8e8;
}

[data-bs-theme="dark"] .cfp-input:focus {
    background: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .captcha-inline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.15);
}

[data-bs-theme="dark"] .captcha-answer {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.15);
    color: #e8e8e8;
}

[data-bs-theme="dark"] .cfp-label {
    color: #777;
}

[data-bs-theme="dark"] .cfp-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23777' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] .cfp-select option {
    color: #e8e8e8;
    background: #1a1a2e;
}

[data-bs-theme="dark"] .csr-icons a {
    border-color: rgba(255, 255, 255, 0.15);
    color: #aaa;
}

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, #222 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.footer-brand .brand-text {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: #fff;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    padding-left: 0;
}

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

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

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

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 14px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom i {
    color: #e74c3c;
    margin: 0 3px;
    animation: heartBeat 1.5s ease-in-out infinite;
}

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

/* ---------- Toast ---------- */
.toast-custom {
    background: var(--white);
    border-radius: var(--br-md);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    :root {
        --section-padding: 70px 0;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-cake-display {
        max-width: 320px;
    }

    .hero-cake-circle {
        width: 250px;
        height: 250px;
    }

    .hero-cake-circle-inner {
        width: 200px;
        height: 200px;
    }

    .hero-orbit-ring.ring-1 {
        width: 300px;
        height: 300px;
        top: calc(50% - 150px);
        left: calc(50% - 150px);
    }

    .hero-orbit-ring.ring-2 {
        width: 270px;
        height: 270px;
        top: calc(50% - 135px);
        left: calc(50% - 135px);
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-panel {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

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

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cake-display {
        display: none;
    }

    .about-image-wrapper {
        margin: 0 auto 30px;
    }

    .about-experience-badge {
        left: 0;
        top: 10px;
        padding: 12px 16px;
    }

    .about-experience-badge .exp-years {
        font-size: 1.5rem;
    }

    .about-image-badge {
        right: 0;
        bottom: -10px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cake-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .category-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

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

    .dark-toggle {
        bottom: 85px;
        right: 20px;
    }

    .back-to-top {
        bottom: 150px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .navbar-brand .brand-text {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

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

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

    .review-card {
        padding: 20px;
    }

    .footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-contact li {
        justify-content: center;
    }

    .glass-card {
        padding: 20px;
    }

}

/* ---------- Utility Animations ---------- */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease;
    background: linear-gradient(110deg, #f0f0f0 30%, #fafafa 50%, #f0f0f0 70%);
    background-size: 200% 100%;
    animation: imgShimmer 1.8s ease-in-out infinite;
}

img[loading="lazy"].loaded {
    opacity: 1;
    animation: none;
    background: transparent;
}

@keyframes imgShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Hero image - no lazy load, but fade in */
.hero-bg-img {
    animation: heroImgReveal 1.2s ease forwards;
}

@keyframes heroImgReveal {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

/* Skeleton placeholder for dynamic images */
.image-skeleton {
    background: linear-gradient(110deg, #f0f0f0 30%, #fafafa 50%, #f0f0f0 70%);
    background-size: 200% 100%;
    animation: imgShimmer 1.8s ease-in-out infinite;
    border-radius: var(--br-lg);
}

[data-bs-theme="dark"] img[loading="lazy"] {
    background: linear-gradient(110deg, #1a1a2e 30%, #222240 50%, #1a1a2e 70%);
    background-size: 200% 100%;
}

[data-bs-theme="dark"] .image-skeleton {
    background: linear-gradient(110deg, #1a1a2e 30%, #222240 50%, #1a1a2e 70%);
    background-size: 200% 100%;
}

[data-bs-theme="dark"] img[loading="lazy"].loaded {
    background: transparent;
}

/* Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--charcoal);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Hide honeypot fields */
.d-none {
    display: none !important;
}
