/* ============================================
   CAKE THE LIGHT MULTAN - PREMIUM STYLES
   ============================================ */

/* CSS Variables / Design Tokens — Grey & Black (Logo Theme) */
:root {
    /* Colors — matching logo grey/silver + black */
    --clr-bg: #f0f0f0;
    --clr-bg-alt: #e4e4e4;
    --clr-surface: #ffffff;
    --clr-surface-hover: #f7f7f7;
    --clr-border: rgba(0, 0, 0, 0.08);
    --clr-border-hover: rgba(0, 0, 0, 0.15);

    --clr-primary: #1a1a1a;
    --clr-primary-light: #333333;
    --clr-primary-dark: #000000;
    --clr-accent: #2a2a2a;
    --clr-accent-glow: rgba(0, 0, 0, 0.15);

    --clr-gold: #1a1a1a;
    --clr-pink: #444444;
    --clr-chocolate: #333333;

    --clr-text: #111111;
    --clr-text-muted: #555555;
    --clr-text-dim: #888888;

    --clr-whatsapp: #25d366;
    --clr-facebook: #1877f2;

    /* Gradients — sleek grey to black */
    --grad-primary: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #000000 100%);
    --grad-hero: linear-gradient(135deg, #d5d5d5 0%, #c0c0c0 40%, #b8b8b8 100%);
    --grad-card: linear-gradient(145deg, rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.8));
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
    --grad-luxury: linear-gradient(135deg, #1a1a1a 0%, #444444 100%);

    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', system-ui, sans-serif;
    --ff-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-padding: 100px 0;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-primary) var(--clr-bg);
}

body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: 3px; }

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(240, 240, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--ease-smooth);
}

.nav-logo:hover .logo-img {
    transform: scale(1.08);
}

.logo-icon {
    font-size: 28px;
    animation: slowBounce 3s infinite ease-in-out;
}

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

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--grad-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Logo Styles */
.hero-logo-wrapper {
    background: #c8c8c8;
}

.hero-logo-img {
    object-fit: contain !important;
    padding: 10px;
    background: #c8c8c8;
}

/* About Section Logo Badge */
.exp-logo-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
}

/* Footer Logo */
.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 1px;
    transition: width 0.3s var(--ease-smooth);
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--grad-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    max-width: 100vw;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.4), transparent);
    top: -10%;
    right: -5%;
    animation: floatShape 15s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(160, 160, 160, 0.3), transparent);
    bottom: -5%;
    left: -10%;
    animation: floatShape 20s infinite ease-in-out reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.25), transparent);
    top: 40%;
    left: 30%;
    animation: floatShape 18s infinite ease-in-out 3s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: var(--ff-script);
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title-line {
    display: block;
    color: var(--clr-text);
}

.hero-title-accent {
    display: block;
    background: var(--grad-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(37, 211, 102, 0.1);
    color: var(--clr-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: var(--clr-whatsapp);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-border);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 4s infinite ease-in-out;
}

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

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    animation: bounceIn 0.6s ease-out 0.8s both;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-price {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-primary);
}

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

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================================
   PRICE BANNER
   ============================================ */
.price-banner {
    padding: 40px 0;
    background: var(--clr-bg-alt);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.price-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--grad-glass);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-smooth);
}

.price-card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.price-card-icon {
    font-size: 2rem;
}

.price-card-label {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-card-value {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-primary);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--ff-script);
    font-size: 1.1rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
    position: relative;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .accent {
    background: var(--grad-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.section-title.left-align {
    text-align: left;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   MENU / CAKE SECTION
   ============================================ */
.menu-section {
    padding: var(--section-padding);
    background: var(--clr-bg);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border: 1px solid var(--clr-border);
    border-radius: 50px;
    background: transparent;
    color: var(--clr-text-muted);
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

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

.filter-tab.active {
    background: var(--grad-primary);
    color: #ffffff;
    border-color: transparent;
}

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

/* Cake Card */
.cake-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.cake-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow-hover);
}

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

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

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

.cake-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.cake-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge-classic {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.badge-premium {
    background: rgba(60, 60, 60, 0.8);
    color: #f0f0f0;
    border: 1px solid rgba(60, 60, 60, 0.3);
}

.badge-luxury {
    background: rgba(26, 26, 26, 0.85);
    color: #f4d03f;
    border: 1px solid rgba(26, 26, 26, 0.3);
}

.cake-card-number {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

.cake-card-body {
    padding: 20px 22px 22px;
}

.cake-card-name {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--clr-text);
}

.cake-card-weight {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    margin-bottom: 14px;
}

.cake-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cake-card-price {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.cake-card-price small {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    font-family: var(--ff-body);
    font-weight: 400;
}

.cake-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--clr-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
}

.cake-order-btn:hover {
    background: var(--clr-whatsapp);
    color: white;
    border-color: var(--clr-whatsapp);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cake-order-btn svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--section-padding);
    background: var(--clr-bg-alt);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.4s var(--ease-smooth);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(26, 26, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.3s var(--ease-bounce);
    z-index: 2;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--clr-bg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--clr-border);
}

.about-img-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--clr-bg);
    box-shadow: var(--shadow-card);
}

.about-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: var(--grad-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-glow);
    animation: slowSpin 20s linear infinite;
}

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

.exp-icon {
    font-size: 1.5rem;
}

.exp-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-text {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-text);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--clr-bg-alt);
}

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

.contact-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-smooth);
}

.contact-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--clr-text);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.contact-wa-btn, .contact-fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
}

.contact-wa-btn {
    background: rgba(37, 211, 102, 0.1);
    color: var(--clr-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-wa-btn:hover {
    background: var(--clr-whatsapp);
    color: white;
}

.contact-fb-btn {
    background: rgba(24, 119, 242, 0.1);
    color: var(--clr-facebook);
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.contact-fb-btn:hover {
    background: var(--clr-facebook);
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0 24px;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-brand p {
    width: 100%;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-left: 38px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    transition: color 0.3s;
}

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

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

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--clr-text-dim);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--clr-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-smooth);
}

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

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 2px solid var(--clr-whatsapp);
    animation: pulse 2s infinite;
}

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

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    transform: scale(0.8);
    transition: transform 0.4s var(--ease-smooth);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-aos="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 60px;
        gap: 40px;
    }

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

    .hero-desc {
        max-width: 100%;
    }

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

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

    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }

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

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title.left-align {
        text-align: center;
    }

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

    .about-content .section-badge {
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(240, 240, 240, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
        z-index: 100;
    }

    .nav-links.open {
        transform: translateX(0);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

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

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

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand p {
        margin-left: 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image-wrapper {
        width: 240px;
        height: 240px;
    }

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

    .filter-tabs {
        gap: 6px;
    }

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

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

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

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

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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