/*
Theme Name: Toalete Premium
Theme URI: https://www.toaleteprahova.com/
Author: Canal Trans SRL
Author URI: https://www.toaleteprahova.com/
Description: Tema premium pentru inchirieri toalete ecologice - S.C. Canal Trans S.R.L
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: toalete-premium
*/

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

:root {
    --navy:    #0A1628;
    --navy-mid:#112040;
    --gold:    #C9A96E;
    --gold-lt: #E2C898;
    --green:   #2D6A4F;
    --white:   #FAFAFA;
    --off:     #F2F0EB;
    --gray:    #4A5568;
    --gray-lt: #8A97A8;
    --border:  #E2DDD6;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --max-w: 1140px;
    --section-pad: 96px 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* ===========================
   TYPOGRAPHY
=========================== */
.display-1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.display-2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.label-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad);
}

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.site-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.site-logo .logo-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
}

.site-logo .logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--gold);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.06em !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold-lt) !important;
    color: var(--navy) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

/* Signature element: large ghosted background letter */
.hero::before {
    content: "WC";
    position: absolute;
    right: -0.05em;
    bottom: -0.25em;
    font-family: var(--font-display);
    font-size: clamp(22rem, 40vw, 44rem);
    font-weight: 700;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

/* Thin gold vertical accent line */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {}

.hero-eyebrow {
    margin-bottom: 20px;
}

.hero-headline {
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(201, 169, 110, 0.35);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 28px 32px;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.stat-card .stat-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.8rem;
    opacity: 0.25;
}

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
    background: var(--gold);
    padding: 0;
}

.trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-right: 1px solid rgba(10,22,40,0.15);
}

.trust-item:last-child { border-right: none; }

.trust-item-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trust-item-text {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.2;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
    background: var(--white);
}

.section-header {
    max-width: 560px;
    margin-bottom: 64px;
}

.section-header .label-tag {
    display: block;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-lt);
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--white);
    padding: 40px 36px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--off);
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.25;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray-lt);
    line-height: 1.7;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content .label-tag {
    display: block;
    margin-bottom: 16px;
}

.about-content .display-2 {
    color: var(--white);
    margin-bottom: 28px;
}

.about-content .display-2 em {
    font-style: normal;
    color: var(--gold);
}

.about-body {
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 0.97rem;
}

.about-law {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(201, 169, 110, 0.06);
    border-radius: 0 4px 4px 0;
}

.about-law p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.about-law strong {
    color: var(--gold);
    font-weight: 600;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    background: rgba(255,255,255,0.025);
    transition: border-color 0.25s, background 0.25s;
}

.value-item:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.05);
}

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.value-text {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process {
    background: var(--off);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-top: 64px;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.2rem;
    box-shadow: 0 0 0 6px var(--off), 0 0 0 7px var(--border);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--gray-lt);
    line-height: 1.65;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
    background: var(--green);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%);
}

.cta-banner .label-tag {
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 16px;
}

.cta-banner .display-2 {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 12px;
}

.cta-banner .display-2 em {
    font-style: normal;
    color: var(--gold);
}

.cta-banner-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--navy);
    padding: 18px 36px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.phone-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.35);
    color: var(--navy);
}

.phone-display .phone-icon {
    font-size: 1.2rem;
    color: var(--green);
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .label-tag {
    display: block;
    margin-bottom: 16px;
}

.contact-info .display-2 {
    margin-bottom: 24px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.2s, background 0.2s;
}

.contact-row:hover {
    border-color: var(--gold);
    background: var(--off);
}

.contact-row-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-row-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-lt);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 3px;
}

.contact-row-value {
    font-size: 0.97rem;
    color: var(--navy);
    font-weight: 600;
}

.contact-form-wrap {
    background: var(--off);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: var(--navy);
    padding: 60px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo-main {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.footer-brand .logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
    line-height: 1;
}

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

.footer-col ul li span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}

.footer-firma {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}

/* ===========================
   MOBILE MENU OVERLAY
=========================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

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

.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.4s; opacity: 0; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-stats .stat-card {
        flex: 1;
        min-width: 160px;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-steps::before { display: none; }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .trust-bar-inner {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: none;
        width: 50%;
        border-right: none;
        border-bottom: 1px solid rgba(10,22,40,0.1);
    }

    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:last-child,
    .trust-item:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    :root { --section-pad: 64px 20px; }

    .site-nav { display: none; }
    .hamburger { display: flex; }

    .hero-inner { padding: 100px 20px 64px; }

    .hero-stats {
        flex-direction: column;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .trust-item { width: 100%; }

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

    .phone-display {
        font-size: 1.2rem;
        padding: 14px 24px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }
}

/* ===========================
   PRINT / REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===========================
   GALLERY SLIDER
=========================== */
.gallery-section {
    background: var(--navy);
    padding: 80px 0 0;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    padding: 0 24px 56px;
}

.gallery-header .label-tag {
    display: block;
    margin-bottom: 12px;
}

.gallery-header .display-2 {
    color: var(--white);
}

.gallery-header .display-2 em {
    font-style: normal;
    color: var(--gold);
}

/* Slider wrap */
.slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #060e1a;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* Individual slide */
.slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #060e1a;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
    filter: brightness(0.88);
}

.slide.active img {
    filter: brightness(1);
}

/* Gradient overlay bottom */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 22, 40, 0.75) 100%
    );
    pointer-events: none;
}

/* Caption */
.slide-caption {
    position: absolute;
    bottom: 36px;
    left: 48px;
    right: 48px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.slide-caption::before {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 10px;
    border-radius: 2px;
}

/* Navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s, width 0.25s;
}

.slider-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

/* Counter */
.slider-counter {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    background: rgba(10,22,40,0.6);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Placeholder (cand nu sunt poze) */
.slider-placeholder {
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(201, 169, 110, 0.3);
    margin: 0 24px 40px;
    border-radius: 8px;
}

.slider-placeholder::after { display: none; }

.placeholder-inner {
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.placeholder-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.placeholder-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
}

.placeholder-sub strong {
    color: var(--gold);
}

/* Slider bottom padding (pentru dots) */
.slider-wrap:not(:has(.slider-placeholder)) {
    padding-bottom: 52px;
}

/* Responsive */
@media (max-width: 640px) {
    .slide { aspect-ratio: 4 / 3; }
    .slide-caption { left: 20px; right: 20px; bottom: 52px; font-size: 0.95rem; }
    .slider-btn { width: 40px; height: 40px; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .gallery-section { padding-top: 56px; }
}
