/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    background-color: #0d1b2a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* Header */
.site-header {
    background-color: #0a1520;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d7b65d;
    font-family: 'Taviraj', serif;
    font-size: 1.3rem;
    font-weight: 600;
}
.logo img {
    width: 40px;
    height: auto;
}

nav.main-nav {
    display: flex;
    align-items: center;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #d7b65d;
    cursor: pointer;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}
.nav-list a {
    color: #f5f5f5;
    padding: 0.5rem;
    position: relative;
    transition: color 0.2s ease;
}
.nav-list a:hover {
    color: #d7b65d;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #d7b65d;
}
.header-phone i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background-color: #0a1520;
    color: #f5f5f5;
    overflow: hidden;
}
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13,27,42,0.2) 0%, rgba(13,27,42,0.95) 100%);
    z-index: 1;
}
.hero-car {
    position: absolute;
    bottom: -50px;
    right: -20%;
    width: 110%;
    max-width: none;
    opacity: 0.3;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.hero-content h1 {
    font-family: 'Taviraj', serif;
    font-size: 3rem;
    color: #d7b65d;
    margin-bottom: 0.5rem;
}
.hero-content h2 {
    font-family: 'Taviraj', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #d7b65d;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Taviraj', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #d7b65d;
}

/* Services */
.services {
    background-color: #0a1520;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: #13293d;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.25);
}
.service-card i {
    display: block;
    font-size: 2rem;
    color: #d7b65d;
    margin-bottom: 0.75rem;
}
.service-card h3 {
    font-family: 'Taviraj', serif;
    font-size: 1.4rem;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}
.service-card p {
    font-size: 0.95rem;
    color: #c7d1d9;
    line-height: 1.5;
}

/* Comfort */
.comfort {
    background-color: #f5f5f5;
    color: #0d1b2a;
}
.comfort-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.comfort-text {
    flex: 1 1 350px;
}
.comfort-text .tagline {
    font-size: 1.2rem;
    color: #6b7c8b;
    margin-bottom: 0.5rem;
}
.comfort-text h2 {
    font-family: 'Taviraj', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}
.comfort-text h2 span {
    color: #d7b65d;
}
.comfort-image {
    flex: 1 1 350px;
}
.comfort-image img {
    width: 100%;
    height: auto;
}

/* Booking */
.booking {
    background-color: #0a1520;
    color: #f5f5f5;
}
.booking-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.booking-text {
    flex: 1 1 350px;
}
.booking-text h2 {
    font-family: 'Taviraj', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
}
.booking-text h2 span {
    color: #d7b65d;
}
.booking-text p {
    font-size: 1rem;
    color: #c7d1d9;
    margin-bottom: 1.5rem;
}
.booking-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d7b65d;
    font-weight: 500;
}
.booking-phone i {
    font-size: 1.5rem;
}
.booking-phone span {
    display: block;
    font-size: 0.8rem;
    color: #c7d1d9;
}

.booking-form {
    flex: 1 1 350px;
    background-color: #13293d;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.booking-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.booking-form .form-group {
    position: relative;
    flex: 1 1 calc(50% - 0.5rem);
}
.booking-form .form-group.full-width {
    flex: 1 1 100%;
}
.booking-form label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #d7b65d;
    font-size: 1rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

/* Ensure form icons inside labels are visible and aligned */
.booking-form label i {
    font-size: 1rem;
    color: #d7b65d;
}
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.25rem;
    border: 1px solid #26415c;
    border-radius: 4px;
    background-color: #0f2135;
    color: #f5f5f5;
    font-size: 0.95rem;
}
.booking-form textarea {
    resize: vertical;
}
.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #d7b65d;
}
.btn-submit {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #d7b65d;
    color: #0d1b2a;
    border: none;
    border-radius: 4px;
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background-color: #bd9a4d;
}

/* FAQ */
.faq {
    background-color: #f5f5f5;
    color: #0d1b2a;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d1b2a;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question .arrow {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-right: 2px solid #0d1b2a;
    border-bottom: 2px solid #0d1b2a;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}
.faq-answer {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #4b5a69;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
}
.faq-item.open .faq-question .arrow {
    transform: rotate(-135deg);
}

/* Footer */
.site-footer {
    background-color: #0a1520;
    color: #c7d1d9;
    padding: 2rem 0;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}
.footer-info,
.footer-links {
    flex: 1 1 300px;
}
.footer-info h3,
.footer-links h3 {
    font-family: 'Taviraj', serif;
    color: #d7b65d;
    margin-bottom: 0.5rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #c7d1d9;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #d7b65d;
    text-decoration: underline;
}
.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7c8b;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2000;
}
.modal-content {
    background-color: #fff;
    color: #0d1b2a;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    position: relative;
}
.modal-content h2 {
    font-family: 'Taviraj', serif;
    margin-bottom: 1rem;
    color: #d7b65d;
}
.modal-content h3 {
    font-family: 'Taviraj', serif;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.modal-content a {
    color: #0d1b2a;
    text-decoration: underline;
}
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0d1b2a;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #0a1520;
        flex-direction: column;
        width: 200px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 12px rgba(0,0,0,0.6);
    }
    .nav-list.open {
        transform: translateY(0);
    }
    .nav-toggle {
        display: block;
    }
    .header-phone {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 1.6rem;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .booking-content {
        flex-direction: column;
    }
    .booking-form .form-group {
        flex: 1 1 100%;
    }
    .comfort-content {
        flex-direction: column;
    }
}