/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-gold: #D4AF37;
    --color-dark-text: #333333;
    --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;
}

.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: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.light-bg {
    background-color: var(--color-light-gray);
}

/* --- HEADER --- */
.main-header {
    background: var(--color-white);
    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;
}


/* --- ABOUT SECTION --- */
.mission-statement {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* --- OFFER SECTION --- */
.offer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.offer-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.offer-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.offer-list i {
    color: var(--color-gold);
    margin-right: 1rem;
    width: 20px;
}
.area-info, .car-info {
    font-weight: 300;
    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: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.personal-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    gap: 2rem;
}
.testimonial {
    background: var(--color-white);
    padding: 2rem;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--color-gold);
}
.testimonial blockquote {
    font-style: italic;
    color: #555;
}

/* --- ASSETS SECTION --- */
.assets-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 2rem;
}
.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;
}

/* --- 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-color: var(--color-dark-text);
    color: var(--color-light-gray);
    padding: 40px 0 20px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.footer-info h3 {
    font-family: var(--font-family-premium);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    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-social a {
    color: var(--color-light-gray);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: var(--color-gold);
}
.footer-links a {
    color: var(--color-light-gray);
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.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;
}
.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;
}

/* 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;
}

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 {
        flex-direction: row;
        justify-content: space-around;
    }
    .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 {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    .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) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .route-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .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: 100vh;
    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(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

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

.hero-text {
    max-width: 700px;
    color: var(--color-white);
    text-align: center;
    margin: 0 auto;
}

.logo-large {
    font-family: var(--font-family-premium);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    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: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--color-white);
}

.hero-feature i {
    font-size: 1.8rem;
    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: 30px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    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: 90vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .logo-large {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-feature {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .slider-controls {
        bottom: 20px;
        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;
    }
}