﻿/* ===== BRANDING VARIABLES ===== */
:root {
    --bg-deep-purple: #0f051d;
    --bg-card-dark: #170b2a;
    --bg-pure-white: #ffffff;
    --gold-primary: #d4af37;
    --gold-muted: #bfa15f;
    --text-light: #ffffff;
    --text-muted: #b2a9be;
    --border-purple: #2a1b40;
    --font-serif: 'Oswald', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --header-height: 80px;
    --header-height-mobile: 70px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep-purple);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== MULTIPAGE ROUTER ===== */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.page-view.active-page {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold-solid {
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
}

.btn-gold-solid:hover {
    background: #ffffff;
    color: var(--bg-deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    background: rgba(214, 175, 55, 0.03);
}

.btn-purple-solid {
    background: #2a134a;
    color: #ffffff;
}

.btn-purple-solid:hover {
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.main-header {
    background-color: rgba(15, 5, 29, 0);
    border-bottom: 1px solid transparent;
    position: fixed;
    width: 100%;
    height: var(--header-height);
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.main-header.scrolled {
    background-color: rgba(15, 5, 29, 0.95);
    border-bottom: 1px solid var(--border-purple);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo .brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    white-space: nowrap;
}

.logo .brand-name span {
    color: var(--gold-primary);
}

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

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    transition: color 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--gold-primary);
}

.btn-donate {
    border: 1px solid var(--gold-primary);
    padding: 10px 20px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 25px;
    white-space: nowrap;
    background: transparent;
    transition: all 0.4s ease;
}

.btn-donate:hover {
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ===== BANNERS ===== */
.page-banner {
    background: linear-gradient(rgba(15, 5, 29, 0.6), rgba(15, 5, 29, 0.9)), url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1920") no-repeat center center/cover;
    padding: 160px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-purple);
}

.page-banner h1 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: textReveal 0.8s ease-out forwards;
}

.page-banner h1 span {
    color: var(--gold-primary);
    font-family: var(--font-display);
    font-style: italic;
}

.page-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CATALOG ===== */
.catalog-section {
    padding: 80px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(15, 5, 29, 0.5);
}

.product-img-holder {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.product-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img-holder img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    border-radius: 12px;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: var(--gold-primary);
}

.product-price {
    color: var(--gold-primary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ===== PRODUCT DETAIL ===== */
.detail-wrapper {
    padding: 140px 0 80px 0;
}

.back-nav {
    margin-bottom: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.back-nav:hover {
    transform: translateX(-4px);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.detail-gallery {
    position: sticky;
    top: 100px;
}

.main-display-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-purple);
    background: var(--bg-card-dark);
}

.detail-info-pane h1 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.2;
}

.detail-status-badge {
    display: inline-block;
    background: rgba(214, 175, 55, 0.1);
    color: var(--gold-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(214, 175, 55, 0.2);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.detail-price {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-purple);
    padding-bottom: 15px;
}

.detail-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
}

.spec-table tr {
    border-bottom: 1px solid rgba(42, 27, 64, 0.5);
    transition: background-color 0.3s ease;
}

.spec-table tr:hover {
    background-color: rgba(42, 27, 64, 0.2);
}

.spec-table td {
    padding: 12px 0;
    font-size: 0.85rem;
}

.spec-table td.label {
    color: var(--text-muted);
    width: 40%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.spec-table td.val {
    color: #ffffff;
    font-weight: 500;
}

.detail-action-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-purple);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.detail-action-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.detail-action-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(to bottom, rgba(15, 5, 29, 0.4) 0%, rgba(15, 5, 29, 0.7) 60%, var(--bg-deep-purple) 100%), url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1920") no-repeat center center/cover;
    padding: 200px 0 240px 0;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: textReveal 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero h1 span {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-primary);
    display: block;
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
    animation: textReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: textReveal 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ===== FEATURED ===== */
.featured-wrapper {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.featured-card {
    background-color: var(--bg-pure-white);
    color: #333333;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.feat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .feat-img-box img {
    transform: scale(1.03);
}

.feat-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.feat-details h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--bg-deep-purple);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feat-details p {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 25px;
}

.feat-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #555555;
    font-weight: 500;
    margin-bottom: 25px;
}

.feat-meta i {
    color: var(--gold-primary);
    margin-right: 5px;
}

.feat-countdown {
    background-color: var(--bg-card-dark);
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--border-purple);
}

.countdown-title {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.timer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--border-purple);
    padding-bottom: 12px;
    width: 100%;
}

.timer-unit:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timer-unit .num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    display: block;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.timer-unit .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services {
    padding: 60px 0 90px 0;
    text-align: center;
}

.section-header-center {
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-box {
    padding: 0 25px;
    border-right: 1px solid var(--border-purple);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box:last-child {
    border-right: none;
}

.service-box i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-box:hover i {
    transform: scale(1.15) rotate(3deg);
}

.service-box h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== SHOWCASE ===== */
.showcase {
    background-color: var(--bg-card-dark);
    padding: 80px 0;
    border-top: 1px solid var(--border-purple);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-purple);
    padding-bottom: 15px;
}

.showcase-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
}

.view-all-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--gold-primary);
    cursor: pointer;
    position: relative;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.view-all-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.showcase-card {
    background: var(--bg-deep-purple);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-purple);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.25);
}

.card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 5, 29, 0.95);
    padding: 8px 14px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-purple);
}

.date-badge .month {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-primary);
}

.date-badge .day {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
}

.card-body {
    padding: 25px;
    position: relative;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-meta-line {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-meta-line i {
    color: var(--gold-primary);
    width: 12px;
}

.arrow-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.showcase-card:hover .arrow-btn {
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

/* ===== ORDER TIMELINE ===== */
.info-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.info-intro h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-intro p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.timeline-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px auto;
    padding: 20px 0;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--border-purple);
    transform: translateX(-50%);
}

.t-step-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.t-step-block:nth-child(even) {
    flex-direction: row-reverse;
}

.t-pointer {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--bg-deep-purple);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: transform 0.3s ease;
}

.t-step-block:hover .t-pointer {
    transform: translateX(-50%) scale(1.25);
    background: var(--gold-primary);
}

.t-content {
    width: 45%;
    background: var(--bg-card-dark);
    border: 1px solid var(--border-purple);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.t-step-block:hover .t-content {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.2);
}

.t-num {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.t-content h3 {
    font-family: var(--font-serif);
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.15rem;
}

.t-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border-purple);
    border-bottom: 1px solid var(--border-purple);
}

.newsletter-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.news-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.news-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-input-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    background: #0f051d;
    border: 1px solid var(--border-purple);
    padding: 6px;
    border-radius: 25px;
    transition: border-color 0.3s ease;
}

.news-input-group:focus-within {
    border-color: var(--gold-primary);
}

.news-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.news-input-group input:focus {
    outline: none;
}

.news-input-group .btn-sub {
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
    border: none;
    padding: 0 28px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.news-input-group .btn-sub:hover {
    background: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #090212;
    padding: 70px 0 25px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-family: var(--font-serif);
    color: #ffffff;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo h3 span {
    color: var(--gold-primary);
}

.footer-logo p {
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-col ul li a {
    cursor: pointer;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px !important;
}

.footer-contact-list i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border-purple);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    font-size: 0.70rem;
}

/* ===== PRODUCT DETAIL MODAL ===== */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 5, 29, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-modal-container {
    background: var(--bg-deep-purple);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideUp 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.product-modal-container::-webkit-scrollbar {
    width: 6px;
}

.product-modal-container::-webkit-scrollbar-track {
    background: var(--bg-deep-purple);
}

.product-modal-container::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

.product-modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-muted);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-purple);
    color: var(--text-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-deep-purple);
    transform: rotate(90deg);
    border-color: var(--gold-primary);
}

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

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

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .feat-img-box {
        height: 250px;
    }
    .feat-countdown {
        border-left: none;
        border-top: 1px solid var(--border-purple);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    .service-box {
        border-right: none;
    }
    .service-box:nth-child(even) {
        border-left: 1px solid var(--border-purple);
    }
    .showcase-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-steps::before {
        left: 24px;
    }
    .t-step-block {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 15px;
    }
    .t-pointer {
        left: 24px;
    }
    .t-content {
        width: 100%;
        margin-left: 50px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .detail-gallery {
        position: relative;
        top: 0;
    }
    .main-display-img {
        height: 400px;
    }
    .product-modal-container {
        padding: 24px;
        max-height: 95vh;
    }
}

@media (max-width: 768px) {
    body,
    .hero-content,
    .feat-details,
    .service-box,
    .showcase-header,
    .card-body,
    .news-info,
    .footer-logo,
    .footer-col,
    .footer-bottom,
    .info-intro {
        text-align: center !important;
    }

    .main-header {
        height: var(--header-height-mobile);
    }
    .logo .brand-name {
        font-size: 1.15rem;
        letter-spacing: 1px;
    }
    .btn-donate {
        padding: 6px 14px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 5, 29, 0.98);
        padding: 40px;
        gap: 35px;
        z-index: 1000;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .nav-links.mobile-active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .nav-links.mobile-active a {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.mobile-active a:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav-links.mobile-active a:nth-child(2) {
        transition-delay: 0.18s;
    }
    .nav-links.mobile-active a:nth-child(3) {
        transition-delay: 0.26s;
    }
    .nav-links.mobile-active a:nth-child(4) {
        transition-delay: 0.34s;
    }

    .container {
        padding: 0 16px !important;
    }
    .hero {
        padding: 130px 0 140px 0 !important;
    }
    .hero h1 {
        font-size: 2.2rem !important;
    }
    .page-banner h1 {
        font-size: 2.0rem !important;
    }
    .detail-info-pane h1 {
        font-size: 1.8rem !important;
    }
    .info-intro h2,
    .section-header-center h2 {
        font-size: 1.6rem !important;
    }

    .featured-wrapper {
        margin-top: -60px !important;
        margin-bottom: 40px !important;
    }
    .feat-details,
    .feat-countdown,
    .product-info,
    .card-body {
        padding: 24px 16px !important;
    }
    .product-img-holder {
        height: 300px !important;
    }

    .timer-grid {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    .timer-unit {
        border-bottom: none !important;
        border-right: 1px solid var(--border-purple);
        padding-bottom: 0 !important;
        padding-right: 8px !important;
        width: 23% !important;
    }
    .timer-unit:last-child {
        border-right: none !important;
        padding-right: 0 !important;
    }
    .timer-unit .num {
        font-size: 1.4rem !important;
    }

    .showcase-grid,
    .catalog-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .service-box {
        padding: 0 !important;
        border-left: none !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    .hero-btns .btn,
    .detail-action-card .btn {
        width: 100%;
        text-align: center;
    }
    .feat-meta,
    .card-meta-line,
    .footer-socials,
    .footer-contact-list li {
        justify-content: center !important;
    }

    .news-input-group {
        max-width: 100% !important;
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 10px;
        padding: 0;
    }
    .news-input-group input,
    .news-input-group .btn-sub {
        width: 100%;
        border-radius: 25px;
        padding: 12px 20px;
    }
    .news-input-group .btn-sub {
        text-align: center;
    }

    .timeline-steps::before {
        left: 16px !important;
    }
    .t-pointer {
        left: 16px !important;
        top: 24px !important;
    }
    .t-content {
        width: calc(100% - 36px) !important;
        margin-left: 36px !important;
        padding: 20px !important;
        text-align: left !important;
    }

    .product-modal-container {
        padding: 16px;
        max-height: 98vh;
        border-radius: 12px;
    }
    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .detail-info-pane h1 {
        font-size: 1.6rem !important;
    }
    .detail-price {
        font-size: 1.4rem !important;
    }
}