:root {
    --color-bg-dark: #09090B;
    --color-surface: #18181B;
    --color-surface-2: #3F3F46;
    --color-accent: #F59E0B;
    --color-text: #FAFAFA;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 56px; font-weight: 700; }
h2 { font-size: 42px; font-weight: 600; }
h3 { font-size: 32px; font-weight: 600; }

a {
    text-decoration: none;
    color: var(--color-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: #d97f06;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-bg-dark);
}

.btn-block {
    width: 100%;
    display: block;
}

.text-amber {
    color: var(--color-accent);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--color-surface);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--color-accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.hero-bg-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(9, 9, 11, 0) 70%);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    filter: blur(40px);
}

.hero-content {
    max-width: 900px;
}

.sub-heading {
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-desc {
    margin: 20px 0 40px;
    color: #ccc;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.about-card, .feature-card, .service-card, .review-card {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-surface-2);
    transition: all 0.4s ease;
}

.about-card:hover, .feature-card:hover, .service-card:hover, .review-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card h3, .feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-card p, .feature-card p {
    color: #ccc;
    font-size: 16px;
}

/* Stats */
.stats-section {
    background-color: var(--color-surface);
    padding: 60px 0;
    border-top: 1px solid var(--color-surface-2);
    border-bottom: 1px solid var(--color-surface-2);
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.stat-item p {
    color: #ccc;
}

/* Process */
.process-section {
    background-color: var(--color-surface);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-surface-2);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: left;
}

.process-step:nth-child(even) {
    text-align: right;
    justify-content: flex-end;
}

.process-step .step-content {
    width: 45%;
    background-color: var(--color-bg-dark);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--color-surface-2);
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    z-index: 1;
}

/* Services */
.service-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-icon {
    margin-bottom: 10px;
}

/* Insurance */
.insurance-section {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
    padding: 80px 0;
    text-align: center;
}

.insurance-content h2 {
    margin-bottom: 20px;
}

.insurance-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 40px;
    border-radius: 16px;
}

.booking-form, .contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

input, select, textarea {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-surface-2);
    padding: 14px;
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-surface);
    border: 1px solid var(--color-surface-2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text);
    padding: 20px;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* Reviews */
.reviews-section {
    background-color: var(--color-surface);
}

.stars {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.reviewer {
    margin-top: 15px;
    font-weight: 600;
    color: var(--color-accent);
}

/* Contact */
.contact-layout {
    align-items: start;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--color-accent);
}

.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-surface);
}

.footer-grid {
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-col p {
    color: #ccc;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex-grow: 1;
}

.footer-bottom {
    border-top: 1px solid var(--color-surface);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #666;
    font-size: 14px;
}

.legal-links a:hover {
    color: var(--color-accent);
}

/* Animations */
.fade-in, .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible, .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-surface);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: calc(100vh - 70px);
        justify-content: center;
        gap: 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step, .process-step:nth-child(odd), .process-step:nth-child(even) {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding-left: 60px;
    }

    .process-step .step-content {
        width: 100%;
        text-align: left;
    }

    .step-number {
        left: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}