:root {
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-card-hover: #1a2235;
    --bg-section: #0f1422;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dim: rgba(201,168,76,0.15);
    --cyan: #5bb8d4;
    --white: #f0f0f0;
    --white-bright: #ffffff;
    --text: #c8cdd5;
    --text-muted: #6b7280;
    --text-dim: #4b5563;
    --border: rgba(255,255,255,0.06);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter','Helvetica Neue',sans-serif; color: var(--text); line-height: 1.7; background: var(--bg-dark); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1,h2,h3 { font-family: 'Playfair Display','Georgia',serif; color: var(--white-bright); line-height: 1.2; }
h1 { font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem,3vw,1.6rem); font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text); }
.section-label { text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; font-weight: 600; color: var(--gold); margin-bottom: 12px; }

.btn { display: inline-block; padding: 14px 36px; font-size: 1rem; font-weight: 600; border-radius: 4px; cursor: pointer; transition: all 0.3s; border: none; text-align: center; letter-spacing: 0.5px; }
.btn-primary { background: var(--gold); color: var(--bg-dark); }
.btn-primary:hover { background: var(--gold-light); color: var(--bg-dark); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,0.3); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* Header */
.site-header { background: rgba(10,14,26,0.95); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
.header-top { background: rgba(0,0,0,0.3); padding: 6px 0; font-size: 0.8rem; color: var(--text-muted); }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: var(--gold); }
.header-main { padding: 16px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-main { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; color: var(--white-bright); letter-spacing: 2px; line-height: 1.1; }
.logo-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); font-weight: 500; }
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a { color: var(--text-muted); font-weight: 500; padding: 8px 14px; border-radius: var(--radius); font-size: 0.9rem; transition: all 0.3s; }
.nav-main a:hover, .nav-main a.active { color: var(--white-bright); }
.nav-main .dropdown { position: relative; }
.nav-main .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--bg-card); box-shadow: var(--shadow-lg); border: 1px solid var(--border); border-radius: var(--radius); min-width: 220px; padding: 8px 0; z-index: 100; }
.nav-main .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 20px; border-radius: 0; font-size: 0.9rem; color: var(--text); }
.dropdown-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* Hero */
.hero { position: relative; padding: 120px 0 140px; background: var(--bg-dark); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead { font-size: 1.15rem; line-height: 1.9; color: var(--text); margin-bottom: 36px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1f35 0%, #0f1422 100%); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Playfair Display',serif; font-size: 1.8rem; text-align: center; padding: 40px; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--gold); color: var(--bg-dark); padding: 14px 22px; border-radius: var(--radius); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; }

/* Sections */
.section { padding: 80px 0; background: var(--bg-dark); }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--bg-dark); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header p { font-size: 1.1rem; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.service-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.3s; border: 1px solid var(--border); text-decoration: none; display: block; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow); background: var(--bg-card-hover); }
.service-card .icon { width: 56px; height: 56px; margin: 0 auto 20px; background: var(--gold-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--white-bright); }
.service-card p { font-size: 0.9rem; margin-bottom: 14px; color: var(--text-muted); }
.service-card .learn-more { font-weight: 600; font-size: 0.85rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 40px; }
.feature { text-align: center; }
.feature .number { font-family: 'Playfair Display',serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.feature h4 { color: var(--white-bright); margin-bottom: 8px; }
.feature p { font-size: 0.95rem; color: var(--text-muted); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 20px; }
.testimonial-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); border-left: 3px solid var(--gold); }
.testimonial-card blockquote { font-style: italic; font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.testimonial-card .attribution { font-weight: 600; color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* CTA Banner */
.cta-banner { background: var(--bg-card); padding: 60px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-banner h2 { color: var(--white-bright); margin-bottom: 16px; }
.cta-banner p { color: var(--text); font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Contact Form */
.contact-form { max-width: 700px; margin: 0 auto; background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--white-bright); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 1rem; color: var(--white); background: rgba(255,255,255,0.05); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; }
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h3 { color: var(--gold); }

/* Footer */
.site-footer { background: #060810; color: var(--text-muted); padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-main { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { margin-top: 16px; font-size: 0.85rem; color: var(--text-dim); }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-family: 'Inter',sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-dim); }

/* Page Hero */
.page-hero { padding: 80px 0; background: var(--bg-dark); text-align: center; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { font-size: 1.1rem; color: var(--text); max-width: 640px; margin: 0 auto; }

/* Content Sections */
.content-section { padding: 60px 0; background: var(--bg-dark); }
.content-section .container { max-width: 800px; }
.content-section h2 { margin-bottom: 16px; font-size: 1.8rem; margin-top: 40px; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { margin-top: 32px; margin-bottom: 12px; color: var(--gold); }
.content-section p { font-size: 1.02rem; line-height: 1.9; }
.content-section ul { margin: 16px 0 24px 24px; color: var(--text); }
.content-section li { margin-bottom: 8px; line-height: 1.7; }
.content-section strong { color: var(--white-bright); }

/* Service layout */
.service-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; max-width: var(--max-width); }
.service-sidebar { background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px; height: fit-content; position: sticky; top: 100px; border: 1px solid var(--border); }

/* Responsive */
@media (max-width: 968px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero .lead { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    .nav-main { display: none; }
    .nav-main.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); padding: 16px; }
    .nav-toggle { display: block; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section { padding: 50px 0; }
}
