/* Global Styles & Reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #dc2626;
    /* red-600 */
    --primary-hover: #b91c1c;
    /* red-700 */
    --primary-light: #fee2e2;
    /* red-100 */
    --secondary: #111827;
    /* gray-900 */
    --text-dark: #1f2937;
    /* gray-800/900 mix */
    --text-light: #4b5563;
    /* gray-600 */
    --bg-light: #f9fafb;
    /* gray-50 */
    --white: #ffffff;
    --yellow: #facc15;
    --green: #16a34a;
    --green-bg: #dcfce7;
    --blue-bg: #eff6ff;
    --blue-border: #bfdbfe;

    --font-sans: 'Inter', sans-serif;
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s, background-color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.italic {
    font-style: italic;
}

.text-red {
    color: var(--primary);
}

.text-red-400 {
    color: #f87171;
}

.text-gray {
    color: var(--text-light);
}

.text-gray-400 {
    color: #9ca3af;
}

/* lighter gray for footer links */
.text-white {
    color: var(--white);
}

.text-yellow-400 {
    color: var(--yellow);
}

.text-green-600 {
    color: var(--green);
}

.text-dark {
    color: var(--text-dark);
}

.bg-gray-50 {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

.bg-dark {
    background-color: var(--secondary);
    color: var(--white);
}

.bg-red {
    background-color: var(--primary);
    color: var(--white);
}

.bg-red-100 {
    background-color: var(--primary-light);
}

.bg-green-100 {
    background-color: var(--green-bg);
}

.bg-blue-50 {
    background-color: var(--blue-bg);
}

.border-blue-200 {
    border-color: var(--blue-border);
}

.fill-current {
    fill: currentColor;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}


/* Layout */
.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .md\:col-span-2 {
        grid-column: span 2;
    }
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #e5e7eb;
    color: var(--secondary);
}

.btn-outline:hover {
    border-color: #d1d5db;
}

.card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    margin-bottom: 1rem;
}

.icon-circle svg {
    color: var(--primary);
    width: 2rem;
    height: 2rem;
}

.text-center .icon-circle {
    margin-left: auto;
    margin-right: auto;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Header */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a:hover {
    opacity: 0.9;
}

@media (max-width: 640px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: none;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
    border-top: 1px solid #e5e7eb;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
}

.nav-links a:hover {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        position: static;
        box-shadow: none;
        padding: 0;
        border: none;
        width: auto;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Hero Specifics */
.hero-section {
    position: relative;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

/* FAQ */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
}

.faq-button {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.faq-button:hover {
    background-color: var(--bg-light);
}

.faq-content {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

/* Timeline (Process) */
.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    display: flex;
    gap: 2rem;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 5rem;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-icon-wrapper {
    flex-shrink: 0;
    z-index: 1;
}

/* Checkbox */
/* Margins Top */
.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* Padding */
.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-8 {
    padding-top: 2rem;
}

.text-sm {
    font-size: 0.875rem;
}

/* ... existing styles ... */

/* Checkbox */
.checkbox-group {
    /* Removed flex-direction: column to allow grid layout */
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
    margin: 0;
}

/* Responsive Images */
.rounded-lg {
    border-radius: var(--radius);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Maps */
iframe {
    border: 0;
}