/* 
* Azira - Healing Springs Tours
* Main Stylesheet
* RTL (Right-to-Left) Arabic Website
*/

/* ======= Base Styles ======= */
:root {
    /* Color Palette - Earthy and Natural Colors */
    --primary-color: #5a8f7b;     /* Earthy Green */
    --secondary-color: #c69c6d;   /* Sandy Beige */
    --accent-color: #3a6a8b;      /* Deep Water Blue */
    --light-color: #f5f0e6;       /* Light Sand */
    --dark-color: #2c3e50;        /* Dark Earth */
    --success-color: #6b9080;     /* Moss Green */
    --danger-color: #b56357;      /* Terracotta */
    --warning-color: #e9c46a;     /* Desert Yellow */
    --info-color: #a8dadc;        /* Light Water Blue */
    --body-bg: #f9f7f4;           /* Off-White Sand */
    --text-color: #333333;        /* Dark Text */
    --text-light: #666666;        /* Light Text */
    --border-color: #e0e0e0;      /* Light Border */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    box-shadow: 0 5px 15px rgba(90, 143, 123, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(90, 143, 123, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ======= Header & Navigation ======= */
.header {
    position: relative;
    background-color: transparent;
}

.header-inner {
    padding-top: 100px;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav {
    margin-right: auto;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

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

.nav-link.active:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.login-btn, .register-btn {
    margin-right: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--danger-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: right;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Page Title Section */
.page-title-section {
    padding: 100px 0 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/page-title-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}


/* ======= Content Sections ======= */
/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Innovations Section */
.innovations-section {
    padding: 80px 0;
    background-color: white;
}

.innovation-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 30px;
    border-right: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.innovation-card:hover {
    background-color: var(--secondary-color);
    color: white;
}

.innovation-card:hover h3, .innovation-card:hover p {
    color: white;
}

.innovation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.innovation-card p {
    color: var(--text-light);
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.destination-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

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

.rating {
    color: var(--warning-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 1rem;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px 0 0 30px;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 0.75rem 1.5rem;
}

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

.footer-about {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    right: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    right: 0;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-contact p i {
    margin-left: 0.5rem;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 1.5rem;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}


/* ======= Booking Page Styles ======= */
/* Booking Search Section */
.booking-search-section {
    padding: 50px 0;
    background-color: white;
}

.booking-search-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

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

.booking-search-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.price-range-slider {
    position: relative;
}

.price-value {
    position: absolute;
    top: 30px;
    right: 0;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Booking Categories */
.booking-categories-section {
    padding: 50px 0;
    background-color: var(--light-color);
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-content {
    padding-bottom: 2.5rem;
}

.category-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.category-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.category-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* ======= Authentication Pages ======= */
.auth-section {
    padding: 150px 0 80px;
    background-color: var(--light-color);
}

.auth-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
}

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

.auth-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.auth-form .input-group-text {
    background-color: var(--light-color);
    border: none;
    color: var(--primary-color);
}

.auth-form .form-control {
    border: none;
    background-color: var(--light-color);
    padding: 0.75rem 1rem;
}

.auth-form .form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-password {
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-form .btn-block {
    padding: 0.75rem 0;
    width: 100%;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider span {
    background-color: white;
    padding: 0 1rem;
    position: relative;
    color: var(--text-light);
}

.social-auth {
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn i {
    margin-left: 0.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.password-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.toggle-password {
    cursor: pointer;
}

/* ======= Cart Page Styles ======= */
/* Cart Popup */
.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-popup.active {
    opacity: 1;
    visibility: visible;
}

.cart-popup-content {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cart-popup-header {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-popup-header h3 {
    margin-bottom: 0;
    color: white;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-light);
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 1rem;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cart-item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin: 0 0.5rem;
}

.cart-item-actions {
    margin-right: 1rem;
}

.cart-total {
    padding: 1rem 1.5rem;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.cart-buttons {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
}

/* Cart Page */
.cart-section {
    padding: 50px 0;
    background-color: var(--light-color);
}

.cart-items-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    right: 0;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.cart-summary {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.total-item {
    font-weight: 700;
    font-size: 1.2rem;
}

.promo-code {
    margin: 1.5rem 0;
}

.checkout-btn {
    width: 100%;
    margin-top: 1rem;
}

.payment-methods {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.payment-icons {
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
    margin: 1.5rem 0;
    color: var(--text-light);
}

.payment-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Checkout Process */
.checkout-process-section {
    padding: 50px 0;
    background-color: var(--light-color);
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.checkout-steps:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

.step.completed .step-icon {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-title {
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.step.active .step-title, .step.completed .step-title {
    color: var(--dark-color);
    font-weight: 700;
}

.checkout-step-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-bottom: 30px;
}

.booking-info-form h3, .payment-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-form-actions, .payment-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.payment-options {
    margin-bottom: 2rem;
}

.payment-option {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.payment-option:hover, .payment-option.active {
    border-color: var(--primary-color);
    background-color: var(--light-color);
}

.payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.payment-option i {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.payment-summary {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.payment-terms {
    margin-bottom: 2rem;
}

/* Booking Confirmation */
.booking-confirmation {
    text-align: center;
}

.confirmation-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.booking-confirmation h3 {
    margin-bottom: 1rem;
}

.booking-confirmation p {
    margin-bottom: 2rem;
}

.booking-details {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: right;
}

.booking-details h4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.booking-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.booking-confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Related Services */
.related-services-section {
    padding: 80px 0;
    background-color: white;
}

/* ======= Cart Popup Styles ======= */
.cart-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    direction: rtl;
}

.cart-popup.show {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-popup-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
}

.cart-popup-items {
    padding: 15px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

.cart-popup-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.cart-popup-item-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 5px;
    margin-left: 15px;
}

.cart-popup-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-popup-item-details {
    flex: 1;
}

.cart-popup-item-details h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.cart-popup-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-popup-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.cart-popup-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

.cart-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.empty-cart-message {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
}

/* ======= Notification Styles ======= */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    min-width: 250px;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ======= Responsive Styles ======= */
@media (max-width: 991px) {
    .hero-section {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cart-item-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-quantity {
        margin-top: 0.5rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn {
        margin-bottom: 1rem;
    }
    
    .checkout-steps {
        flex-wrap: wrap;
    }
    
    .step {
        width: 50%;
        margin-bottom: 1.5rem;
    }
    
    .booking-form-actions, .payment-form-actions {
        flex-direction: column;
    }
    
    .booking-form-actions .btn, .payment-form-actions .btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cart-popup-content {
        width: 90%;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        margin-bottom: 1rem;
        margin-left: 0;
    }
    
    .cart-item-actions {
        margin-top: 1rem;
        margin-right: 0;
    }
}
