/* ═══════════════════════════════════════════════════
   MD SECURITY — PREMIUM REDESIGN
   ═══════════════════════════════════════════════════ */

:root {
    --bg-main: #050505;
    --bg-section: #080808;
    --bg-card: #0a0a0a;

    --gold-solid: #C59B5F;
    --gold-bright: #E8D09E;
    --gold-dim: #8A5E24;
    --gold-gradient: linear-gradient(135deg, #C59B5F 0%, #E8D09E 50%, #A27231 100%);
    --gold-hover: linear-gradient(135deg, #E8D09E 0%, #C59B5F 50%, #8A5E24 100%);

    --text-light: #f0ece4;
    --text-muted: #7a7068;
    --border-subtle: rgba(197, 155, 95, 0.15);

    --font-heading: 'Cormorant Garamond', serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-solid); }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; }

/* ── PARTICLE CANVAS ── */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}


/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 18px 38px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none; font-weight: 600; font-family: var(--font-body);
    border-radius: 0; position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.05);
    opacity: 0; transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-block { width: 100%; }

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 20px rgba(197, 155, 95, 0.2);
}
.btn-gold:hover {
    background: var(--gold-hover);
    box-shadow: 0 8px 35px rgba(197, 155, 95, 0.45);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-solid);
    border: 1px solid rgba(197, 155, 95, 0.5);
}
.btn-outline:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(197, 155, 95, 0.3);
    transform: translateY(-3px);
}

/* ── SECTION LABEL ── */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-solid);
    margin-bottom: 1.2rem;
    display: block;
}

/* ── HEADER ── */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}
header.scrolled {
    padding: 12px 5%;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.logo-link { display: flex; align-items: center; gap: 14px; }
.header-logo { height: 55px; transition: height 0.4s ease; }
header.scrolled .header-logo { height: 40px; }

.logo-text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    letter-spacing: 4px;
    font-weight: 600;
}

nav ul { display: flex; gap: 38px; align-items: center; }
nav a {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(240,236,228,0.7); position: relative; padding-bottom: 6px;
}
nav a::after {
    content: ''; position: absolute; width: 0; height: 1px;
    bottom: 0; left: 0; background: var(--gold-gradient); transition: width 0.3s ease;
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--gold-bright); }

.mobile-only { display: none; }
.header-actions { display: flex; align-items: center; gap: 28px; }
.lang-btn { font-size: 0.8rem; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; }
.lang-btn:hover { color: var(--gold-bright); }

/* Mobile Hamburger */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 6px;
    cursor: pointer; z-index: 1001; width: 28px;
}
.mobile-menu-btn span {
    display: block; height: 1px; background: var(--gold-solid);
    transition: all 0.3s ease; transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 7%;
    background: url('hero.jpeg') center/cover no-repeat fixed;
    overflow: hidden;
    z-index: 1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.82) 45%,
        rgba(0,0,0,0.35) 75%,
        rgba(0,0,0,0.15) 100%);
    z-index: 1;
}
.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    z-index: 2; pointer-events: none; opacity: 0.5;
}

.hero-content {
    position: relative; z-index: 3;
    max-width: 900px; margin-top: 60px;
}

/* Hero eyebrow */
.hero-eyebrow {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-eyebrow.animate { opacity: 1; transform: translateY(0); }
.eyebrow-line { flex: 0 0 40px; height: 1px; background: var(--gold-solid); }
.eyebrow-text {
    font-size: 0.72rem; letter-spacing: 6px; text-transform: uppercase;
    color: var(--gold-bright); font-weight: 500;
}

/* Hero headline — cinematic split */
.hero-headline {
    display: flex; flex-direction: column;
    line-height: 0.88;
    margin-bottom: 2.5rem;
}
.headline-top, .headline-mid, .headline-bot {
    opacity: 0; transform: translateY(60px) skewY(3deg);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.headline-top.animate, .headline-mid.animate, .headline-bot.animate {
    opacity: 1; transform: translateY(0) skewY(0);
}

.headline-top {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: rgba(240,236,228,0.25);
    letter-spacing: 12px;
}
.headline-mid {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 12.5rem);
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.85;
}
.headline-bot {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    letter-spacing: 8px;
    color: var(--text-light);
}

.hero-sub {
    font-size: 1rem; color: rgba(240,236,228,0.65); line-height: 1.9;
    max-width: 520px; margin-bottom: 3rem;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.hero-sub.animate { opacity: 1; transform: translateY(0); }

.hero-buttons {
    display: flex; gap: 20px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-buttons.animate { opacity: 1; transform: translateY(0); }

/* Hero counter */
.hero-counter {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem; letter-spacing: 3px; color: var(--gold-solid);
    opacity: 0.6;
}
.counter-line { width: 1px; height: 60px; background: var(--gold-solid); opacity: 0.5; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 50px; left: 7%;
    z-index: 3; display: flex; flex-direction: column; align-items: flex-start;
    gap: 12px; color: var(--gold-solid);
}
.scroll-text {
    font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
    writing-mode: vertical-rl; text-orientation: mixed;
}
.scroll-line {
    width: 1px; height: 60px; background: var(--gold-solid);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { height: 60px; opacity: 0.4; }
    50% { height: 90px; opacity: 1; }
}

/* ── TRUST BAR ── */
.trust-bar {
    position: relative; z-index: 1;
    background: rgba(8,8,8,0.95);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 0;
    overflow: hidden;
}
.trust-track {
    display: flex; align-items: center; gap: 40px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--text-muted);
}
.trust-dot { color: var(--gold-solid); font-size: 0.5rem; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
    display: flex; gap: 80px;
    padding: 140px 7%;
    position: relative; z-index: 1;
    align-items: center;
}

.about-image-wrapper {
    flex: 0 0 42%;
    position: relative;
}
.about-image {
    height: 600px;
    background: url('ÜberUns.JPG') center/cover no-repeat;
    position: relative; z-index: 2;
    box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}
.about-image-frame {
    position: absolute;
    top: -20px; right: -20px;
    bottom: 20px; left: 20px;
    border: 1px solid var(--border-subtle);
    z-index: 1;
    transition: all 0.5s ease;
}
.about-image-wrapper:hover .about-image-frame {
    top: -28px; right: -28px; bottom: 28px; left: 28px;
    border-color: var(--gold-solid);
}
.about-stat {
    position: absolute;
    bottom: -30px; right: -30px;
    z-index: 3;
    background: var(--gold-gradient);
    color: #000;
    padding: 28px 36px;
    display: flex; flex-direction: column; align-items: center;
}
.stat-num { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 2px; line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; margin-top: 6px; }

.about-text { flex: 1; }
.about-text h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
}
.about-text h2 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lead-text {
    font-size: 1.15rem; color: var(--gold-bright);
    font-family: var(--font-heading); font-weight: 300;
    line-height: 1.6; margin-bottom: 1.5rem;
}
.about-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* ── SERVICES ── */
.services {
    padding: 120px 7%;
    background: var(--bg-section);
    position: relative; z-index: 1;
}
.services-header {
    margin-bottom: 70px;
}
.services-header h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    color: var(--text-light);
}
.services-header h2 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
}
.service-card::before {
    content: attr(data-num);
    position: absolute; top: 24px; right: 28px;
    font-family: var(--font-display);
    font-size: 4rem; color: rgba(255,255,255,0.04);
    z-index: 0; line-height: 1;
    transition: all 0.5s ease;
}
.service-card:hover::before { color: rgba(197,155,95,0.08); transform: scale(1.2); }

.service-img {
    height: 380px;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.service-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.95));
}
.service-card:hover .service-img { transform: scale(1.06); }

.cp-img { background-image: url('cp.jpeg'); }
.luxury-img { background-image: url('Transport3.JPG'); }
.escort-img { background-image: url('Personschutz2.JPG'); }
.event-img { background-image: url('Event.JPG'); }

.service-content {
    padding: 35px 38px 40px;
    position: relative; z-index: 2;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    transition: border-color 0.4s;
}
.service-card:hover .service-content { border-color: rgba(197,155,95,0.4); }

.service-icon {
    width: 50px; height: 50px;
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-solid); font-size: 1.2rem;
    margin-bottom: 18px;
    transition: all 0.4s ease;
    background: rgba(197,155,95,0.05);
}
.service-card:hover .service-icon {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    transform: rotate(5deg) scale(1.05);
}

.service-content h3 {
    font-size: 1.5rem; margin-bottom: 12px;
    color: var(--text-light);
    transition: color 0.3s;
}
.service-card:hover .service-content h3 { color: var(--gold-bright); }
.service-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

.service-link {
    color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 2.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 10px;
    transition: color 0.3s;
}
.service-link i { color: var(--gold-solid); transition: transform 0.3s; }
.service-card:hover .service-link { color: var(--gold-bright); }
.service-card:hover .service-link i { transform: translateX(6px); }

/* ── HIGHLIGHTS ── */
.highlights {
    padding: 140px 7%;
    background: var(--bg-main);
    position: relative; overflow: hidden; z-index: 1;
}
.highlights-bg-text {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 22vw;
    color: rgba(197,155,95,0.025);
    white-space: nowrap;
    pointer-events: none; user-select: none;
    letter-spacing: 20px;
}
.highlights-inner { position: relative; z-index: 2; }
.highlights-inner h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--text-light);
    line-height: 1.1;
}
.highlights-inner h2 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border-subtle);
}

.highlight-item {
    padding: 50px 40px;
    display: flex; align-items: flex-start; gap: 24px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.highlight-item::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold-gradient);
    transition: width 0.5s ease;
}
.highlight-item:hover::after { width: 100%; }
.highlight-item:hover { background: rgba(197,155,95,0.03); }

.hi-icon-wrap {
    width: 52px; height: 52px; flex-shrink: 0;
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold-solid);
    background: rgba(197,155,95,0.04);
    transition: all 0.4s ease;
}
.highlight-item:hover .hi-icon-wrap {
    background: var(--gold-gradient);
    color: #000; border-color: transparent;
}
.highlight-item h4 {
    font-family: var(--font-body);
    font-size: 0.72rem; letter-spacing: 3px;
    color: var(--gold-bright); margin-bottom: 8px;
}
.highlight-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-page {
    padding: 140px 7%;
    background: url('hero.jpeg') center/cover fixed;
    position: relative; z-index: 1;
}
.contact-page::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(5,5,5,0.95);
}
.contact-container {
    position: relative; z-index: 2;
    display: flex; gap: 90px;
    max-width: 1300px; margin: 0 auto;
    align-items: flex-start;
}

.contact-details { flex: 1; padding-top: 20px; }
.contact-details h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05; color: var(--text-light);
    margin-bottom: 2rem;
}
.contact-details h2 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 3.5rem; line-height: 1.8; }

.contact-info-block {
    display: flex; align-items: center; gap: 28px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}
.contact-info-block:last-child { border-bottom: none; }

.info-icon-large {
    width: 64px; height: 64px; flex-shrink: 0;
    border-radius: 0;
    border: 1px solid var(--border-subtle);
    background: rgba(197, 155, 95, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-solid); font-size: 1.4rem;
    transition: all 0.3s ease;
}
.contact-info-block:hover .info-icon-large {
    background: var(--gold-gradient);
    color: #000; border-color: transparent;
}
.gold-subtitle {
    font-family: var(--font-body);
    color: var(--gold-solid); font-size: 0.68rem;
    letter-spacing: 4px; margin-bottom: 6px; display: block;
}
.big-contact { font-size: 1.6rem; font-family: var(--font-heading); color: var(--text-light); }
.medium-contact { font-size: 1.15rem; color: var(--text-light); }

.glass-form {
    flex: 1;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 60px 56px;
    border: 1px solid rgba(197, 155, 95, 0.25);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(197,155,95,0.1);
}
.glass-form h3 {
    font-size: 2.6rem; margin-bottom: 8px;
    color: var(--gold-bright);
}
.form-subtitle { margin-bottom: 35px; color: var(--text-muted); font-size: 0.82rem; letter-spacing: 0.5px; }

.form-row { display: flex; gap: 20px; }
.half-width { flex: 1; }
.form-group { margin-bottom: 28px; }
.form-label {
    display: block; margin-bottom: 10px;
    font-size: 0.7rem; color: var(--gold-solid);
    text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600;
}
.form-input {
    width: 100%; padding: 16px 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--text-light); font-family: var(--font-body);
    font-size: 0.95rem; transition: all 0.3s ease;
    border-radius: 0; outline: none;
}
.form-input::placeholder { color: rgba(122,112,104,0.6); }
.form-input:focus {
    border-color: var(--gold-solid);
    background: rgba(0,0,0,0.85);
    box-shadow: 0 0 0 1px rgba(197,155,95,0.2), 0 4px 20px rgba(0,0,0,0.4);
}
.custom-select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23C59B5F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 10px;
}
.custom-select option { background: #0a0a0a; }

.radio-group { display: flex; gap: 24px; margin-top: 10px; flex-wrap: wrap; }
.radio-option {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.3s ease;
}
.radio-option:has(input:checked) {
    border-color: var(--gold-solid);
    background: rgba(197,155,95,0.06);
}
.radio-option input[type="radio"] { accent-color: var(--gold-solid); width: 16px; height: 16px; }

/* ── FOOTER ── */
footer {
    padding: 90px 7% 35px;
    background: #030303;
    border-top: 1px solid var(--border-subtle);
    position: relative; z-index: 1;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-col h4 {
    color: var(--gold-solid); font-size: 0.7rem;
    margin-bottom: 28px; text-transform: uppercase; letter-spacing: 3px;
    font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 16px; }
.footer-col ul li a, .footer-col > p { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold-bright); padding-left: 6px; }
.footer-col ul li { transition: padding 0.3s; }

.footer-social { margin-top: 28px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--border-subtle);
    color: var(--gold-solid); font-size: 1.1rem;
    transition: all 0.3s ease; margin-right: 10px;
}
.footer-social a:hover {
    background: var(--gold-gradient); color: #000; border-color: transparent;
    transform: translateY(-4px); box-shadow: 0 8px 20px rgba(197,155,95,0.25);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 35px; margin-top: 70px;
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: rgba(122,112,104,0.7);
    letter-spacing: 0.5px;
}
.footer-bottom a:hover { color: var(--gold-solid); }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(50px); transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1200px) {
    .contact-container { flex-direction: column; gap: 60px; }
    .glass-form { width: 100%; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .about { flex-direction: column; gap: 80px; }
    .about-image-wrapper { flex: none; width: 100%; }
    .about-image { height: 420px; }
    .about-stat { right: 20px; bottom: -20px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-counter { display: none; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .header-actions { display: none; }
    .mobile-only { display: block; }

    nav ul {
        flex-direction: column;
        position: absolute; top: 100%; left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.99);
        border-bottom: 1px solid var(--border-subtle);
        padding: 35px 0; gap: 28px;
        text-align: center;
        transform: translateY(-110%);
        opacity: 0; visibility: hidden;
        transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }
    nav ul.active { transform: translateY(0); opacity: 1; visibility: visible; }

    .hero { background-attachment: scroll; padding: 0 5%; }
    .headline-mid { font-size: clamp(4rem, 18vw, 6rem); }
    .headline-top { font-size: clamp(2.5rem, 10vw, 4rem); }
    .headline-bot { font-size: clamp(1.8rem, 7vw, 3rem); }
    .hero-sub { font-size: 0.92rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .scroll-indicator { display: none; }

    .about, .services, .highlights, .contact-page { padding: 80px 5%; }
    .about-image { height: 320px; }

    .services-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-item { border-right: none; }

    .glass-form { padding: 36px 24px; }
    .glass-form h3 { font-size: 2rem; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-info-block { flex-direction: column; text-align: center; gap: 14px; }
    .radio-group { flex-direction: column; }
    .radio-option { justify-content: center; }

    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-social { display: flex; justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }

    
}

/* ── LEGAL PAGES ── */
.legal-section { padding: 150px 6% 100px; background: var(--bg-main); min-height: 70vh; }
.legal-container {
    max-width: 900px; margin: 0 auto;
    background: var(--bg-section); padding: 60px;
    border: 1px solid var(--border-subtle);
}
.legal-container h1 { font-size: 2.5rem; color: var(--gold-bright); margin-bottom: 40px; }
.legal-container h2 { font-size: 1.5rem; color: var(--gold-solid); margin-top: 40px; margin-bottom: 15px; }
.legal-container h3 { font-size: 1.2rem; color: var(--text-light); margin-top: 25px; margin-bottom: 10px; }
.legal-container p, .legal-container ul { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.legal-container ul { margin-left: 20px; list-style-type: square; }
.legal-container a { color: var(--gold-solid); text-decoration: underline; }
.legal-container a:hover { color: var(--gold-bright); }
