/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00aaee;
    --primary-dark: #0088cc;
    --secondary: #ff5a5f;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #f5f7fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-book {
    background-color: var(--secondary);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-book:hover {
    background-color: #e04a4f;
}

.btn-search {
    padding: 15px 30px;
    font-size: 18px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav-menu {
    flex: 1;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.user-btn:hover {
    background-color: var(--light-gray);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border);
    margin: 10px 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #00c6ff 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 60px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-box {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.search-form {
    width: 100%;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.search-group input,
.search-group select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 170, 238, 0.1);
}

/* Popular Cities */
.popular-cities {
    margin-bottom: 60px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.city-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
    text-decoration: none;
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.city-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
}

.city-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.city-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Popular Hotels */
.popular-hotels {
    margin-bottom: 60px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hotel-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.hotel-image {
    position: relative;
    height: 200px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.rating-star {
    color: #ffc107;
}

.hotel-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.hotel-info {
    padding: 20px;
}

.hotel-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.hotel-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.facility-tag {
    background-color: var(--light-gray);
    color: var(--gray);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.hotel-price {
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.price-current span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

/* Features */
.features {
    background-color: white;
    padding: 60px 0;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 170, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-description {
    color: #adb5bd;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #495057;
    padding: 12px;
    border-radius: var(--radius);
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.app-link:hover {
    background-color: var(--primary);
}

.app-link i {
    font-size: 24px;
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-text span {
    font-size: 12px;
}

.app-text strong {
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #adb5bd;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .search-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .cities-grid,
    .hotels-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .nav-actions {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
}/* Payment Page Styles */
.payment-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.payment-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.step.active .step-number {
    background-color: var(--primary);
    color: white;
}

.step.completed .step-number {
    background-color: #28a745;
    color: white;
}

.step-line {
    position: absolute;
    top: 20px;
    left: 70px;
    width: 80px;
    height: 2px;
    background-color: var(--border);
}

.step:last-child .step-line {
    display: none;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.payment-methods {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

.payment-summary {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.method-group {
    margin-bottom: 30px;
}

.method-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.method-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.method-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.method-card:hover {
    border-color: var(--primary);
}

.method-card.selected {
    border-color: var(--primary);
    background-color: rgba(0, 170, 238, 0.05);
}

.method-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
}

.method-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.method-desc {
    font-size: 12px;
    color: var(--gray);
}

.card-form {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 20px;
    display: none;
}

.card-form.show {
    display: block;
}

.timer {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 20px;
}

.timer h4 {
    color: #856404;
    margin-bottom: 5px;
}

.countdown {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
}

.payment-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.va-info, .qr-info {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: var(--radius);
}

/* Booking Detail Styles */
.booking-detail-section {
    padding: 40px 0;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.detail-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
}

.detail-card h3 {
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item .label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.detail-item .value {
    font-weight: 500;
}

.booking-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.hotel-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hotel-info img {
    width: 120px;
    height: 90px;
    border-radius: var(--radius);
    object-fit: cover;
}

.facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.facility-tag {
    background-color: var(--light-gray);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 14px;
}

.price-details {
    margin: 20px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

.paid {
    color: #28a745;
    font-weight: 600;
}

.pending {
    color: #dc3545;
    font-weight: 600;
}