:root {
    --primary-color: #003580;
    --secondary-color: #feba02;
    --accent-color: #1E90FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    color: #333333;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.currency span,
.languages span {
    margin-right: 1rem;
    cursor: pointer;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.logo-baku {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-legend {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-travel {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1e40af;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background-color: #e5a902;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #002b66;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1558005530-a7958896ec60?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.search-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.search-box {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
    z-index: 10;
}

.search-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.tab-base {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.2s;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.tab-active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-inactive {
    color: #6b7280;
    border-bottom: 2px solid transparent;
}

.tab-inactive:hover {
    color: #374151;
}

.tab-content {
    display: flex;
    align-items: center;
}

.tab-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .search-fields {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 53, 128, 0.1);
}

.search-options {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .search-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search-button {
    display: flex;
    justify-content: center;
}

/* Tours Section */
.tours-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tour-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
}

.card-content p {
    color: #6b7280;
    margin-top: 0.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.show-more {
    text-align: center;
}

/* Hotels Section */
.hotels-section {
    padding: 4rem 0;
    background-color: white;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .hotels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
} 

/* Contact Section */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-details {
        flex-direction: row;
    }
}

.contact-info {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item span {
    flex: 1;
    color: #555;
    line-height: 1.5;
}

.contact-map {
    flex: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Add Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');