* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.6;
    font-weight: 700;
    font-size: 125%;
}

/* Header Styles */
.reservation-header {
    background-color: #1a3d47;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reservation-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #c9b893;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c9b893;
}

/* Main Content */
.reservation-main {
    min-height: 60vh;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

/* Footer Styles */
.reservation-footer {
    background-color: #0f2932;
    color: #ffffff;
    padding: 60px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.5fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.footer-column h3 {
    color: #c9b893;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #c9b893;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.contact-email {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-address {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-phone {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}



.phone-label {
    color: #c9b893;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.phone-number {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Agency Info Styles */
.agency-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tursab-logo {
    width: 120px;
    height: auto;
}

.agency-details {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.8;
}

.agency-details p {
    margin-bottom: 8px;
}

.agency-details strong {
    color: #c9b893;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .reservation-header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-phone {
        justify-content: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
}
.contact-email {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #c9b893;
}

.contact-phone {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-phone:hover {
    opacity: 0.8;
}