/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F5A623;
    --secondary-color: #2C5F8D;
    --accent-color: #D97706;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --success: #10B981;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

/* RTL Support */
[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

[dir="ltr"] body {
    font-family: 'Poppins', sans-serif;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E3A5F 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-toggle {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.lang-toggle:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.currency-selector i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.currency-selector select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    font-family: inherit;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Package Tabs */
.package-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.package-content {
    display: none;
}

.package-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Package Card */
.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.package-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E3A5F 100%);
    color: var(--white);
    padding: 1.5rem;
}

.package-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.package-body {
    padding: 2rem;
    flex-grow: 1;
}

/* Itinerary */
.itinerary h4,
.hotels h4,
.includes h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itinerary h4::before {
    content: '📍';
    font-size: 1.3rem;
}

.hotels h4::before {
    content: '🏨';
    font-size: 1.3rem;
}

.includes h4::before {
    content: '✨';
    font-size: 1.3rem;
}

.itinerary ul,
.includes ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.itinerary li,
.includes li {
    padding: 0.6rem 0;
    padding-inline-start: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-light);
}

.itinerary li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

[dir="rtl"] .itinerary li::before {
    left: auto;
    right: 0;
}

.includes li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.includes li i {
    color: var(--success);
    margin-top: 0.2rem;
}

/* Hotel Options */
.hotels {
    margin-bottom: 1.5rem;
}

.hotel-option {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

[dir="rtl"] .hotel-option {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.hotel-info h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.rating i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.hotel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.pricing {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.price-item {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 0.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-item span:first-child {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.currency {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Book Button */
.book-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: auto;
}

.book-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

[dir="rtl"] .contact-item:hover {
    transform: translateX(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.contact-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    text-align: center;
}

.social-links h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        height: 500px;
    }

    .section-title {
        font-size: 2rem;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-button {
        width: 100%;
    }

    .pricing {
        flex-direction: column;
    }

    .price-item {
        min-width: 100%;
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .lang-toggle,
    .currency-selector {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 20px;
    }

    .tour-description {
        padding: 1.5rem;
    }

    .tour-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .camp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .package-header h3 {
        font-size: 1.3rem;
    }

    .hotel-info h5 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }
}

/* Tour Description Styles */
.tour-description {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.tour-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.tour-title:first-child {
    margin-top: 0;
}

.tour-description p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.price-includes,
.important-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

[dir="rtl"] .price-includes,
[dir="rtl"] .important-notes {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.price-includes h3,
.important-notes h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-includes ul,
.important-notes ul {
    list-style: none;
    padding: 0;
}

.price-includes li,
.important-notes li {
    padding: 0.7rem 0;
    display: flex;
    align-items: start;
    gap: 0.7rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-includes li:last-child,
.important-notes li:last-child {
    border-bottom: none;
}

.price-includes li i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.important-notes li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Camp Section Styles */
.camp-section {
    margin-top: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.camp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.camp-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.camp-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E3A5F 100%);
    color: var(--white);
    padding: 1.2rem;
    text-align: center;
}

.camp-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.camp-header small {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.camp-details {
    padding: 1.5rem;
    flex-grow: 1;
}

.tent-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.tent-option:last-child {
    border-bottom: none;
}

.tent-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.tent-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tent-price-item {
    background: var(--bg-light);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-align: center;
}

.tent-pricing .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-check {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.camp-book-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 0;
}

.camp-book-button:hover {
    background: var(--accent-color);
}

/* Aqaba Hotels Section */
.aqaba-hotels-section {
    margin-top: 3rem;
}

.hotels-table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: var(--white);
}

.hotels-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.hotels-pricing-table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E3A5F 100%);
    color: var(--white);
}

.hotels-pricing-table thead th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hotel-name-header {
    background: var(--primary-color) !important;
    min-width: 200px;
}

.weekday-header {
    background: linear-gradient(135deg, #2c5f7f 0%, #1a4563 100%) !important;
}

.weekend-header {
    background: linear-gradient(135deg, #7f522c 0%, #63431a 100%) !important;
}

.duration-header {
    font-size: 0.85rem;
    padding: 0.8rem 0.5rem;
}

.hotels-pricing-table tbody tr {
    border-bottom: 1px solid var(--bg-light);
    transition: background-color 0.3s ease;
}

.hotels-pricing-table tbody tr:hover {
    background-color: #f8f9fa;
}

.hotels-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.hotel-name-cell {
    padding: 1.2rem 1rem;
    border-right: 2px solid var(--bg-light);
}

.hotel-name-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hotel-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.hotel-stars {
    font-size: 0.85rem;
    color: #FFD700;
}

.price-cell {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid var(--bg-light);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.price-option {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 60px;
    transition: all 0.3s ease;
}

.price-option:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.whatsapp-cell {
    padding: 1rem;
    text-align: center;
    border-right: 2px solid var(--bg-light);
}

.whatsapp-cell:last-child {
    border-right: none;
}

.whatsapp-cell .book-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.whatsapp-cell .book-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive table */
@media (max-width: 768px) {
    .hotels-table-container {
        border-radius: 8px;
    }
    
    .hotels-pricing-table {
        font-size: 0.85rem;
    }
    
    .hotels-pricing-table thead th {
        padding: 0.7rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .hotel-name {
        font-size: 0.9rem;
    }
    
    .price-option {
        font-size: 0.95rem;
        font-weight: 700;
        padding: 0.4rem 0.7rem;
        min-width: 50px;
    }
    
    .whatsapp-cell .book-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

.hotel-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.hotel-card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E3A5F 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.hotel-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hotel-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.pricing-table {
    width: 100%;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.price-row:last-child {
    border-bottom: none;
}

.duration-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.prices {
    display: flex;
    gap: 1rem;
}

.prices .price {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
}

.hotel-book-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 0;
}

.hotel-book-button:hover {
    background: var(--accent-color);
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: block;
}

.booking-modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-close:hover,
.booking-close:focus {
    color: var(--primary-color);
}

.booking-modal-title {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E3A5F 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 15px 15px 0 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.booking-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-input:read-only {
    background: var(--bg-light);
    cursor: not-allowed;
    color: var(--text-dark);
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.booking-submit-btn i {
    font-size: 1.3rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .booking-modal-title {
        font-size: 1.4rem;
        padding: 1.2rem 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-close {
        padding: 0.8rem 1.2rem;
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .book-button,
    .camp-book-button,
    .hotel-book-button,
    .social-links,
    .booking-modal {
        display: none;
    }
}
