* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #120904;
    --primary-brown: #251208;
    --secondary-brown: #33190b;
    --gold: #cca43b;
    --gold-light: #e5b84c;
    --gold-dark: #b28c2e;
    --cream: #faf5ef;
    --cream-bg: #f5ebe0;
    --light-bg: #fdfbf7;
    --text-dark: #231f1d;
    --text-muted: #6e6560;

    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;

    --card-shadow: 0 10px 30px rgba(18, 9, 4, 0.04);
    --card-shadow-hover: 0 20px 40px rgba(18, 9, 4, 0.1);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--light-bg);
    letter-spacing: 0.1px;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(204, 164, 59, 0.3);
    border-radius: 5px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

header {
    background: rgba(18, 9, 4, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(204, 164, 59, 0.25);
    transition: var(--transition-smooth);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.header-logo:hover img {
    transform: scale(1.05) rotate(3deg);
}

.logo-text-section {
    color: var(--cream);
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--cream);
    margin-top: -2px;
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    transition: var(--transition-smooth);
    position: relative;
    text-transform: uppercase;
    opacity: 0.85;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

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

nav a:hover,
nav a.active {
    color: var(--gold);
    opacity: 1;
}

.contact-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(204, 164, 59, 0.25);
    border: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 164, 59, 0.35);
}

.contact-btn::after {
    display: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 50%, var(--secondary-brown) 100%);
    color: var(--cream);
    padding: 7rem 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: top;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(204, 164, 59, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--gold);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero .since-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(204, 164, 59, 0.12);
    border: 1px solid rgba(204, 164, 59, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero .description {
    font-size: 1.05rem;
    color: rgba(250, 245, 239, 0.85);
    margin-bottom: 2.8rem;
    line-height: 1.8;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(204, 164, 59, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(204, 164, 59, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(204, 164, 59, 0.5);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 164, 59, 0.25);
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(204, 164, 59, 0.15);
}

section.light {
    background: white;
    border-top: 1px solid rgba(204, 164, 59, 0.08);
    border-bottom: 1px solid rgba(204, 164, 59, 0.08);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--gold);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(204, 164, 59, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Category Grid on Homepage */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(204, 164, 59, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.category-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(204, 164, 59, 0.06);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotateY(180deg);
}

.category-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.category-link:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

/* Product Section on Products Page */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(204, 164, 59, 0.3);
    background: transparent;
    color: var(--primary-dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(204, 164, 59, 0.3);
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(204, 164, 59, 0.15), var(--card-shadow-hover);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    padding: 2.2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(204, 164, 59, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(204, 164, 59, 0.12);
    color: var(--gold-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(204, 164, 59, 0.05);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-spec {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
}

.product-spec span {
    display: block;
    margin-bottom: 0.3rem;
}

.product-spec strong {
    color: var(--primary-dark);
}

.product-card-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(204, 164, 59, 0.15);
    transition: var(--transition-smooth);
}

.product-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 164, 59, 0.25);
}

/* Delivery Section */
.delivery-section {
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.08) 0%, rgba(204, 164, 59, 0.03) 100%);
    border: 1px solid rgba(204, 164, 59, 0.2);
    padding: 4rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
    text-align: center;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.region-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--gold);
}

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

.region-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.region-card h4 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--gold);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(204, 164, 59, 0.15);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

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

.testimonial-text {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-author {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--gold-dark);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* About Screen Styles */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow-hover);
    border: 1px solid rgba(204, 164, 59, 0.15);
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Timeline Layout */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0 2rem 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    height: 100%;
    width: 4px;
    background: rgba(204, 164, 59, 0.25);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    text-align: right;
    padding: 0.5rem 1.5rem 0 0;
    white-space: nowrap;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(204, 164, 59, 0.08);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--gold);
}

.timeline-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline checkpoint node */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 132px;
    top: 15px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--gold);
    transition: var(--transition-smooth);
    z-index: 2;
}

.timeline-item:hover::after {
    background: var(--gold);
    transform: scale(1.2);
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(204, 164, 59, 0.08);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 9, 4, 0.8) 0%, rgba(18, 9, 4, 0.2) 70%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

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

.gallery-overlay h4 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.gallery-icon-zoom {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(254, 254, 254, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-icon-zoom {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 9, 4, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 950px;
    width: 100%;
    background: var(--light-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(18, 9, 4, 0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.lightbox-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.lightbox-img-wrapper {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 550px;
}

.lightbox-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.lightbox-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.lightbox-details p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Contact Screen */
.success-banner {
    background: #e6f7ed;
    border: 1px solid #b7ebc6;
    color: #1f6b3e;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: fadeInUp 0.5s ease;
}

.success-banner i {
    font-size: 1.5rem;
}

.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: var(--border-radius-md);
    max-width: 750px;
    margin: 0 auto;
    box-shadow: var(--card-shadow-hover);
    border: 1px solid rgba(204, 164, 59, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(204, 164, 59, 0.12);
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.contact-item {
    text-align: center;
    background: white;
    padding: 3rem 2.2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(204, 164, 59, 0.08);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--gold);
}

.contact-item i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(204, 164, 59, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Screen Accordion */
.faq-section {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.2rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(204, 164, 59, 0.08);
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.8rem 2.2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.faq-item:hover .faq-question {
    background: rgba(204, 164, 59, 0.03);
    border-left-color: var(--gold);
}

.faq-question h4 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.05rem;
}

.faq-toggle {
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--card-shadow-hover);
}

.faq-item.active .faq-question {
    border-left-color: var(--gold);
    background: rgba(204, 164, 59, 0.03);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 2.2rem 2rem 2.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Section */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 50%, var(--secondary-brown) 100%);
    color: var(--cream);
    padding: 6rem 4rem 2rem;
    margin-top: 6rem;
    border-top: 3px solid var(--gold);
    max-width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(250, 245, 239, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(250, 245, 239, 0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(254, 254, 254, 0.08);
    border-radius: 8px;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
    color: var(--cream);
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 245, 239, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: rgba(250, 245, 239, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Sweets Showcase - Explosion Section */
.sweets-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
    padding: 6rem 4rem;
}

.sweets-title {
    font-size: 3.2rem;
    text-align: center;
    z-index: 5;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    position: relative;
    /* Start hidden, slide up on reveal */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sweets-showcase.show .sweets-title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s ease 0.6s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.sweets-title::after {
    display: none;
}

.sweets-showcase .section-subtitle {
    z-index: 5;
    position: relative;
    /* Start hidden, delayed slightly after the title */
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 0.9s ease 0.6s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.sweets-showcase.show .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.sweets-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sweet-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    left: 50%;
    top: 50%;
    /* All icons start at center, collapsed — centering via left/top + margin */
    transform: scale(0) rotate(0deg);
    opacity: 0;
    /* Spring bounce easing for explosion pop */
    transition:
        transform 0.85s cubic-bezier(0.2, 1.5, 0.4, 1),
        opacity 0.35s ease;
    pointer-events: auto;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    will-change: transform, opacity;
    background: linear-gradient(135deg, #f5e6d3, #d4af37);
    /* Ensure center offset is baked in by JS translate, not CSS */
    margin-left: -30px;
    margin-top: -30px;
}

/* When JS fires, it sets transform directly via style — no .show class needed for the core pop */
.sweets-showcase.show .sweet-icon {
    /* Opacity is handled by JS setTimeout, but keep this as fallback */
}

.sweet-icon:hover {
    transform: translate(var(--x), var(--y)) scale(calc(var(--s) * 1.18)) rotate(var(--r)) !important;
    z-index: 10;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease !important;
}

@keyframes sweetFloat {

    0%,
    100% {
        transform: translate(var(--x), var(--y)) scale(var(--s)) rotate(var(--r));
    }

    33% {
        transform: translate(calc(var(--x) + 6px), calc(var(--y) - 12px)) scale(var(--s)) rotate(calc(var(--r) + 4deg));
    }

    66% {
        transform: translate(calc(var(--x) - 5px), calc(var(--y) - 6px)) scale(var(--s)) rotate(calc(var(--r) - 3deg));
    }
}

.sweets-showcase.show .sweet-icon.float {
    animation: sweetFloat 4.5s ease-in-out var(--delay) infinite;
}

@keyframes trailPulse {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.4;
    }
}

.sweets-showcase.show .trail-line {
    animation: trailPulse 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .sweets-showcase {
        padding: 4rem 1.5rem;
        min-height: 80vh;
    }

    .sweets-title {
        font-size: 2.2rem;
    }

    .sweet-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    header {
        padding: 1.2rem 2rem;
    }

    section {
        padding: 5rem 2rem;
    }

    .hero {
        padding: 5rem 2rem;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }

    nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.75rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }

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

    .hero .since-badge {
        margin-bottom: 1.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .timeline {
        padding: 2rem 0 2rem 0;
    }

    .timeline::before {
        left: 110px;
    }

    .timeline-item {
        grid-template-columns: 90px 1fr;
        gap: 1.5rem;
        padding-left: 0;
    }

    .timeline-year {
        text-align: right;
        padding-right: 1rem;
        font-size: 1.4rem;
    }

    .timeline-item::after {
        left: 102px;
        width: 14px;
        height: 14px;
    }

    .timeline-item:hover .timeline-content {
        transform: translateY(-5px);
    }

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

    .lightbox-modal {
        padding: 1rem;
    }

    .lightbox-details {
        padding: 2rem;
    }
}