@font-face {
font-family: "Cormorant Garamond";
src: url("../fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Cormorant Garamond";
src: url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Space Grotesk";
src: url("../fonts/SpaceGrotesk-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Space Grotesk";
src: url("../fonts/SpaceGrotesk-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Space Grotesk";
src: url("../fonts/SpaceGrotesk-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Space Grotesk";
src: url("../fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal;
font-display: swap;
}

:root {
--primary: #0f172a;
--accent: #d4af37;
--text: #334155;
--text-light: #64748b;
--bg: #f8fafc;
--white: #ffffff;
--border: #e2e8f0;
--font-heading: 'Cormorant Garamond', serif;
--font-body: 'Space Grotesk', sans-serif;
--spacing-section: 64px;
--spacing-inner: 48px;
}

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

html {
scroll-behavior: smooth;
overflow-x: clip;
}

body {
overflow-x: clip;
font-family: var(--font-body);
color: var(--text);
background-color: var(--bg);
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
}

main {
flex: 1 0 auto;
}

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

a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 28px;
border-radius: 8px;
font-weight: 500;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
color: var(--white);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.btn-primary-white {
background: #ffffff;
color: var(--text);
}

.btn-primary-white:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(210, 210, 211, 0.2);
}

.btn-secondary {
background: var(--white);
color: var(--primary);
border-color: var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: var(--white);
}

.btn-outline {
background: transparent;
color: var(--white);
border-color: var(--white);
}

.btn-outline:hover {
background: var(--white);
color: var(--primary);
}

.badge {
display: inline-block;
padding: 6px 16px;
background: rgba(212, 175, 55, 0.15);
color: var(--accent);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.site-header {
background: var(--white);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 24px;
gap: 24px;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
}

.logo a {
display: flex;
align-items: center;
gap: 12px;
}

.logo span {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
}

.header-notice {
font-size: 0.8rem;
color: var(--text-light);
background: var(--bg);
padding: 6px 12px;
border-radius: 4px;
display: none;
}

@media (min-width: 1024px) {
.header-notice {
display: block;
}
}

.main-nav {
display: none;
}

@media (min-width: 768px) {
.main-nav {
display: block;
}
}

.nav-list {
display: flex;
list-style: none;
gap: 32px;
}

.nav-list a {
font-weight: 500;
color: var(--text);
position: relative;
}

.nav-list a:hover {
color: var(--accent);
}

.mobile-menu-toggle {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

@media (min-width: 768px) {
.mobile-menu-toggle {
display: none;
}
}

.mobile-menu-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--primary);
transition: 0.3s;
}

.hero {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: var(--white);
padding: var(--spacing-section) 0;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
align-items: center;
min-width: 0;
}

.hero-grid > * {
min-width: 0;
max-width: 100%;
}

@media (min-width: 768px) {
.hero-grid {
grid-template-columns: 1fr 1fr;
}
}

.hero-content h1 {
font-family: var(--font-heading);
font-size: clamp(2.5rem, 5vw, 4rem);
line-height: 1.1;
margin-bottom: 24px;
}

.hero-subtitle {
font-size: 1.1rem;
color: #cbd5e1;
margin-bottom: 32px;
max-width: 500px;
}

.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.hero-image img {
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
width: 100%;
height: 450px;
}

section {
padding: var(--spacing-section) 0;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 48px;
}

.section-header h2 {
font-family: var(--font-heading);
font-size: clamp(2rem, 4vw, 3rem);
color: var(--primary);
margin-bottom: 16px;
}

.section-header p {
color: var(--text-light);
font-size: 1.1rem;
}

.link-arrow {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--accent);
font-weight: 600;
margin-top: 16px;
}

.features-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}

@media (min-width: 768px) {
.features-grid {
grid-template-columns: repeat(3, 1fr);
}
}

.feature-card {
background: var(--white);
padding: 32px;
border-radius: 12px;
border: 1px solid var(--border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.feature-icon {
color: var(--accent);
margin-bottom: 20px;
}

.feature-card h3 {
font-family: var(--font-heading);
font-size: 1.5rem;
margin-bottom: 12px;
color: var(--primary);
}

.cars-grid {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}

@media (min-width: 768px) {
.cars-grid {
grid-template-columns: repeat(3, 1fr);
}
}

.car-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--border);
display: flex;
flex-direction: column;
}

.car-image {
height: 240px;
overflow: hidden;
}

.car-image img {
width: 100%;
height: 100%;
transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
transform: scale(1.05);
}

.car-details {
padding: 24px;
display: flex;
flex-direction: column;
flex: 1;
}

.car-details h3 {
font-family: var(--font-heading);
font-size: 1.4rem;
margin-bottom: 12px;
color: var(--primary);
}

.car-specs {
list-style: none;
display: flex;
gap: 16px;
margin-bottom: 20px;
font-size: 0.9rem;
color: var(--text-light);
}

.car-specs li {
display: flex;
align-items: center;
gap: 6px;
}

.car-price {
margin-top: auto;
margin-bottom: 20px;
display: flex;
align-items: baseline;
gap: 8px;
}

.price-label {
font-size: 0.9rem;
color: var(--text-light);
}

.price-value {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
}

.price-period {
font-size: 0.9rem;
color: var(--text-light);
}

.how-it-works {
background: var(--white);
}

.steps-grid {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}

@media (min-width: 768px) {
.steps-grid {
grid-template-columns: repeat(3, 1fr);
}
}

.step-item {
text-align: center;
position: relative;
}

.step-number {
display: inline-block;
width: 48px;
height: 48px;
line-height: 48px;
background: var(--primary);
color: var(--accent);
border-radius: 50%;
font-weight: 700;
font-size: 1.2rem;
margin-bottom: 20px;
}

.step-item img {
width: 100%;
height: 200px;
border-radius: 8px;
margin-bottom: 20px;
object-fit: cover;
}

.step-item h3 {
font-family: var(--font-heading);
font-size: 1.4rem;
margin-bottom: 12px;
color: var(--primary);
}

.testimonials {
background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.testimonials-grid {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}

@media (min-width: 768px) {
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}
}

.testimonial-card {
background: var(--white);
padding: 32px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
font-size: 1.1rem;
font-style: italic;
margin-bottom: 20px;
color: var(--text);
}

.testimonial-card footer {
display: flex;
flex-direction: column;
}

.testimonial-card cite {
font-weight: 700;
color: var(--primary);
font-style: normal;
}

.testimonial-card footer span {
font-size: 0.9rem;
color: var(--text-light);
}

.faq-cta-grid {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
}

@media (min-width: 768px) {
.faq-cta-grid {
grid-template-columns: 1fr 1fr;
align-items: start;
}
}

.faq-block h2, .cta-block h2 {
font-family: var(--font-heading);
font-size: 2rem;
color: var(--primary);
margin-bottom: 24px;
}

.faq-item {
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
border-bottom: none;
}

.faq-item h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 8px;
color: var(--primary);
}

.cta-block {
background: var(--primary);
color: var(--white);
padding: 40px;
border-radius: 12px;
text-align: center;
}

.cta-block h2 {
color: var(--white);
}

.cta-block p {
margin-bottom: 24px;
color: #cbd5e1;
}

.page-hero {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
}

.page-hero h1 {
font-family: var(--font-heading);
font-size: clamp(2.5rem, 5vw, 3.5rem);
margin-bottom: 16px;
}

.about-grid {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
align-items: center;
}

@media (min-width: 768px) {
.about-grid {
grid-template-columns: 1fr 1fr;
}
}

.about-text h2 {
font-family: var(--font-heading);
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 24px;
}

.about-text p {
margin-bottom: 20px;
font-size: 1.05rem;
}

.about-image img {
border-radius: 12px;
height: 400px;
width: 100%;
}

.values-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
margin-bottom: 48px;
}

@media (min-width: 768px) {
.values-grid {
grid-template-columns: repeat(3, 1fr);
}
}

.value-card {
background: var(--white);
padding: 32px;
border-radius: 12px;
border-left: 4px solid var(--accent);
}

.value-card h3 {
font-family: var(--font-heading);
font-size: 1.4rem;
margin-bottom: 12px;
color: var(--primary);
}

section.values {
    padding: 0;
}

.section-cta {
text-align: center;
padding: var(--spacing-section) 0;
}

.section-cta .cta-frame {
background: var(--white);
padding: 48px;
border-radius: 12px;
border: 1px solid var(--border);
max-width: 800px;
margin: 0 auto;
}

@media (max-width: 767px) {
.section-cta .cta-frame {
padding: 32px 24px;
}
}

.section-cta h2 {
font-family: var(--font-heading);
font-size: 2rem;
color: var(--primary);
margin-bottom: 16px;
}

.section-cta p {
margin-bottom: 24px;
color: var(--text-light);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
}

@media (min-width: 768px) {
.contact-grid {
grid-template-columns: 1fr 1fr;
}
}

.contact-info-block h2, .contact-form-block h2 {
font-family: var(--font-heading);
font-size: 2rem;
color: var(--primary);
margin-bottom: 24px;
}

.contact-info-block address {
font-style: normal;
line-height: 1.8;
margin-top: 24px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-form .btn {
width: 100%;
max-width: 100%;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-weight: 500;
font-size: 0.95rem;
}

.form-group input:not([type="checkbox"]), .form-group textarea {
width: 100%;
max-width: 100%;
padding: 14px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: var(--font-body);
font-size: 1rem;
transition: border-color 0.3s ease;
}

.form-group input:not([type="checkbox"]):focus, .form-group textarea:focus {
outline: none;
border-color: var(--accent);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
gap: 12px;
}

.checkbox-group input[type="checkbox"] {
width: 18px;
height: 18px;
min-width: 18px;
max-width: none;
flex-shrink: 0;
margin-top: 3px;
padding: 0;
border: none;
border-radius: 4px;
accent-color: var(--primary);
cursor: pointer;
}

.checkbox-group label {
flex: 1;
min-width: 0;
font-weight: 400;
line-height: 1.5;
cursor: pointer;
}

.thanks-page {
background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.thanks-main {
display: flex;
align-items: center;
justify-content: center;
padding: 80px 24px;
}

.thanks-card {
background: var(--white);
padding: 48px;
border-radius: 12px;
text-align: center;
max-width: 600px;
width: 100%;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thanks-logo {
margin: 0 auto 24px;
}

.thanks-card h1 {
font-family: var(--font-heading);
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 24px;
}

.thanks-card p {
margin-bottom: 16px;
font-size: 1.1rem;
color: var(--text);
}

.thanks-card .btn {
margin-top: 24px;
}

.site-footer {
background: var(--primary);
color: #cbd5e1;
padding: 64px 0 32px;
margin-top: auto;
}

.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
margin-bottom: 40px;
}

@media (min-width: 768px) {
.footer-grid {
grid-template-columns: 2fr 1fr 1.5fr;
}
}

.footer-brand .logo span {
color: var(--white);
}

.footer-brand p {
margin-top: 16px;
font-size: 0.95rem;
max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
color: var(--white);
font-family: var(--font-heading);
font-size: 1.2rem;
margin-bottom: 20px;
}

.footer-links ul {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
font-size: 0.95rem;
}

.footer-links a:hover {
color: var(--accent);
}

.footer-contact address {
font-style: normal;
line-height: 1.8;
font-size: 0.95rem;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 32px;
text-align: center;
}

.disclaimer {
font-size: 0.85rem;
color: #94a3b8;
margin-bottom: 16px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
line-height: 1.5;
}

.copyright {
font-size: 0.9rem;
color: #cbd5e1;
}

@media (max-width: 767px) {
:root {
--spacing-section: 40px;
--spacing-inner: 32px;
}

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

.footer-brand p {
margin: 16px auto 0;
}

.features-grid,
.cars-grid,
.steps-grid,
.testimonials-grid,
.faq-cta-grid,
.contact-grid,
.about-grid,
.values-grid,
.services-grid {
grid-template-columns: 1fr;
}

.features-grid > *,
.cars-grid > *,
.steps-grid > *,
.testimonials-grid > *,
.faq-cta-grid > *,
.contact-grid > *,
.about-grid > *,
.values-grid > *,
.services-grid > * {
min-width: 0;
max-width: 100%;
}
}

@media (max-width: 640px) {
.header-inner {
flex-wrap: wrap;
}

.logo a {
flex-direction: column;
}

.header-notice {
word-break: break-all;
}

.logo a span {
word-break: break-all;
min-width: 0;
flex: 1;
}

.footer-contact,
.footer-links {
word-break: break-all;
}
}

@media (max-width: 480px) {
.container {
padding: 0 16px;
}

.header-inner {
padding: 12px 16px;
}

.hero-content h1 {
font-size: clamp(1.75rem, 8vw, 2.5rem);
}

.contact-form,
.thanks-card,
.cta-block,
.feature-card,
.car-details {
padding: 16px;
}

.thanks-card {
padding: 32px 20px;
}

.legal-content {
padding: 32px 16px;
}

.btn {
padding: 12px 20px;
font-size: 0.95rem;
}
}

.inclusive-services {
background: var(--white);
padding: var(--spacing-section) 0;
}

.services-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}

@media (min-width: 768px) {
.services-grid {
grid-template-columns: repeat(4, 1fr);
}
}

.service-item {
text-align: center;
padding: 32px 24px;
background: var(--bg);
border-radius: 12px;
border: 1px solid var(--border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.service-icon {
font-size: 2rem;
color: var(--accent);
margin-bottom: 20px;
}

.service-item h3 {
font-family: var(--font-heading);
font-size: 1.3rem;
color: var(--primary);
margin-bottom: 12px;
}

.service-item p {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.5;
}

.pricing-chart-section {
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
padding: var(--spacing-section) 0;
}

.chart-container {
position: relative;
max-width: 800px;
margin: 0 auto;
background: var(--white);
padding: 32px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border: 1px solid var(--border);
}

@media (max-width: 767px) {
.chart-container {
padding: 20px;
}
}

.legal-content {
max-width: 800px;
margin: 0 auto;
padding: 60px 30px;
background: var(--white);
word-break: break-word;
}

.legal-content h1 {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 5vw, 2.5rem);
color: var(--primary);
margin-bottom: 12px;
line-height: 1.2;
}

.legal-content h2 {
font-family: var(--font-heading);
font-size: 1.8rem;
color: var(--primary);
margin-top: 48px;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 2px solid var(--accent);
}

.legal-content h3 {
font-family: var(--font-heading);
font-size: 1.4rem;
color: var(--primary);
margin-top: 32px;
margin-bottom: 16px;
}

.legal-content p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--text);
margin-bottom: 20px;
text-align: justify;
}

.legal-content ul, .legal-content ol {
margin: 24px 0;
padding-left: 2rem;
color: var(--text);
line-height: 1.8;
}

.legal-content li {
margin-bottom: 12px;
}

.legal-content address {
font-style: normal;
line-height: 1.8;
color: var(--text);
margin: 24px 0;
}

.last-updated {
margin-top: 0;
margin-bottom: 32px;
font-size: 0.95rem;
color: var(--text-light);
}

@media (max-width: 767px) {
.legal-content {
padding: 40px 20px;
}

.legal-content h1 {
font-size: 2rem;
}

.legal-content h2 {
font-size: 1.5rem;
}

.legal-content h3 {
font-size: 1.25rem;
}

.legal-content p {
font-size: 1rem;
line-height: 1.7;
}
}

.container.thanks {
    width: auto;
}
/* Mobile Menu Styles */
@media (max-width: 767px) {
.main-nav {
position: fixed;
top: 80px;
left: 0;
right: 0;
background: var(--white);
border-bottom: 1px solid var(--border);
padding: 24px;
display: none;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
z-index: 99;
}

.main-nav.active {
display: block;
animation: slideDown 0.3s ease;
}

.nav-list {
flex-direction: column;
gap: 16px;
}

.nav-list a {
display: block;
padding: 12px 0;
border-bottom: 1px solid var(--border);
}

.nav-list a:last-child {
border-bottom: none;
}

.mobile-menu-toggle {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 100;
}

.mobile-menu-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--primary);
transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}
}

@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}