html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  padding-top: 85px; /* ارتفاع شريط التنقل */
  margin-bottom: 0 !important;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Custom Navbar Styles */
:root {
    --primary-navy: #000080;
    --accent-red: #FF0000;
    --secondary-burgundy: #9E2A3A;
    --dark-brown: #3A2525;
}

.text-primary-dark {
    color: var(--primary-navy) !important;
}

.btn-primary-dark {
    background-color: var(--primary-navy) !important;
    border-color: var(--primary-navy) !important;
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-dark:hover {
    background-color: var(--secondary-burgundy) !important;
    border-color: var(--secondary-burgundy) !important;
    transform: translateY(-1px);
}

.bg-accent-red {
    background-color: var(--accent-red) !important;
}

.text-dark-brown {
    color: var(--dark-brown) !important;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cart-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.dropdown-toggle::after {
    vertical-align: middle;
}

.navbar {
    background-color: #f8f9fa !important;
}

.fixed-top {
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.navbar-brand img {
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    .navbar-nav {
        margin-bottom: 1rem;
    }
    .d-flex.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .cart-icon {
        margin-bottom: 1rem;
    }
    .btn-primary-dark {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Carousel Controls Customization */
.custom-carousel-btn {
    width: 40px;
    height: 40px;
    background: #e67e22;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.custom-carousel-btn:hover {
    background: #d35400;
    opacity: 1;
}

.custom-carousel-btn.carousel-control-prev {
    left: -20px;
}

.custom-carousel-btn.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Airport Transfers Modern Style Medium */
.transfer-card-modern-medium {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 5px solid #e67e22; /* Medium thickness border */
    transition: all 0.3s ease;
    height: 350px; /* Increased height */
}

.transfer-card-modern-medium:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.card-img-container-medium {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-img-container-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info-overlay-medium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    text-align: center;
}

.card-info-overlay-medium h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.card-info-overlay-medium p {
    font-size: 0.9rem;
    color: #f1c40f;
    margin: 0;
}

/* Custom Carousel Controls for Transfers */
.custom-carousel-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(230, 126, 34, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
}

#transferCarousel:hover .custom-carousel-btn {
    opacity: 1;
}

.custom-carousel-btn:hover {
    background-color: #d35400;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev.custom-carousel-btn {
    left: -22px;
}

.carousel-control-next.custom-carousel-btn {
    right: -22px;
}

/* Guest Experiences Section */
.guest-experiences-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.tripadvisor-badge {
    background-color: #008009;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.guest-experiences-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.guest-experiences-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.testimonial-card-v2 {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.user-avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.tripadvisor-mini-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #00af87;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #fff;
}

.user-name-v2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.post-time {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.rating-dots {
    color: #00af87;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.rating-dots i {
    font-size: 16px;
    background: #00af87;
    color: #00af87;
    border-radius: 50%;
    border: 2px solid #00af87;
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
}

.rating-dots i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.verified-badge {
    color: #3498db;
    font-size: 12px;
    margin-left: 5px;
}

.testimonial-title-v2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-text-v2 {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    color: #888;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section Styling */
.cta-planning-section {
    padding-bottom: 60px;
}

.cta-card-orange {
    background: #e67e22;
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.3);
}

.cta-content-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cta-text-info h3 {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.cta-text-info p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-btn-teal {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-teal:hover {
    background: #2980b9;
    transform: scale(1.05);
    color: white;
}

/* Custom Navigation for Experiences */
.experience-carousel-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #333;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.experience-carousel-btn:hover {
    background: #f8f9fa;
    color: #000;
}

.experience-carousel-btn.carousel-control-prev { left: -60px; }
.experience-carousel-btn.carousel-control-next { right: -60px; }

@media (max-width: 991px) {
    .cta-card-orange {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-content-left {
        flex-direction: column;
    }
    .experience-carousel-btn { display: none; }
}

/* Why Choose Section */
.why-choose-section {
    background-color: #f0f7ff; /* Very light blue background */
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Service Box Styling */
.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-navy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.service-box:hover .service-icon {
    background: var(--accent-red);
    transform: rotateY(360deg);
}

/* Existing styles (keep if needed or replace) */
.airport-sidebar-card {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.btn-info-custom {
    background-color: #46b2c8;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    width: fit-content;
    transition: background 0.3s ease;
}

.btn-info-custom:hover {
    background-color: #389fb3;
    color: white;
}

.transfer-card-modern {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 6px solid #e67e22; /* Orange border as in image */
    transition: transform 0.3s ease;
}

.transfer-card-modern:hover {
    transform: scale(1.02);
}

.card-img-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.card-img-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.badge-featured-mini {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #46b2c8;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.wishlist-btn-mini {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #e74c3c;
    font-size: 1.2rem;
    z-index: 2;
}

.duration-badge {
    background: #fff;
    color: #f39c12;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.card-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
}

.card-loc-modern {
    font-size: 0.85rem;
    color: #f1c40f;
    margin: 0;
}

@media (max-width: 767.98px) {
    .card-img-container img {
        height: 300px;
    }
}

/* Excellence Section */
.excellence-section {
    background-color: #f8f9fa; /* Light gray background */
    position: relative;
    overflow: hidden;
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#dee2e6 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.excellence-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.15);
    border-color: #e67e22;
}

.excellence-icon {
    width: 60px;
    height: 60px;
    background: #fff3e0;
    color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.excellence-card:hover .excellence-icon {
    background: #e67e22;
    color: white;
    transform: rotateY(360deg);
}

.excellence-card h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.excellence-card p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

.excellence-content h2 {
    color: #212529;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .excellence-content {
        text-align: center;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #e9ecef; /* Light gray background like in image */
    margin-bottom: 0 !important;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-navy);
    border-radius: 4px;
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: var(--secondary-burgundy);
    border-color: var(--secondary-burgundy);
    color: white;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red) !important;
}

.text-warning {
    color: #ffc107 !important; /* Keep warning as yellow, or change to accent if needed */
}

.floating-contact {
    z-index: 1050;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: bold;
    animation: slideInRight 1s ease-out, bounce 2s infinite 3s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
    40% {transform: translateX(-10px);}
    60% {transform: translateX(-5px);}
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.chat-btn {
    transition: all 0.3s ease;
}

.whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}

.phone-btn {
    animation: pulse-phone 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-phone {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(0, 123, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.chat-btn:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none;
}

.scroll-top-btn {
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-burgundy) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s linear;
}

.carousel-item.active .hero-slide-img {
    transform: scale(1.15);
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 900px;
}

.search-box label {
    color: var(--dark-brown);
    font-weight: bold;
    margin-bottom: 8px;
}

/* Section Titles & Headers Unified */
.section-header-unified {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header-unified h2 {
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header-unified h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
}

.section-header-unified p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Refined to match image */
.destination-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-footer-custom {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.dest-name {
    font-weight: 700;
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin: 0;
}

.dest-rating {
    color: #f1c40f;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.dest-rating i {
    margin-right: 5px;
}

.dest-rating span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Service Box */
/* (Duplicate removed, using consolidated styles above) */

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* Tour Card Styles */
.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-navy);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 2;
}

.wishlist-btn:hover {
    background-color: var(--accent-red);
    color: white;
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    color: #f39c12;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tour-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3rem;
}

.tour-location {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tour-price {
    color: var(--dark-brown);
}

/* CTA Section */
.cta-section {
    background: var(--primary-navy);
    color: white;
    padding: 80px 0;
}

.btn-accent {
    background-color: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--secondary-burgundy);
    color: white;
    transform: scale(1.05);
}

.footer-section {
    background-color: #e9ecef; /* Very light tint for footer background */
    border-top: 3px solid var(--primary-navy);
    margin-bottom: 0 !important;
}

.payment-icons i.text-danger {
    color: var(--accent-red) !important;
}

.payment-icons i.text-primary {
    color: var(--primary-navy) !important;
}

@media (max-width: 767.98px) {
    .floating-contact {
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
}