/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-gold: #D4AF37;
    --color-gold-soft: #f1df9d;
    --color-ink: #222222;
    --color-dark-text: #333333;
    --color-muted: #666666;
    --font-family: 'Poppins', sans-serif;
    --font-family-premium: 'Cormorant Garamond', serif;
    --header-height: 70px;
}

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

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-gold);
    color: var(--color-dark-text);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 3000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced focus indicators */
*:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-gold: #000000;
        --color-dark-text: #000000;
        --color-light-gray: #ffffff;
    }
    
    *:focus {
        outline: 3px solid #000000;
        outline-offset: 2px;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    color: var(--color-dark-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

body.contact-in-view .sticky-call-button {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    visibility: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--color-dark-text);
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0.5rem auto 0;
}

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

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, var(--color-gold), #e6c66a);
    color: var(--color-dark-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:focus {
    border-color: var(--color-dark-text);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.cta-button-secondary:hover,
.cta-button-secondary:focus {
    background: var(--color-gold);
    color: var(--color-dark-text);
}

.content-section {
    padding: 72px 0;
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.light-bg {
    background: linear-gradient(180deg, #f8f8f8 0%, #f2f2f2 100%);
}

/* --- HEADER --- */
.main-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(212, 175, 55, 0.2);
    transition: background-color 0.3s ease;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    font-family: var(--font-family-premium);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}
.header-contact {
    display: none;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    text-decoration: none;
    color: var(--color-dark-text);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}
.nav-toggle {
    display: none;
}

/* --- TRUST STRIP --- */
.trust-strip {
    background: var(--color-ink);
    color: var(--color-white);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    color: var(--color-gold);
    font-size: 1.35rem;
}


/* --- ABOUT SECTION --- */
.mission-statement {
    text-align: center;
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-muted);
}
.features {
    display: grid;
    gap: 1.25rem;
    text-align: center;
}

.feature-item {
    background: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--color-muted);
}

/* --- OFFER SECTION --- */
.offer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.offer-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 8px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
}

.offer-item i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

.offer-item span {
    font-weight: 600;
}

.area-info, .car-info {
    color: var(--color-muted);
    margin-top: 1rem;
}
.offer-image img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* --- BOOKING PROCESS --- */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}
.step {
    text-align: center;
}
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--color-gold);
}
.step-icon i {
    font-size: 2rem;
    color: var(--color-gold);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}
.contact-card {
    background-color: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.contact-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}
.contact-card span {
    font-weight: 600;
    display: block;
}

/* --- PERSONAL SECTION --- */
.personal-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.personal-image {
    position: relative;
    width: min(280px, 76vw);
}

.personal-image::before {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
}

.personal-image img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    object-position: center 28%;
    border: 4px solid var(--color-gold);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
    display: block;
    margin: 0 auto;
}

.personal-text {
    max-width: 720px;
}

.personal-text p {
    color: var(--color-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    background: var(--color-ink);
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--color-ink);
    border-radius: 6px;
    padding: 0.85rem 1.2rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.text-link:hover,
.text-link:focus {
    background: var(--color-gold);
    color: var(--color-dark-text);
    transform: translateY(-2px);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    gap: 1.25rem;
}
.testimonial {
    background: var(--color-white);
    padding: 1.75rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.055);
}

.testimonial-image {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--color-gold);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--color-gold);
}
.testimonial blockquote {
    color: #555;
}

/* --- ASSETS SECTION --- */
.assets-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.asset-item {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
}
.asset-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}
.legal-statement {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

.section-intro {
    max-width: 680px;
    margin: -1rem auto 2rem;
    text-align: center;
    color: var(--color-muted);
    font-size: 1.05rem;
}

/* --- FAQ SECTION --- */
.faq-accordion details {
    background: var(--color-light-gray);
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    overflow: hidden;
}
.faq-accordion summary {
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    background: var(--color-light-gray);
    transition: background-color 0.3s ease;
}
.faq-accordion summary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}
.faq-accordion summary::-webkit-details-marker {
    display: none;
}
.faq-accordion summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
}
.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}
.faq-accordion details[open] > summary {
    background-color: rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.faq-accordion .faq-content {
    padding: 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-top: none;
    margin: 0;
}
.faq-accordion p {
    margin: 0;
    line-height: 1.6;
}

/* --- CONTACT FORM --- */
.contact-form {
    display: grid;
    gap: 1.5rem;
}
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="datetime-local"],
.contact-form textarea {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    height: auto;
    min-height: 70px;
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Form labels and error messages */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark-text);
}

.error-message {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.visible {
    display: block;
}

.input-error {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2) !important;
}

.input-success {
    border-color: #388e3c !important;
    box-shadow: 0 0 0 2px rgba(56, 142, 60, 0.2) !important;
}
.checkbox-group {
    display: flex;
    align-items: center;
}
.checkbox-group input {
    margin-right: 0.5rem;
}
.checkbox-group label {
    font-size: 0.9rem;
}
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}
.form-message.visible {
    display: block;
}
.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- FOOTER --- */
.main-footer {
    background:
        linear-gradient(145deg, rgba(34, 34, 34, 0.98), rgba(22, 22, 22, 0.96)),
        url('./RLTAXI1.webp') center / cover;
    color: var(--color-light-gray);
    padding: 64px 0 24px;
    text-align: left;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
}
.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.8fr) minmax(180px, 0.7fr);
    gap: 3rem;
    align-items: start;
}
.footer-info h3 {
    font-family: var(--font-family-premium);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-info h3:hover {
    transform: scale(1.02);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.footer-brand p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 1.5rem;
}

.footer-column {
    display: grid;
    gap: 0.7rem;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.footer-column a,
.footer-info address a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus,
.footer-info address a:hover,
.footer-info address a:focus {
    color: var(--color-gold);
}

.footer-phone {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--color-gold);
    color: var(--color-dark-text) !important;
    padding: 0.85rem 1.1rem;
    border-radius: 6px;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    color: var(--color-light-gray);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0.45rem 0 0;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.footer-social a:hover {
    color: var(--color-gold);
    border-color: rgba(212, 175, 55, 0.75);
    background: rgba(212, 175, 55, 0.08);
}
.footer-links a {
    color: var(--color-light-gray);
    text-decoration: none;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.35);
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 3rem;
    padding-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: #b8941f;
    text-decoration: underline;
}

/* --- STICKY CALL BUTTON --- */
.sticky-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--color-gold), #e6c66a);
    color: var(--color-dark-text);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease, visibility 0.25s ease;
}
.sticky-call-button i {
    font-size: 1.2rem;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.95);
    color: var(--color-white);
    padding: 1rem 0;
    z-index: 2000;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
}
.cookie-banner a {
    color: var(--color-gold);
    text-decoration: underline;
}
.cookie-banner .cta-button,
.cookie-banner .cta-button-secondary {
    padding: 8px 20px;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.vip-form-container {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 0;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.36);
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.booking-aside {
    background:
        linear-gradient(145deg, rgba(34, 34, 34, 0.94), rgba(34, 34, 34, 0.78)),
        url('./RLTAXI2.webp') center / cover;
    color: var(--color-white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.booking-eyebrow {
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.booking-aside h3 {
    font-family: var(--font-family-premium);
    font-size: 2.3rem;
    line-height: 1.08;
    margin: 0;
}

.booking-aside p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.booking-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-dark-text);
    background: var(--color-gold);
    text-decoration: none;
    font-weight: 800;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    width: fit-content;
}

.booking-notes {
    display: grid;
    gap: 0.75rem;
}

.booking-notes span {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.88);
}

.booking-notes i {
    color: var(--color-gold);
    width: 18px;
    text-align: center;
}

.vip-form-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.vip-form-header h3 {
    font-family: var(--font-family-premium);
    font-size: 2rem;
    color: var(--color-dark-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vip-form-header p {
    color: var(--color-dark-text);
    font-size: 1rem;
    opacity: 0.8;
}

.vip-form-grid,
.vip-form-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vip-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark-text);
}

.vip-form-group input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.vip-form-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vip-form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vip-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vip-form-checkbox input {
    flex-shrink: 0;
    margin-top: 4px;
}

.vip-form-checkbox label {
    font-size: 0.9rem;
    color: var(--color-dark-text);
    line-height: 1.4;
}

.vip-submit-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--color-gold), #e6c66a);
    color: var(--color-dark-text);
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.22);
}

.vip-submit-btn:hover,
.vip-submit-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.28);
}

.vip-submit-btn:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.form-status {
    min-height: 1.4em;
    text-align: center;
    font-weight: 600;
}

.form-status.error {
    color: #8a1f1f;
}

.legal-page {
    background: var(--color-white);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-family-premium);
    font-size: 2.6rem;
    color: var(--color-dark-text);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-family: var(--font-family);
    font-size: 1.3rem;
    text-align: left;
    margin: 2rem 0 0.75rem;
}

.legal-content h2::after {
    margin-left: 0;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--color-dark-text);
    font-weight: 600;
}

/* FAQ improvements */
.faq-content {
    padding: 0 1rem 1rem 1rem;
    border-top: 1px solid #ddd;
    margin-top: 0.5rem;
}

.faq-accordion summary {
    position: relative;
    padding-right: 2rem;
}

.faq-accordion summary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Testimonials improvements */
.testimonial footer {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-gold);
}

/* Address styling */
address {
    font-style: normal;
    line-height: 1.8;
}

.footer-info address {
    display: grid;
    gap: 0.65rem;
    justify-items: start;
}

address p {
    margin-bottom: 0.5rem;
}

address a {
    color: var(--color-gold);
    text-decoration: none;
}

address a:hover,
address a:focus {
    text-decoration: underline;
}


/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 992px) {
    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        text-align: center;
        transform: translateY(-120%);
        transition: transform 0.3s ease-in-out;
    }
    .main-nav.active {
        transform: translateY(0);
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav li {
        border-bottom: 1px solid var(--color-light-gray);
    }
    .main-nav a {
        display: block;
        padding: 1.5rem;
    }
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }
    .hamburger {
        display: block;
        position: relative;
        width: 25px;
        height: 2px;
        background: var(--color-dark-text);
        transition: transform 0.3s ease;
    }
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--color-dark-text);
        transition: transform 0.3s ease, top 0.3s ease;
    }
    .hamburger::before {
        top: -8px;
    }
    .hamburger::after {
        top: 8px;
    }
    .nav-toggle.active .hamburger {
        background: transparent;
    }
    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
     .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* TABLETS */
@media (min-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
    .offer-container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    .offer-text, .offer-image {
        flex: 1;
    }
    .steps {
        flex-direction: row;
        justify-content: space-between;
    }
    .step {
        width: 30%;
    }
    .contact-info {
        flex-direction: row;
        justify-content: center;
    }
    .personal-container {
        grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
        text-align: left;
        gap: 4rem;
        justify-content: center;
    }

    .personal-container h2 {
        text-align: left;
    }

    .personal-container h2::after {
        margin-left: 0;
    }

    .personal-image {
        width: 300px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        display: flex;
        gap: 2rem;
        width: 100%;
    }
    
    .form-group {
        flex: 1;
        margin-bottom: 0;
    }
    
    /* Checkbox and submit row */
    .form-row:last-child {
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .form-group.checkbox-group {
        flex: auto !important;
        text-align: left !important;
        margin-bottom: 0 !important;
    }
    
    button[type="submit"] {
        flex: 0 0 auto !important;
        max-width: 300px !important;
    }
    
    /* Mobile styles for form */
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-row:last-child {
            align-items: stretch;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group.checkbox-group {
            flex: 1;
            margin-bottom: 0;
            text-align: left;
        }
        
        button[type="submit"] {
            max-width: none;
            width: 100%;
            margin-top: 1rem;
        }
    }
    
    /* Improved form layout for desktop */
    .contact-form-container {
        padding: 4rem;
        width: 100%;
        margin-bottom: 3rem;
    }
    
    .price-calculator-container {
        background: var(--color-white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .calculator-header {
        padding: 1.5rem;
        background: linear-gradient(135deg, var(--color-gold), #e6c66a);
        color: var(--color-dark-text);
        text-align: center;
    }
    
    .calculator-header h3 {
        margin: 0 0 0.5rem 0;
        font-size: 1.3rem;
        color: var(--color-dark-text);
    }
    
    .calculator-header p {
        margin: 0;
        font-size: 0.9rem;
        opacity: 0.9;
    }
    
    .price-info {
        padding: 1rem 1.5rem;
        background: rgba(212, 175, 55, 0.1);
        border-left: 4px solid var(--color-gold);
        margin-bottom: 1rem;
    }
    
    .price-info p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .form-group {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-dark-text);
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 16px 18px;
        font-size: 1rem;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
        height: auto;
        min-height: 54px;
    }
    
    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        border-color: var(--color-gold);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        outline: none;
    }
    
    .contact-form input[type="datetime-local"] {
        color: var(--color-dark-text);
    }
    
    .contact-form button[type="submit"] {
        padding: 16px 32px;
        font-size: 1.1rem;
        margin-top: 1.5rem;
        justify-self: center;
        min-width: 200px;
    }
    
    .input-with-button {
        display: flex;
        align-items: stretch;
    }
    
    .input-with-button input {
        flex: 1;
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .map-btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        min-width: 54px;
        height: 54px;
    }
    
    .error-message {
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .sticky-call-button {
        display: none;
    }
    .cookie-content {
        flex-direction: row;
    }
}

/* DESKTOPS */
@media (min-width: 992px) {
     .header-contact {
        display: block;
    }
    .header-contact a {
        text-decoration: none;
        color: var(--color-dark-text);
        font-weight: 600;
        font-size: 1.1rem;
    }
    .header-contact i {
        color: var(--color-gold);
        margin-right: 0.5rem;
    }
}
@media (min-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    .container {
        width: 85%;
    }
}
/* Contact Form Layout with Map */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: var(--color-white);
    padding: 2rem;
}

.map-container {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.map-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-gold), #e6c66a);
    color: var(--color-dark-text);
    text-align: center;
}

.map-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: var(--color-dark-text);
}

.map-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.route-map {
    height: 400px;
    position: relative;
    background: #f0f0f0;
}

.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-dark-text);
}

.map-loading i {
    font-size: 2rem;
    color: var(--color-gold);
}

.map-info {
    padding: 1.5rem;
    background: var(--color-light-gray);
    border-top: 1px solid #e0e0e0;
}

.route-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.route-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.route-info-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.route-info-item span {
    font-weight: 600;
    color: var(--color-dark-text);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: transparent;
    color: var(--color-dark-text);
    border: 2px solid var(--color-dark-text);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.secondary-button:hover,
.secondary-button:focus {
    background: var(--color-dark-text);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.input-with-button input {
    flex: 1;
}

.map-btn {
    padding: 12px;
    background: var(--color-gold);
    color: var(--color-dark-text);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.map-btn:hover,
.map-btn:focus {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.map-btn i {
    font-size: 1.1rem;
}

/* Responsive adjustments for contact layout */
@media (max-width: 1024px) {
    .booking-panel {
        grid-template-columns: 1fr;
    }

    .booking-aside {
        padding: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .route-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 48px 0 22px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand p,
    .footer-phone {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        justify-items: center;
    }

    .footer-info address {
        justify-items: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    body.contact-in-view .sticky-call-button {
        display: flex;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    body.footer-in-view .sticky-call-button {
        display: none;
    }

    .sticky-call-button {
        width: 58px;
        height: 58px;
        right: 16px;
        bottom: 16px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .sticky-call-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .sticky-call-button i {
        font-size: 1.25rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        min-height: 78px;
        font-size: 0.9rem;
    }

    .trust-item:nth-child(2n) {
        border-right: none;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .assets-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .asset-item {
        width: 100%;
        padding: 1rem;
        text-align: center;
    }

    .asset-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .asset-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .asset-item p,
    .legal-statement {
        font-size: 0.9rem;
    }

    .legal-statement {
        text-align: center;
        margin-top: 1rem;
    }

    .vip-form-container {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-panel {
        display: block;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    }

    .booking-aside {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .booking-aside h3 {
        font-size: 1.85rem;
    }

    .booking-phone {
        width: 100%;
        justify-content: center;
    }

    .vip-form-header h3 {
        font-size: 1.8rem;
    }

    .vip-form-header p {
        font-size: 1rem;
    }

    .vip-form-grid,
    .vip-form-full {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vip-form-group label {
        font-size: 0.9rem;
    }

    .vip-form-group input {
        padding: 12px;
        font-size: 0.95rem;
    }

    .vip-form-checkboxes {
        gap: 0.8rem;
    }

    .vip-form-checkbox label {
        font-size: 0.85rem;
    }

    .vip-submit-btn {
        width: 100%;
        align-self: stretch;
        padding: 13px 24px;
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .map-header {
        padding: 1rem;
    }
    
    .map-header h3 {
        font-size: 1.1rem;
    }
    
    .route-map {
        height: 300px;
    }
    
    .route-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .route-info-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .input-with-button {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-btn {
        align-self: flex-end;
        width: fit-content;
    }
}
/* --- HERO CAROUSEL --- */
.hero-section {
    padding: 0;
    position: relative;
    height: min(860px, calc(100vh - var(--header-height)));
    min-height: 640px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.26) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 42%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 650px;
    color: var(--color-white);
    text-align: left;
    margin: 0;
}

.logo-large {
    font-family: var(--font-family-premium);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-gold);
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo-large:hover {
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-section h1 {
    font-size: clamp(3.2rem, 5.4vw, 5.8rem);
    font-weight: 700;
    line-height: 0.98;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    backdrop-filter: blur(8px);
}

.hero-feature i {
    font-size: 1rem;
    color: var(--color-gold);
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, var(--color-gold), #e6c66a);
    color: var(--color-dark-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 28px;
    left: auto;
    right: 7.5%;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.slider-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-control:hover,
.slider-control:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for hero carousel */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-feature {
        flex-basis: 30%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 760px;
        min-height: 700px;
    }

    .hero-content {
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 5rem;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .logo-large {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-feature {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .slider-controls {
        bottom: 20px;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 15px;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .logo-large {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slider-controls {
        bottom: 15px;
        gap: 10px;
    }
    
    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}
