:root {
    --bg-dark: #1E201E;
    --bg-medium: #2C2E2B;
    --bg-light: #3C3D37;
    --accent: #D4AF37;
    --accent-hover: #ECDFCC;
    --text-light: #F5F5F7;
    --text-gray: #B0B0B0;
    --border-color: #4A4B45;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Noto Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Skip link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 10px 15px;
    font-weight: bold;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus-visible {
    top: 20px;
}

/* Navigation & Header */
.site-header {
    background-color: rgba(30, 32, 30, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover, .nav-menu a:focus-visible {
    color: var(--accent);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
    border: 2px solid var(--accent);
}

.btn-primary:hover, .btn-primary:focus-visible {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.hero-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.hero-section p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-medium);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1 1 200px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1 1 250px;
    background-color: var(--bg-medium);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 42px;
    color: rgba(212, 175, 55, 0.2);
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
}

.process-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Values/Trust Section */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-medium);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.values-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.values-text {
    flex: 1 1 500px;
}

.values-text h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    margin-bottom: 25px;
}

.styled-list {
    list-style: none;
    margin-top: 20px;
}

.styled-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.styled-list li i {
    color: var(--accent);
    margin-right: 12px;
    margin-top: 5px;
}

.values-image-block {
    flex: 1 1 400px;
}

.values-image-block img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* Services Teaser */
.services-teaser {
    padding: 100px 0;
}

.services-teaser-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.teaser-card {
    flex: 1 1 300px;
    background-color: var(--bg-medium);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.teaser-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.teaser-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.link-arrow {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
}

.link-arrow:hover {
    color: var(--accent-hover);
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-medium);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    flex: 1 1 300px;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
}

.pricing-card.featured .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 15px;
}

.price-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* Lead Contact Form */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 25px;
}

.contact-form-block {
    flex: 1 1 500px;
    background-color: var(--bg-medium);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: 4px;
    font-family: var(--font-body);
}

input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

.form-consent {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.form-consent input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-consent label {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.form-consent a {
    color: var(--accent);
}

/* Trust Layer (Global) */
.trust-layer {
    background-color: var(--bg-medium);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.trust-box {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 6px;
}

.trust-box h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent);
}

.trust-box p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.trust-disclaimer {
    font-size: 12px !important;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.trust-disclaimer a {
    color: var(--accent);
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h5 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    font-size: 13px;
    color: var(--text-gray);
}

.footer-corporate {
    margin-top: 10px;
    font-size: 11px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 46, 43, 0.98);
    border-top: 2px solid var(--accent);
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 13px;
}

/* FAQ/Inner Hero Pages */
.inner-hero {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.inner-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 15px;
}

.faq-accordion-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-details {
    background-color: var(--bg-medium);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-details summary {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-details summary::after {
    content: "+";
    font-family: monospace;
    font-size: 20px;
}

.faq-details[open] summary::after {
    content: "-";
}

.faq-content {
    padding: 0 20px 20px 20px;
    border-top: 1px solid var(--border-color);
    background-color: rgba(30,32,30,0.3);
}

.faq-footer-help {
    margin-top: 50px;
}

/* Services Page list */
.services-detail-section {
    padding: 100px 0;
}

.service-detail-row {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-detail-row.reverse {
    flex-direction: row-reverse;
}

.service-detail-img, .service-detail-text {
    flex: 1 1 450px;
}

.service-detail-img img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.service-detail-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    margin-top: 25px;
}

.benefit-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.benefit-list li i {
    color: var(--accent);
    margin-right: 10px;
}

/* Legal static pages */
.legal-page-section {
    padding: 100px 0;
    max-width: 850px;
    margin: 0 auto;
}

.legal-page-section h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 10px;
}

.legal-page-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--accent);
}

.legal-page-section p {
    margin-bottom: 15px;
}

.legal-page-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.contact-card-info {
    background-color: var(--bg-medium);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 6px;
    margin: 25px 0;
}

.contact-card-info p {
    margin-bottom: 10px;
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Thank you page */
.thank-you-main, .error-main {
    padding: 120px 0;
}

.thank-you-card, .error-card {
    background-color: var(--bg-medium);
    padding: 60px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-width: 650px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: var(--accent);
    margin-bottom: 25px;
}

.alert-icon {
    font-size: 64px;
    color: var(--accent);
    margin-bottom: 25px;
}

/* About Grid */
.about-content-section {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text-col {
    flex: 1 1 550px;
}

.about-text-col h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text-col h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-principles {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle-box {
    background-color: var(--bg-medium);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.principle-box i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 15px;
}

.principle-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Contact Page specific */
.contact-page-section {
    padding: 100px 0;
}

.contact-page-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details-col {
    flex: 1 1 450px;
}

.contact-details-col h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-form-col {
    flex: 1 1 500px;
    background-color: var(--bg-medium);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form-col h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 25px;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 34px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .burger-menu {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }
    .nav-menu.active {
        display: flex;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}