/* ============================================================
   style.css — Coca Landing Page
   Font: Poppins (all weights)
   Palette: Obsidian / Champagne Gold / Ivory
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

:root {
    --obsidian:    #0A0A0F;
    --ink:         #111118;
    --graphite:    #1C1C26;
    --champagne:   #C9A96E;
    --champagne-lt:#E2C99A;
    --champagne-dk:#A8803E;
    --ivory:       #F5F0E8;
    --ivory-deep:  #EDE5D8;
    --dust:        #8A8A9A;
    --white:       #FDFCFA;
    --text-dark:   #1A1A22;

    --font: 'Poppins', sans-serif;

    --radius:    6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --section-v: 110px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champagne);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--champagne);
    display: inline-block;
    flex-shrink: 0;
    border-radius: 2px;
}

.section-tag { /* alias */
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champagne);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--champagne);
    display: inline-block;
    flex-shrink: 0;
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.section-title em  { font-style: italic; font-weight: 300; color: var(--champagne-dk); }
.section-title.light     { color: var(--white); }
.section-title.light em  { color: var(--champagne); }

.section-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--dust);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-coca {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--champagne);
    color: var(--obsidian);
    border: 2px solid var(--champagne);
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 28px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-coca:hover {
    background: var(--champagne-dk);
    border-color: var(--champagne-dk);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.btn-outline-coca {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--champagne);
    border: 2px solid var(--champagne);
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 11px 28px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline-coca:hover {
    background: var(--champagne);
    color: var(--obsidian);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 11px 24px;
    transition: var(--transition);
    cursor: pointer;
}
.btn-ghost-light:hover { color: var(--white); border-color: rgba(255,255,255,0.55); }

/* ============================================================
   NAVBAR
   ============================================================ */
/* --top-banner-h is set by JS; navbar top is set directly via JS inline style */
:root { --top-banner-h: 0px; }

.coca-navbar {
    background: rgba(253,246,232,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168,128,62,0.12);
    padding: 18px 0;
    /* top is managed by JS inline style, just animate it smoothly */
    transition: padding 0.35s, background 0.35s, box-shadow 0.35s, top 0.2s ease;
    top: 0; /* default — JS overrides when top banner exists */
}
.coca-navbar.scrolled {
    padding: 10px 0;
    background: rgba(253,246,232,0.98);
    border-bottom-color: rgba(168,128,62,0.2);
    box-shadow: 0 4px 24px rgba(168,128,62,0.1);
}

/* Top banner — fixed at the very top, above the navbar (z-index:1000) */
.banner-top-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

/* Hero section padding-top is set dynamically by JS */

.navbar-brand {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark) !important;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-dot {
    width: 8px; height: 8px;
    background: var(--champagne-dk);
    border-radius: 2px;
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0;
}

.coca-navbar .nav-link {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(26,26,34,0.6) !important;
    padding: 6px 14px !important;
    transition: color 0.25s;
    position: relative;
}
.coca-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--champagne-dk);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.coca-navbar .nav-link:hover,
.coca-navbar .nav-link.active { color: var(--text-dark) !important; }
.coca-navbar .nav-link:hover::after,
.coca-navbar .nav-link.active::after { transform: scaleX(1); }

/* Navbar CTA button — dark on light bg */
.coca-navbar .btn-coca {
    background: var(--champagne-dk);
    border-color: var(--champagne-dk);
    color: var(--white);
}
.coca-navbar .btn-coca:hover {
    background: var(--obsidian);
    border-color: var(--obsidian);
    color: var(--white);
}

.navbar-toggler { border: 1px solid rgba(168,128,62,0.3); border-radius: var(--radius); padding: 4px 8px; }
.navbar-toggler-icon { filter: none; }

/* ============================================================
   HERO SECTION — Split layout (reference design, theme-matched)
   Left: eyebrow + big title + subtitle + CTA + social icons + stats
   Right: floating device mockup visual
   Background: warm champagne gradient (light theme)
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, #FDF6E8 0%, #F5EDDA 40%, #EDE0C4 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* When admin sets a custom bg image, darken it instead */
.hero-section.has-bg-image {
    background: none;
}
.hero-section.has-bg-image::before {
    background: linear-gradient(135deg, rgba(10,10,15,0.88) 50%, rgba(10,10,15,0.5) 100%);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-overlay { display: none; } /* not needed for light bg */
.hero-section .container { position: relative; z-index: 2; }

/* ── LEFT COLUMN ── */
.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne-dk);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.2s forwards;
}
.hero-eyebrow .line {
    width: 36px; height: 2px;
    background: var(--champagne-dk);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.32s forwards;
}
/* Accent word gets champagne colour */
.hero-title span {
    color: var(--champagne-dk);
    font-style: italic;
    font-weight: 700;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.85;
    color: #6B6058;
    max-width: 420px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.44s forwards;
}

/* CTA row — button + social icons side by side */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.56s forwards;
    margin-bottom: 16px;
}

/* Override btn-coca for dark text on light bg */
.hero-section .btn-coca {
    background: var(--champagne-dk);
    border-color: var(--champagne-dk);
    color: var(--white);
    border-radius: 100px;
    padding: 14px 32px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(168,128,62,0.35);
}
.hero-section .btn-coca:hover {
    background: var(--obsidian);
    border-color: var(--obsidian);
    color: var(--white);
    box-shadow: 0 12px 36px rgba(10,10,15,0.3);
}
.hero-section .btn-coca .btn-arrow {
    width: 24px; height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
}

/* Social icons row */
.hero-social {
    display: flex;
    align-items: center;
    gap: 4px;
}
.hero-social-label {
    font-size: 12px;
    font-weight: 500;
    color: #8A7A6A;
    margin-right: 8px;
    white-space: nowrap;
}
.hero-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(168,128,62,0.1);
    border: 1px solid rgba(168,128,62,0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--champagne-dk);
    font-size: 14px;
    transition: var(--transition);
}
.hero-social a:hover {
    background: var(--champagne-dk);
    color: var(--white);
    border-color: var(--champagne-dk);
    transform: translateY(-2px);
}

/* Rating badge — light version */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168,128,62,0.08);
    border: 1px solid rgba(168,128,62,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--champagne-dk);
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.1s forwards;
}
.rating-badge .stars { color: #E8A020; font-size: 11px; letter-spacing: 1px; }

/* Stats row — dark numbers on light bg */
.hero-stats {
    margin-top: 44px;
    border-top: 1px solid rgba(168,128,62,0.18);
    padding-top: 28px;
    opacity: 0;
    animation: fadeSlideUp 0.9s 0.7s forwards;
}
.stat-item { padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(168,128,62,0.18); }
.stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #8A7A6A; }
.stat-divider { display: none; }

/* ── RIGHT COLUMN — Device mockup visual ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 20px;
    opacity: 0;
    animation: fadeSlideUp 1s 0.5s forwards;
}

/* Main monitor frame */
.hero-device {
    position: relative;
    z-index: 2;
}
.hero-monitor {
    width: 100%;
    max-width: 480px;
    background: var(--text-dark);
    border-radius: 16px 16px 8px 8px;
    padding: 10px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.22),
        0 0 0 1px rgba(255,255,255,0.08);
}
.hero-monitor-screen {
    background: linear-gradient(135deg, #1C1C30, #2D1F4E);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Screen inner glow */
.hero-monitor-screen::before {
    content: '';
    position: absolute;
    top: 20%; left: 10%;
    width: 60%; height: 50%;
    background: radial-gradient(ellipse, rgba(201,169,110,0.15) 0%, transparent 70%);
    pointer-events: none;
}
/* Fake UI inside screen */
.screen-ui {
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.screen-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 6px 12px;
}
.screen-nav-brand { font-size: 9px; font-weight: 700; color: var(--champagne); letter-spacing: 0.1em; }
.screen-nav-links { display: flex; gap: 8px; }
.screen-nav-links span { width: 20px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.screen-nav-links span:last-child { width: 32px; background: var(--champagne); border-radius: 100px; }

.screen-hero-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 4px;
}
.screen-hero-text { flex: 1; }
.screen-hero-text .sh-tag { font-size: 7px; color: var(--champagne); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 5px; }
.screen-hero-text .sh-title { font-size: 11px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.screen-hero-text .sh-sub { font-size: 7px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 10px; }
.screen-hero-text .sh-btn { display: inline-block; background: var(--champagne); color: var(--obsidian); font-size: 7px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }

.screen-hero-graphic {
    width: 80px; height: 70px;
    background: linear-gradient(135deg, rgba(201,169,110,0.3), rgba(139,92,246,0.2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

/* Monitor stand */
.hero-monitor-stand {
    width: 60px; height: 16px;
    background: #2A2A35;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}
.hero-monitor-base {
    width: 120px; height: 8px;
    background: #222230;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
}

/* Floating app icon badges around the monitor */
.hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(168,128,62,0.12);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5;
}
.hero-badge .badge-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.hero-badge-1 { top: 8%;  left: -10%; animation-delay: 0s;   }
.hero-badge-2 { top: 50%; right: -12%; animation-delay: 1.2s; }
.hero-badge-3 { bottom: 20%; left: -8%; animation-delay: 2.2s; }
.hero-badge-4 { bottom: 5%; right: -5%; animation-delay: 0.7s; }

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

/* Decorative ring behind monitor */
.hero-ring {
    position: absolute;
    width: 380px; height: 380px;
    border: 1px solid rgba(168,128,62,0.12);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.hero-ring-2 {
    position: absolute;
    width: 480px; height: 480px;
    border: 1px solid rgba(168,128,62,0.06);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Trusted bar — light version */
.trusted-bar {
    border-top: 1px solid rgba(168,128,62,0.14);
    padding: 28px 0 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trusted-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A89A8A;
    white-space: nowrap;
    flex-shrink: 0;
}
.trusted-logos  { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.trusted-logo   {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(100,80,50,0.3);
    transition: color 0.3s;
}
.trusted-logo:hover { color: var(--champagne-dk); }

@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */
.section-dark { background: var(--graphite); color: var(--white); }
.workflow-section { background: var(--graphite); padding: var(--section-v) 0; position: relative; }
.workflow-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.workflow-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.workflow-step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    display: flex; gap: 14px; align-items: flex-start;
    transition: background 0.3s, border-color 0.3s;
}
.workflow-step-card:hover { background: rgba(201,169,110,0.05); border-color: rgba(201,169,110,0.2); }
.step-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--champagne); font-size: 16px; flex-shrink: 0;
    transition: background 0.3s;
}
.workflow-step-card:hover .step-icon { background: rgba(201,169,110,0.1); }
.step-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 5px; }
.step-desc  { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.7; margin: 0; }

.workflow-text { padding-left: 48px; }
.workflow-text .section-body { color: rgba(255,255,255,0.42); }
.workflow-image { margin-top: 32px; }
.workflow-image img { width: 100%; object-fit: cover; max-height: 290px; border-radius: var(--radius-md); filter: grayscale(20%) brightness(0.82); transition: filter 0.5s; }
.workflow-image img:hover { filter: grayscale(0%) brightness(0.93); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: var(--section-v) 0; background: var(--ivory); }

.services-list { border-top: 1px solid rgba(0,0,0,0.08); }

.service-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: transparent;
    transition: background 0.25s, padding-left 0.25s;
    cursor: pointer;
    overflow: hidden; /* needed for smooth height animation */
}
.service-item:hover { background: rgba(201,169,110,0.04); padding-left: 8px; }
.service-item.open  { background: rgba(201,169,110,0.06); padding-left: 8px; }

.service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    user-select: none;
}
.service-item-left { flex: 1; }
.service-arrow { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--champagne); margin-bottom: 6px; display: block; }
.service-title { font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 600; color: var(--text-dark); line-height: 1.25; transition: color 0.25s; }
.service-item:hover .service-title,
.service-item.open  .service-title { color: var(--champagne-dk); }

.service-item-right { flex-shrink: 0; }
.service-toggle {
    width: 36px; height: 36px;
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    background: none;
    color: var(--dust);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}
.service-toggle:hover, .service-item.open .service-toggle {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--obsidian);
}

/* Collapsible details panel */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}
.service-item.open .service-details {
    max-height: 300px;
    padding-bottom: 24px;
}
.service-desc {
    font-size: 14px; font-weight: 300; color: var(--dust);
    line-height: 1.85; margin: 0; max-width: 600px;
}
.service-thumb { width: 100px; height: 75px; object-fit: cover; border-radius: var(--radius); margin-bottom: 12px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: var(--section-v) 0; background: var(--white); }
.about-card {
    background: var(--ivory);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 3px solid var(--champagne);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 62px 52px;
}
.about-text { font-size: 15px; font-weight: 300; color: #5A5A6A; line-height: 1.95; margin-bottom: 16px; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { padding: var(--section-v) 0; background: var(--obsidian); }
.portfolio-section .eyebrow::before { background: var(--champagne); }

.portfolio-card {
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.portfolio-card:hover { border-color: rgba(201,169,110,0.25); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.portfolio-img { position: relative; height: 240px; overflow: hidden; background: var(--graphite); }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%) brightness(0.78); transition: filter 0.5s, transform 0.5s; }
.portfolio-card:hover .portfolio-img img { filter: grayscale(0%) brightness(0.95); transform: scale(1.05); }
.portfolio-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1C1C26, #111118); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(201,169,110,0.12); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(10,10,15,0.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { padding: 22px; border-top: 1px solid rgba(255,255,255,0.05); }
.portfolio-cat  { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); margin-bottom: 6px; }
.portfolio-title { font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.3; }

/* ============================================================
   TEAM SECTION — carousel
   ============================================================ */
.team-section { padding: var(--section-v) 0; background: var(--ivory-deep); overflow: hidden; }

/* Carousel wrapper */
.team-carousel-wrap { position: relative; }
.team-track-outer { overflow: hidden; }
.team-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.team-nav-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.15);
    background: var(--white);
    color: var(--dust);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); font-size: 15px;
}
.team-nav-btn:hover, .team-nav-btn.active {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--obsidian);
}

.team-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 0.35s, border-color 0.35s; }
.team-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: rgba(201,169,110,0.2); }
.team-img { height: 280px; overflow: hidden; background: var(--ivory); }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(15%); transition: filter 0.45s, transform 0.45s; }
.team-card:hover .team-img img { filter: grayscale(0%); transform: scale(1.04); }
.team-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--ivory-deep), var(--ivory)); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(201,169,110,0.2); }
.team-info { padding: 22px 20px; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0 0 4px; }
.team-role { font-size: 13px; font-weight: 400; color: var(--dust); font-style: italic; margin-bottom: 12px; display: block; }
.team-social { display: flex; gap: 14px; }
.team-social a { color: rgba(0,0,0,0.28); font-size: 14px; transition: color 0.25s; }
.team-social a:hover { color: var(--champagne-dk); }

/* Responsive carousel */
@media (max-width: 991px) {
    .team-slide { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}
@media (max-width: 600px) {
    .team-slide { flex: 0 0 85%; min-width: 85%; }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { padding: var(--section-v) 0; background: var(--white); }

.blog-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 0.35s, border-color 0.35s, transform 0.35s; position: relative; }
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--champagne), transparent); transform: scaleX(0); transition: transform 0.35s; transform-origin: left; z-index: 2; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); border-color: rgba(201,169,110,0.18); }
.blog-card:hover::before { transform: scaleX(1); }
.blog-img { position: relative; height: 210px; overflow: hidden; background: var(--ivory); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); transition: transform 0.5s, filter 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.04); filter: grayscale(0%); }
.blog-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--ivory), var(--ivory-deep)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(201,169,110,0.2); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--obsidian); color: var(--champagne); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.blog-info { padding: 24px; }
.blog-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-title a { color: var(--text-dark); }
.blog-title a:hover { color: var(--champagne-dk); }
.blog-desc { font-size: 13px; font-weight: 300; color: var(--dust); line-height: 1.8; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; font-style: italic; color: rgba(0,0,0,0.3); }

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.cta-section { padding: 100px 0; background: var(--obsidian); position: relative; overflow: hidden; }
.cta-section::before {
    content: '';
    position: absolute; top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inner {
    border: 1px solid rgba(201,169,110,0.1);
    border-top: 2px solid rgba(201,169,110,0.35);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 64px 56px;
    position: relative;
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.2; max-width: 560px; letter-spacing: -0.02em; }
.cta-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.35); margin-top: 14px; line-height: 1.85; }
.btn-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--champagne); color: var(--obsidian);
    border: none; border-radius: var(--radius);
    font-family: var(--font); font-weight: 600; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 15px 32px; transition: var(--transition); cursor: pointer;
}
.btn-cta-primary:hover { background: var(--champagne-lt); color: var(--obsidian); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,0.25); }

/* ============================================================
   PORTFOLIO & BLOG ALL PAGES (portfolio.php / blog-all.php)
   ============================================================ */
.page-hero {
    background: var(--obsidian);
    padding: 140px 0 70px;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px; }
.page-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); }

.page-content { padding: 80px 0; background: var(--obsidian); min-height: 60vh; }
.page-content.light-bg { background: var(--ivory); }
.page-content.light-bg .portfolio-card { background: var(--white); border-color: rgba(0,0,0,0.08); }
.page-content.light-bg .portfolio-img img { filter: grayscale(10%) brightness(1); }
.page-content.light-bg .portfolio-info { border-top-color: rgba(0,0,0,0.06); }
.page-content.light-bg .portfolio-cat { color: var(--champagne-dk); }
.page-content.light-bg .portfolio-title { color: var(--text-dark); }

/* Filter pills */
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-pill {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 20px; border-radius: 100px;
    border: 2px solid rgba(0,0,0,0.1);
    background: transparent; color: var(--dust);
    cursor: pointer; transition: var(--transition);
}
.filter-pill:hover, .filter-pill.active {
    background: var(--champagne); border-color: var(--champagne); color: var(--obsidian);
}
.filter-pill.dark { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
.filter-pill.dark:hover, .filter-pill.dark.active { background: var(--champagne); border-color: var(--champagne); color: var(--obsidian); }

/* ============================================================
   FOOTER
   ============================================================ */
.coca-footer { background: var(--ink); border-top: 1px solid rgba(201,169,110,0.08); padding: 68px 0 30px; }
.footer-brand { font-weight: 800; font-size: 1.35rem; color: var(--white); display: flex; align-items: center; gap: 10px; letter-spacing: 0.05em; }
.footer-tagline { font-size: 13px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.28); margin-top: 10px; margin-bottom: 20px; }
.newsletter-input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--white); border-radius: var(--radius); font-size: 13px; font-family: var(--font); font-weight: 300; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.22); }
.newsletter-input:focus { background: rgba(255,255,255,0.07); border-color: rgba(201,169,110,0.4); color: var(--white); box-shadow: none; }
.footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); transition: color 0.25s; }
.footer-links a:hover { color: var(--champagne); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; margin-top: 40px; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.2); display: flex; justify-content: space-between; align-items: center; }
.social-links { display: flex; gap: 18px; }
.social-links a { color: rgba(255,255,255,0.22); font-size: 16px; transition: color 0.25s; }
.social-links a:hover { color: var(--champagne); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) { .workflow-text { padding-left: 0; margin-top: 40px; } }
@media (max-width: 768px) {
    :root { --section-v: 80px; }
    .workflow-steps-grid { grid-template-columns: 1fr; }
    .about-card  { padding: 36px 22px; }
    .cta-inner   { padding: 40px 22px; }
    .trusted-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-stats  { flex-direction: column; gap: 18px; padding-top: 22px; }
    .stat-item   { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 14px; }
    .stat-item:last-child { border-bottom: none; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .cta-title { font-size: 1.6rem; }
}

/* ============================================================
   CONTACT SECTION — CTA + Form
   ============================================================ */
.cta-section { padding: 100px 0; background: var(--obsidian); position: relative; overflow: hidden; }
.cta-section::before {
    content: '';
    position: absolute; top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inner {
    border: 1px solid rgba(201,169,110,0.1);
    border-top: 2px solid rgba(201,169,110,0.35);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 56px 52px;
    position: relative;
    margin-bottom: 48px;
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.2; max-width: 560px; letter-spacing: -0.02em; }
.cta-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.35); margin-top: 14px; line-height: 1.85; }
.btn-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--champagne); color: var(--obsidian);
    border: none; border-radius: var(--radius);
    font-family: var(--font); font-weight: 600; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 15px 32px; transition: var(--transition); cursor: pointer;
}
.btn-cta-primary:hover { background: var(--champagne-lt); color: var(--obsidian); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,0.25); }

/* ── Contact Form Wrapper ── */
.contact-form-wrap {
    background: var(--ink);
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ── Left info panel ── */
.contact-info-panel {
    background: linear-gradient(160deg, #15151F 0%, #1C1C28 100%);
    border-right: 1px solid rgba(201,169,110,0.08);
    padding: 52px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.contact-info-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-info-item  { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
    width: 40px; height: 40px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--champagne); font-size: 16px; flex-shrink: 0;
}
.ci-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 3px; }
.ci-value { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.6; }

.contact-social { display: flex; gap: 10px; margin-top: auto; }
.contact-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
    background: transparent;
    color: rgba(255,255,255,0.35); font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.contact-social a:hover { background: var(--champagne); border-color: var(--champagne); color: var(--obsidian); }

/* ── Right form panel ── */
.contact-form-panel { padding: 52px 48px; }

/* Alert messages */
.form-alert {
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}
.form-alert-success {
    background: rgba(25,200,100,0.1);
    border: 1px solid rgba(25,200,100,0.25);
    color: #19c864;
}
.form-alert-error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.25);
    color: #ff6b78;
}

/* Form inputs */
.cf-group { display: flex; flex-direction: column; gap: 8px; }
.cf-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cf-label .req { color: var(--champagne); }
.cf-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.cf-input::placeholder { color: rgba(255,255,255,0.2); }
.cf-input:focus {
    border-color: rgba(201,169,110,0.5);
    background: rgba(201,169,110,0.04);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}
.cf-textarea { resize: vertical; min-height: 140px; }

/* Submit button */
.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--champagne);
    color: var(--obsidian);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 36px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cf-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--obsidian);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 0;
}
.cf-submit:hover::before { transform: scaleX(1); transform-origin: left; }
.cf-submit:hover { color: var(--champagne); }
.cf-submit > * { position: relative; z-index: 1; }
.cf-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.cf-submit:disabled::before { display: none; }

@media (max-width: 991px) {
    .contact-info-panel { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.08); }
    .contact-form-panel  { padding: 36px 28px; }
    .contact-info-panel  { padding: 36px 28px; }
    .cta-inner  { padding: 40px 24px; }
}

/* Portfolio title as link */
a.portfolio-title {
    text-decoration: none;
    transition: color 0.25s;
}
a.portfolio-title:hover { color: var(--champagne) !important; }

/* ── Blog card image overlay (View Post button on hover) ── */
.blog-img { position: relative; }
.blog-img-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,15,0.65);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 2;
}
.blog-card:hover .blog-img-overlay { opacity: 1; }

/* Blog title link */
a.blog-post-link, .blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.25s;
}
.blog-title a:hover { color: var(--champagne-dk); }

/* ============================================================
   BANNERS — Special Deals / Promotional
   ============================================================ */

/* ── TOP BANNER — fixed at very top, above navbar ── */
.banner-top-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1001; /* above navbar z-index:1000 */
    width: 100%;
}

/* ── TICKER BANNER (slim top bar, scrolling text) ── */
.banner-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    z-index: 999;
}
.banner-ticker-inner {
    display: flex;
    align-items: center;
    padding: 11px 0;
    position: relative;
}
.banner-ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 28s linear infinite;
    white-space: nowrap;
}
.banner-ticker:hover .banner-ticker-track { animation-play-state: paused; }
.banner-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-right: 60px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.banner-ticker-sep {
    font-size: 16px;
    opacity: 0.4;
}
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.banner-ticker .ticker-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    flex-shrink: 0;
}
.banner-ticker .ticker-cta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1.5px solid currentColor;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}
.banner-dismiss-ticker {
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    border: none; background: rgba(0,0,0,0.2);
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; z-index: 2;
    transition: background 0.2s;
}
.banner-dismiss-ticker:hover { background: rgba(0,0,0,0.4); }

/* ── FULL BANNER (large promotional block) ── */
.banner-full {
    width: 100%;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.banner-full-bg-img {
    position: absolute; inset: 0;
    object-fit: cover; width: 100%; height: 100%;
    z-index: 0;
}
.banner-full-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,15,0.65);
    z-index: 1;
}
.banner-full .container { position: relative; z-index: 2; }

/* Decorative blobs */
.banner-full::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.banner-full::after {
    content: '';
    position: absolute; bottom: -80px; left: 10%;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
    pointer-events: none; z-index: 1;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.banner-full-title {
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.banner-full-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    opacity: 0.65;
    max-width: 480px;
    margin-bottom: 32px;
}
.banner-full-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Full banner button variants */
.banner-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-weight: 600; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 13px 28px; border-radius: var(--radius);
    text-decoration: none; transition: all 0.3s; white-space: nowrap; cursor: pointer; border: none;
}
.banner-btn.primary { background: var(--champagne); color: var(--obsidian); border: 2px solid var(--champagne); }
.banner-btn.primary:hover { background: var(--champagne-lt); box-shadow: 0 8px 28px rgba(201,169,110,0.35); transform: translateY(-2px); }
.banner-btn.outline { background: transparent; border: 2px solid currentColor; }
.banner-btn.outline:hover { background: currentColor; }
.banner-btn.ghost { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); color: #fff; }
.banner-btn.ghost:hover { background: rgba(255,255,255,0.2); }

/* Countdown timer inside banner */
.banner-countdown { display: flex; gap: 12px; align-items: center; }
.countdown-unit { text-align: center; }
.countdown-num {
    font-size: 1.8rem; font-weight: 800; line-height: 1;
    min-width: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 8px 10px;
    display: block;
}
.countdown-label { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; margin-top: 4px; display: block; }
.countdown-sep { font-size: 1.4rem; font-weight: 700; opacity: 0.4; align-self: flex-start; margin-top: 8px; }

/* Dismiss button (full banner) */
.banner-dismiss {
    position: absolute; top: 16px; right: 20px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6); font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; z-index: 3;
}
.banner-dismiss:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ── SPLIT BANNER (image left, text right) ── */
.banner-split {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.banner-split-img-col {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}
.banner-split-img-col img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.banner-split-img-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; opacity: 0.12;
}
.banner-split-text-col { padding: 56px 52px; }
.banner-split-title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.banner-split-sub { font-size: 15px; font-weight: 300; line-height: 1.85; opacity: 0.65; margin-bottom: 28px; }

/* ── MINIMAL BANNER (text-only slim bar) ── */
.banner-minimal {
    width: 100%;
    padding: 22px 0;
    position: relative;
}
.banner-minimal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}
.banner-minimal-title { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.banner-minimal-sub   { font-size: 14px; font-weight: 300; opacity: 0.7; }

/* Responsive */
@media (max-width: 768px) {
    .banner-full { padding: 52px 0; }
    .banner-split-text-col { padding: 36px 24px; }
    .banner-countdown { gap: 8px; }
    .countdown-num { font-size: 1.4rem; min-width: 42px; padding: 6px 8px; }
    .banner-ticker-item { font-size: 12px; }
}
