/* ═══════════════════════════════════════════════
   Veldon Funding – Production CSS
   Version 2.0 | Premium Dark + Gold
   ═══════════════════════════════════════════════ */

:root {
    --charcoal: #111111;
    --charcoal-light: #1a1a1a;
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #A88B3A;
    --gold-rgb: 201, 168, 76;
    --white: #FFFFFF;
    --off-white: #F0EDE6;
    --gray: #999999;
    --gray-light: #CCCCCC;
    --dark-gray: #2A2A2A;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(201, 168, 76, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.25s ease;
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.08);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Accent ── */
.accent {
    color: var(--gold);
}

/* ══════════════════════════════
   Typography
   ══════════════════════════════ */
h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

p.lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* ══════════════════════════════
   Header & Navigation
   ══════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.logo a:hover .logo-img {
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.25));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    transition: var(--transition);
}

.logo-text .sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: var(--gray-light);
    margin-top: 3px;
}

.logo a:hover .logo-text {
    color: var(--gold-light);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    height: auto;
}

/* Desktop Nav */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-links a:not(.btn-outline):hover {
    color: var(--gold);
}

.nav-links a:not(.btn-outline):hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    border-bottom: 2px solid var(--gold);
    margin-left: 1.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--gold);
    padding-left: 3rem;
}

.btn-outline {
    border: 1px solid var(--gold);
    padding: 0.7rem 1.5rem;
    color: var(--gold) !important;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal) !important;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.full-width {
    width: 100%;
}

/* ══════════════════════════════
   Particle Canvas
   ══════════════════════════════ */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ══════════════════════════════
   Hero Section
   ══════════════════════════════ */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #080808;
    background-image:
        linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.7) 50%, rgba(17, 17, 17, 0.85) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--charcoal), transparent);
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hill-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
    position: relative;
}

.hill-line::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 20px;
    height: 10px;
    border-top: 2px solid var(--gold);
    border-radius: 50% 50% 0 0;
}

#hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ══════════════════════════════
   Services Section
   ══════════════════════════════ */
#services {
    padding: 8rem 0;
    background-color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1.2rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.section-header p {
    color: var(--gray);
    font-weight: 300;
    max-width: 550px;
    margin: 1rem auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 3.5rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

.card-link {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    color: var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card:hover .card-link {
    color: var(--gold);
    gap: 0.8rem;
}

/* ══════════════════════════════
   Stats / Trust Section
   ══════════════════════════════ */
#stats {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, #0d0d0d 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--gray);
    font-weight: 500;
}

/* ══════════════════════════════
   Advantage Section
   ══════════════════════════════ */
#advantage {
    padding: 8rem 0;
    background-color: #0c0c0c;
    position: relative;
    z-index: 1;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.advantage-image {
    position: relative;
    height: 550px;
    background-image:
        linear-gradient(135deg, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.1) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1200');
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.advantage-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.8) 0%, transparent 50%);
}

.mini-hill {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 20s linear infinite alternate;
    z-index: 2;
    background: rgba(201, 168, 76, 0.03);
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.advantage-text {
    position: relative;
    z-index: 2;
}

.advantage-text h2 {
    margin-bottom: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.advantage-item:hover {
    border-color: var(--border-gold);
    background: var(--glass-bg-hover);
    transform: translateX(5px);
}

.advantage-item .icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.advantage-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    font-weight: 300;
}

/* ══════════════════════════════
   Form / Contact Section
   ══════════════════════════════ */
#contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0c0c0c, var(--charcoal));
    position: relative;
    z-index: 1;
}

.form-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--charcoal-light);
    padding: 4rem;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.form-header p {
    color: var(--gray);
    font-weight: 300;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    color: var(--gold);
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group select option {
    background: var(--charcoal-light);
    color: var(--white);
}

.form-footer {
    text-align: center;
    position: relative;
}

.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* ── Success State ── */
.hidden {
    display: none;
}

.success-content {
    text-align: center;
    padding: 3rem 0;
}

.success-content h3 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
    color: var(--gold);
}

.success-content p {
    color: var(--gray);
}

/* ══════════════════════════════
   Footer
   ══════════════════════════════ */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-gold);
    background: #080808;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    font-weight: 300;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: var(--transition);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════
   Subpage Styles
   ══════════════════════════════ */
.subpage-hero {
    padding: 12rem 0 5rem;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.82) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.subpage-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--charcoal), transparent);
}

.narrow-container {
    max-width: 800px;
}

.content-section {
    padding: 6rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.content-section h2,
.content-section h3 {
    color: var(--white);
    margin: 2.5rem 0 1.5rem;
}

.content-section p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-weight: 300;
}

.content-section ul {
    margin: 1.5rem 0 2.5rem 1.5rem;
    list-style: none;
}

.content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ── Quote Block ── */
.quote-block {
    margin: 3rem 0;
    padding: 2.5rem 3rem;
    border-left: 2px solid var(--gold);
    background: var(--glass-bg);
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
}

.quote-block blockquote {
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.quote-block cite {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
}

/* ── CTA Box ── */
.cta-box {
    margin-top: 5rem;
    padding: 4rem;
    background: rgba(201, 168, 76, 0.03);
    border: 1px solid var(--border-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 0;
}

/* ── Contact Page Grid ── */
.contact-layout {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-card {
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    height: fit-content;
}

.contact-info-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.info-item .icon {
    color: var(--gold);
    flex-shrink: 0;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.info-item a {
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--gold);
}

textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    margin-top: 0.5rem;
    transition: var(--transition);
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

/* ── FAQ Styles ── */
.faq-item {
    margin-bottom: 1.5rem;
    padding: 2rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--border-gold);
    background: var(--glass-bg-hover);
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0;
}

/* ══════════════════════════════
   Scroll Reveal Animations
   ══════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ══════════════════════════════
   Loading Screen
   ══════════════════════════════ */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ══════════════════════════════
   Responsive Design
   ══════════════════════════════ */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .advantage-image {
        height: 350px;
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Mobile Nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        border-left: 1px solid var(--border-gold);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.15rem;
    }

    .nav-links a:not(.btn-outline)::after {
        display: none;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Sections */
    #hero {
        background-attachment: scroll;
        min-height: 600px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 0.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 2.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .subpage-hero {
        padding: 10rem 0 4rem;
    }

    .quote-block {
        padding: 2rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-item .icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ══════════════════════════════
   Print Styles
   ══════════════════════════════ */
@media print {

    header,
    footer,
    #particle-canvas,
    #loading-screen,
    .hamburger,
    .nav-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .service-card,
    .advantage-item,
    .form-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}