/* ============================================================
   Done Deal — Corporate Website
   Dark theme: Black Currant + Gold accents
   ============================================================ */

:root {
    /* Palette */
    --bc-900: #0d0a12;      /* darkest black currant (page bg) */
    --bc-800: #140f1b;      /* slightly darker black currant */
    --bc-700: #1c1426;      /* base black currant */
    --bc-600: #251a33;      /* raised surface */
    --bc-500: #2f2240;      /* hover surface */
    --bc-400: #3a2b52;      /* border / divider */
    --bc-300: #4a3868;      /* muted accent */

    --gold-500: #d4af37;    /* primary gold */
    --gold-400: #e0bd4a;    /* hover gold */
    --gold-300: #eccb6b;    /* light gold */
    --gold-600: #b8932b;    /* deep gold */

    --ink-100: #f5f2f8;     /* primary text */
    --ink-300: #c9c0d6;     /* secondary text */
    --ink-500: #8a7fa0;     /* muted text */
    --ink-700: #5a5168;     /* faint text */

    --whatsapp: #25d366;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Layout */
    --header-h: 76px;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.18);
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bc-900);
    color: var(--ink-100);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;
}

/* Ambient background gradient */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(212, 175, 55, 0.08), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(74, 56, 104, 0.25), transparent 60%),
        radial-gradient(800px 600px at 50% 120%, rgba(212, 175, 55, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink-100);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p { color: var(--ink-300); }

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

a:hover { color: var(--gold-400); }

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

::selection {
    background: var(--gold-500);
    color: var(--bc-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bc-800); }
::-webkit-scrollbar-thumb { background: var(--bc-400); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* ============================================================
   Layout helpers
   ============================================================ */

.page-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.dd-main {
    flex: 1;
    padding-top: var(--header-h);
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.container-tight {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-surface { background: var(--bc-800); }
.bg-surface-2 { background: var(--bc-700); }
.bg-gradient-gold {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
}
.bg-gradient-dark {
    background: linear-gradient(160deg, var(--bc-800), var(--bc-700));
}

/* ============================================================
   Typography utilities
   ============================================================ */

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-500);
    margin-bottom: 1rem;
    display: inline-block;
}

.text-gold { color: var(--gold-500) !important; }
.text-ink { color: var(--ink-100) !important; }
.text-muted-dd { color: var(--ink-500) !important; }

.display-1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
.lead-dd {
    font-size: 1.15rem;
    color: var(--ink-300);
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(120deg, var(--gold-300), var(--gold-500), var(--gold-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn-dd {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-dd-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--bc-900) !important;
    box-shadow: var(--shadow-gold);
}

.btn-dd-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(212, 175, 55, 0.35);
    color: var(--bc-900) !important;
}

.btn-dd-outline {
    background: transparent;
    border-color: var(--bc-400);
    color: var(--ink-100) !important;
}

.btn-dd-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-500) !important;
    transform: translateY(-2px);
}

.btn-dd-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--ink-100) !important;
}

.btn-dd-ghost:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-500);
    color: var(--gold-500) !important;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff !important;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-lg-dd {
    padding: 1rem 2.4rem;
    font-size: 1.05rem;
}

/* ============================================================
   Cards
   ============================================================ */

.dd-card {
    background: linear-gradient(160deg, var(--bc-700), var(--bc-800));
    border: 1px solid var(--bc-400);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

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

.dd-card-body {
    padding: 1.75rem;
}

.dd-card-img {
    aspect-ratio: 4 / 3;
    background: var(--bc-600);
    overflow: hidden;
    position: relative;
}

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

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

/* Glass overlay tag */
.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-400);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.tag-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink-300);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   Header / Navbar
   ============================================================ */

.dd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1030;
    background: rgba(13, 10, 18, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.dd-header.scrolled {
    background: rgba(13, 10, 18, 0.95);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.dd-navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dd-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink-100) !important;
    letter-spacing: -0.02em;
}

.dd-brand .mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    display: grid;
    place-items: center;
    color: var(--bc-900);
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

.dd-brand .mark-text span { color: var(--gold-500); }

.dd-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dd-nav-item {
    position: relative;
}

.dd-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    color: var(--ink-300) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.dd-nav-link:hover,
.dd-nav-link.active {
    color: var(--gold-500) !important;
    background: rgba(212, 175, 55, 0.08);
}

.dd-nav-link .caret {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.dd-nav-item:hover .dd-nav-link .caret {
    transform: rotate(180deg);
}

/* Dropdown */
.dd-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: var(--bc-700);
    border: 1px solid var(--bc-400);
    border-radius: var(--radius);
    padding: 0.6rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 10;
}

.dd-nav-item:hover .dd-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dd-dropdown a {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    color: var(--ink-300) !important;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.dd-dropdown a:hover {
    background: var(--bc-600);
    color: var(--gold-500) !important;
}

.dd-dropdown a i {
    color: var(--gold-500);
    font-size: 1.1rem;
    margin-top: 2px;
}

.dd-dropdown a .dd-title { font-weight: 600; color: var(--ink-100); display: block; }
.dd-dropdown a .dd-sub { font-size: 0.8rem; color: var(--ink-500); }

.dd-cta-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile toggle */
.dd-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--bc-400);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    color: var(--ink-100);
    font-size: 1.3rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile drawer */
.dd-mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bc-800);
    z-index: 1029;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
}

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

.dd-mobile-nav .accordion-button {
    background: var(--bc-700);
    color: var(--ink-100);
    border: 1px solid var(--bc-400);
    border-radius: var(--radius) !important;
    font-weight: 600;
    padding: 1rem 1.2rem;
}

.dd-mobile-nav .accordion-button:not(.collapsed) {
    background: var(--bc-600);
    color: var(--gold-500);
}

.dd-mobile-nav .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(212, 175, 55, 0.25);
}

.dd-mobile-nav .accordion-body a {
    display: block;
    padding: 0.7rem 0.5rem;
    color: var(--ink-300) !important;
    border-radius: 8px;
}

.dd-mobile-nav .accordion-body a:hover {
    color: var(--gold-500) !important;
    background: var(--bc-600);
}

.dd-mobile-link {
    display: block;
    padding: 1rem 1.2rem;
    color: var(--ink-100) !important;
    font-weight: 600;
    border: 1px solid var(--bc-400);
    border-radius: var(--radius);
    margin-bottom: 0.6rem;
}

.dd-mobile-link:hover {
    border-color: var(--gold-500);
    color: var(--gold-500) !important;
}

@media (max-width: 991.98px) {
    .dd-nav, .dd-cta-wrap .btn-dd { display: none; }
    .dd-toggle { display: inline-flex; }
    .dd-mobile-nav { display: block; }
}

/* ============================================================
   Hero
   ============================================================ */

.dd-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

.dd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dd-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.dd-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 10, 18, 0.6) 0%, rgba(13, 10, 18, 0.92) 100%),
        linear-gradient(90deg, rgba(13, 10, 18, 0.85), transparent);
}

.dd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.dd-hero h1 {
    margin-bottom: 1.5rem;
}

.dd-hero .lead-dd {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 620px;
}

.dd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Page hero (inner pages) */
.dd-page-hero {
    position: relative;
    padding: 9rem 0 4rem;
    overflow: hidden;
    border-bottom: 1px solid var(--bc-400);
}

.dd-page-hero .dd-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dd-page-hero .dd-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.dd-page-hero .dd-page-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 10, 18, 0.7), rgba(13, 10, 18, 0.95));
}

.dd-page-hero .container-wide { position: relative; z-index: 2; }

.breadcrumb-dd {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.85rem;
}

.breadcrumb-dd li { color: var(--ink-500); }
.breadcrumb-dd li a { color: var(--gold-500); }
.breadcrumb-dd li::after { content: "/"; margin-left: 0.5rem; color: var(--ink-700); }
.breadcrumb-dd li:last-child::after { content: ""; }

/* ============================================================
   Stats / counters
   ============================================================ */

.dd-stat {
    text-align: center;
    padding: 2rem 1rem;
}

.dd-stat .num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--gold-500);
    line-height: 1;
}

.dd-stat .label {
    margin-top: 0.5rem;
    color: var(--ink-300);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============================================================
   Brand cards
   ============================================================ */

.brand-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    color: var(--ink-100);
    border: 1px solid var(--bc-400);
    transition: all var(--transition);
}

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

.brand-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.brand-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.brand-card-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 10, 18, 0.2) 0%, rgba(13, 10, 18, 0.95) 100%);
}

.brand-card-body {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.brand-card-body h3 { margin-bottom: 0.5rem; }

/* ============================================================
   Gallery / lightbox
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--bc-400);
    transition: all var(--transition);
}

.gallery-item:hover {
    border-color: var(--gold-500);
    transform: translateY(-4px);
}

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

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 10, 18, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-item .overlay .g-title {
    color: var(--ink-100);
    font-weight: 600;
}

.gallery-item .overlay .g-cat {
    color: var(--gold-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-item .zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    color: var(--bc-900);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition);
}

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

/* Lightbox */
.dd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 12, 0.96);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dd-lightbox.open { display: flex; }

.dd-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    border: 2px solid var(--gold-500);
    box-shadow: var(--shadow);
}

.dd-lightbox .lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bc-700);
    border: 1px solid var(--bc-400);
    color: var(--ink-100);
    font-size: 1.4rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all var(--transition);
}

.dd-lightbox .lb-close:hover {
    background: var(--gold-500);
    color: var(--bc-900);
}

.dd-lightbox .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bc-700);
    border: 1px solid var(--bc-400);
    color: var(--ink-100);
    font-size: 1.6rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all var(--transition);
}

.dd-lightbox .lb-nav:hover { background: var(--gold-500); color: var(--bc-900); }
.dd-lightbox .lb-prev { left: 1.5rem; }
.dd-lightbox .lb-next { right: 1.5rem; }

.dd-lightbox .lb-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink-300);
    font-size: 0.95rem;
    text-align: center;
}

/* ============================================================
   Forms
   ============================================================ */

.dd-form {
    background: linear-gradient(160deg, var(--bc-700), var(--bc-800));
    border: 1px solid var(--bc-400);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.dd-form-label {
    font-weight: 600;
    color: var(--ink-100);
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.dd-input,
.dd-select,
.dd-textarea {
    width: 100%;
    background: var(--bc-800);
    border: 1px solid var(--bc-400);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--ink-100);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.dd-input::placeholder,
.dd-textarea::placeholder { color: var(--ink-700); }

.dd-input:focus,
.dd-select:focus,
.dd-textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.18);
    background: var(--bc-700);
}

.dd-select option { background: var(--bc-700); color: var(--ink-100); }

.dd-textarea { min-height: 130px; resize: vertical; }

.form-help {
    font-size: 0.82rem;
    color: var(--ink-500);
    margin-top: 0.35rem;
}

/* Filter chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.chip {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    background: var(--bc-700);
    border: 1px solid var(--bc-400);
    color: var(--ink-300);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.chip:hover { border-color: var(--gold-500); color: var(--gold-500); }

.chip.active {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--bc-900) !important;
    border-color: transparent;
}

/* ============================================================
   Footer
   ============================================================ */

.dd-footer {
    background: var(--bc-800);
    border-top: 1px solid var(--bc-400);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

.dd-footer h5 {
    color: var(--ink-100);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.dd-footer a {
    color: var(--ink-500) !important;
    display: inline-block;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.dd-footer a:hover { color: var(--gold-500) !important; }

.dd-footer .footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--ink-100);
    margin-bottom: 1rem;
}

.dd-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.dd-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bc-700);
    border: 1px solid var(--bc-400);
    display: grid;
    place-items: center;
    color: var(--ink-300) !important;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.dd-social a:hover {
    background: var(--gold-500);
    color: var(--bc-900) !important;
    border-color: var(--gold-500);
    transform: translateY(-3px);
}

.dd-footer-bottom {
    border-top: 1px solid var(--bc-400);
    margin-top: 3rem;
    padding-top: 1.5rem;
    color: var(--ink-500);
    font-size: 0.88rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* ============================================================
   Misc utilities
   ============================================================ */

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
    border-radius: 3px;
    margin: 1rem 0 1.5rem;
}

.divider-gold.center { margin-left: auto; margin-right: auto; }

.icon-bubble {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bc-600), var(--bc-500));
    border: 1px solid var(--bc-400);
    display: grid;
    place-items: center;
    color: var(--gold-500);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: all var(--transition);
}

.dd-card:hover .icon-bubble {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--bc-900);
    transform: rotate(-6deg) scale(1.05);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: var(--ink-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.feature-list li i {
    color: var(--gold-500);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Parallax strip */
.parallax-strip {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 10, 18, 0.82);
}

.parallax-strip .container-wide { position: relative; z-index: 2; }

@media (max-width: 768px) {
    .parallax-strip { background-attachment: scroll; }
    .section { padding: 4rem 0; }
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--bc-700), var(--bc-600));
    border: 1px solid var(--bc-400);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 300px at 50% 0%, rgba(212, 175, 55, 0.12), transparent 70%);
}

.cta-band > * { position: relative; z-index: 2; }

/* Accordion (FAQ) */
.accordion-dd .accordion-item {
    background: var(--bc-700);
    border: 1px solid var(--bc-400);
    border-radius: var(--radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-dd .accordion-button {
    background: var(--bc-700);
    color: var(--ink-100);
    font-weight: 600;
    padding: 1.3rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-dd .accordion-button:not(.collapsed) {
    background: var(--bc-600);
    color: var(--gold-500);
}

.accordion-dd .accordion-button:focus { box-shadow: 0 0 0 0.15rem rgba(212, 175, 55, 0.25); }

.accordion-dd .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.accordion-dd .accordion-body {
    color: var(--ink-300);
    padding: 1.2rem 1.5rem 1.5rem;
}

/* Timeline */
.dd-timeline {
    position: relative;
    padding-left: 2rem;
}

.dd-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-500), transparent);
}

.dd-timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.dd-timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 4px var(--bc-800);
}

/* Team / value cards */
.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

/* Blog */
.blog-card .dd-card-body { padding: 1.5rem 1.75rem 1.75rem; }
.blog-card .meta {
    font-size: 0.82rem;
    color: var(--ink-500);
    margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    z-index: 1050;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Reveal animation fallback */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Blazor error */
#blazor-error-ui {
    background: var(--bc-700);
    color: var(--ink-100);
    border-top: 2px solid var(--gold-500);
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
    left: 0;
    padding: 0.8rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    color: var(--gold-500);
}

/* ============================================================
   Champion Glass & Antiques — Luxury Mirrors & Décor
   Deep Purple + Gold, Crest/Logo, Animations
   ============================================================ */

/* ---- Crest Reveal Overlay (on page load) ---- */
.champion-crest-reveal {
    position: fixed;
    inset: 0;
    background: var(--bc-900);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.champion-crest-reveal.revealed {
    opacity: 1;
    pointer-events: all;
}

.champion-crest-reveal.dismissed {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0s 0.8s;
}

.crest-container {
    text-align: center;
    transform: scale(0.6);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.champion-crest-reveal.revealed .crest-container {
    transform: scale(1);
}

.crest-emblem {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    display: grid;
    place-items: center;
}

.crest-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--gold-500);
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 0 30px rgba(212, 175, 55, 0.08);
    animation: crestPulse 2s ease-in-out infinite;
}

@keyframes crestPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.08); }
    50% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.7), inset 0 0 50px rgba(212, 175, 55, 0.15); }
}

.crest-crown {
    position: absolute;
    top: -22px;
    font-size: 2.6rem;
    color: var(--gold-500);
    z-index: 2;
    animation: crownFloat 2.4s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

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

.crest-letter {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--gold-500);
    z-index: 1;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.crest-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.champion-crest-reveal.revealed .crest-text {
    opacity: 1;
    transform: translateY(0);
}

.crest-name {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink-100);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.crest-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.35em;
}

/* ---- Champion Hero Banner ---- */
.champion-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.champion-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.12), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(74, 56, 104, 0.4), transparent 60%),
        var(--bc-900);
}

.champion-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 10, 18, 0.2) 0%, rgba(13, 10, 18, 0.7) 60%, var(--bc-900) 100%);
}

.champion-hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 15% 25%, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(2px 2px at 45% 15%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 65% 55%, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2px 2px at 80% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 25% 65%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 55% 75%, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 10% 85%, rgba(212, 175, 55, 0.4), transparent);
    animation: particlesFloat 8s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.champion-hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.champion-hero-line {
    display: block;
}

.champion-hero-lead {
    font-size: 1.2rem;
    color: var(--ink-300);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.champion-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.champion-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.champion-hero-scroll i {
    font-size: 1.2rem;
    color: var(--gold-500);
}

/* ---- Champion Intro Section ---- */
.champion-intro {
    position: relative;
}

.champion-crest-static {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.champion-crest-static .crest-emblem {
    width: 100px;
    height: 100px;
    margin: 0;
}

.champion-crest-static .crest-ring {
    border: 2px solid var(--gold-500);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.champion-crest-static .crest-crown {
    top: -16px;
    font-size: 1.8rem;
}

.champion-crest-static .crest-letter {
    font-size: 3rem;
}

.champion-showcase {
    position: relative;
}

.champion-showcase-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bc-400);
    box-shadow: var(--shadow);
}

.champion-showcase-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.champion-showcase-float {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--gold-500);
    box-shadow: var(--shadow-gold);
    animation: floatShowcase 5s ease-in-out infinite;
}

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

.champion-showcase-float img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ---- Champion Product Card ---- */
.champion-card .champion-featured {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--bc-900) !important;
    border: none;
    font-size: 0.7rem;
}

.champion-card .champion-featured i {
    margin-right: 0.25rem;
}

.dd-card-img-link {
    display: block;
    text-decoration: none !important;
}

.champion-product-link {
    color: var(--ink-100) !important;
    text-decoration: none !important;
    transition: color var(--transition);
}

.champion-product-link:hover {
    color: var(--gold-500) !important;
}

/* ---- Champion Category Cards ---- */
.champion-cat-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    border: 1px solid var(--bc-400);
    transition: all var(--transition);
    text-decoration: none !important;
}

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

.champion-cat-img {
    position: absolute;
    inset: 0;
}

.champion-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.champion-cat-card:hover .champion-cat-img img {
    transform: scale(1.1);
}

.champion-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 10, 18, 0.25) 0%, rgba(13, 10, 18, 0.92) 100%);
    transition: background var(--transition);
}

.champion-cat-card:hover .champion-cat-overlay {
    background: linear-gradient(180deg, rgba(13, 10, 18, 0.15) 0%, rgba(13, 10, 18, 0.85) 100%);
}

.champion-cat-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 2;
}

.champion-cat-body i {
    font-size: 1.6rem;
    color: var(--gold-500);
    margin-bottom: 0.6rem;
    display: block;
}

.champion-cat-body h3 {
    color: var(--ink-100);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.champion-cat-body p {
    color: var(--ink-300);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Champion Detail Page ---- */
.champion-detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bc-400);
    box-shadow: var(--shadow);
}

.champion-detail-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.champion-detail-card {
    background: var(--bc-800);
    border: 1px solid var(--bc-400);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all var(--transition);
}

.champion-detail-card:hover {
    border-color: var(--gold-600);
}

.champion-detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.champion-detail-feature:last-child {
    border-bottom: none;
}

.champion-detail-feature i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- Champion Responsive ---- */
@media (max-width: 991.98px) {
    .champion-showcase-float {
        bottom: -1rem;
        left: -1rem;
        width: 45%;
    }
    .champion-hero {
        min-height: 70vh;
        padding: 6rem 0 4rem;
    }
    .champion-cat-card {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .champion-hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }
    .champion-showcase-float {
        display: none;
    }
    .champion-crest-reveal .crest-emblem {
        width: 120px;
        height: 120px;
    }
    .champion-crest-reveal .crest-letter {
        font-size: 3.2rem;
    }
    .champion-crest-reveal .crest-crown {
        font-size: 2rem;
        top: -16px;
    }
    .crest-name {
        font-size: 2.2rem;
    }
}
