@font-face {
    font-family: 'Montserrat';
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    src: url(../font/montserrat/Montserrat-ExtraLight.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url(../font/montserrat/Montserrat-Light.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url(../font/montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url(../font/montserrat/Montserrat-Medium.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url(../font/montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url(../font/montserrat/Montserrat-Bold.ttf);
}

:root {
    --primary-color: #D5561C;
    --secondary-color: #F4E8D3;
    --text-dark: #2C2C2C;
    --text-light: #ffffff;
    --bs-body-font-family: 'Montserrat';
}

* {
    margin: 0;
    padding: 0
}

.main-title {
    margin-bottom: 48px;
    text-align: center;
}

.main-title .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
}

/* button css */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: #b34716;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

/* header css */
.navbar {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1025;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar.scrolled .navbar-brand {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.navbar-brand {
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0;

}

.navbar-brand img {
    width: 155px;
}

.nav-link {
    color: var(--text-light);
    margin: 0 10px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Sidebar Base */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: rgba(33, 37, 41, 1);
    color: var(--text-dark);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1050;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Active Sidebar */
.mobile-sidebar.active {
    left: 0;
}

/* Backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.sidebar-backdrop.active {
    display: block;
}

.mobile-logo img {
    width: 160px;
}

/* List Items */
.mobile-sidebar ul {
    padding-left: 0;
    margin-top: 20px;
}

.mobile-sidebar li {
    list-style: none;
    margin: 0 0 0px 0;
    border-bottom: 1px solid #ffffff;
}

.mobile-sidebar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 10px 15px;
    margin: 2px 0;
    transition: background 0.3s ease;
    font-size: 13px;
}

.mobile-sidebar li a.active {
    background-color: var(--primary-color);
    font-weight: 600;
}

/* Toggle Button (Hamburger) */
.mobile-toggle {
    padding: 8px 14px;
    border-radius: 8px;
}

.mobile-toggle i {
    font-size: px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-banner-images {
    height: 90vh;
    transition: all 0.8s ease;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.btn-book {
    font-weight: 600;
    width: 300px;
}

/* Enhanced Welcome Section Styles */
.welcome-section {
    position: relative;
    overflow: hidden;
}

.dubai-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dubai-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: transform 0.5s ease;
}

.dubai-image-container:hover img {
    transform: scale(1.03);
}

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

.btn-orange {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #b94719;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(213, 86, 28, 0.3);
}

/* Existing styles */
.text-orange {
    color: var(--primary-color);
}

.bg-orange-light {
    background-color: rgba(213, 86, 28, 0.1);
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-item h4 {
    font-size: 18px;
}

.lead {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* packages sec */
.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.package-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-body {
    position: relative;
    padding: 20px;
    height: 240px;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-content {
    color: var(--text-dark);
    font-size: 14px;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-timing {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.8rem;
    margin-top: 3px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(213, 86, 28, 0.05);
    border-top: 1px solid rgba(213, 86, 28, 0.1);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.package-card:hover .package-footer {
    background-color: rgba(213, 86, 28, 0.08);
}

.package-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.btn-primary.package-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(213, 86, 28, 0.2);
    transition: all 0.3s ease;
}

.btn-primary.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(213, 86, 28, 0.3);
}

.btn-outline-orange {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

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

/* city tour */
.tour-card {
    height: 400px;
    overflow: hidden;
    transition: all 0.5s ease;
}

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

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

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 1;
    transition: all 0.3s ease;
    padding: 0 40px;
}

.tour-card:hover .tour-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Gallery Section Styles */
.premium-gallery {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-row {
    display: flex;
    gap: 15px;
    height: 300px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1/1;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Special Item Classes */
.gallery-item.large {
    flex: 1.5;
    aspect-ratio: 4/3;
}

.gallery-item.wide {
    flex: 2;
    aspect-ratio: 16/9;
}

.gallery-item.tall {
    aspect-ratio: 3/4;
}

/* Caption Styles */
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.caption p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Hover Effects */
.gallery-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background-color: rgba(213, 86, 28, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--secondary-color);
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-text h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 3px;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(213, 86, 28, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.form-floating label {
    color: #666;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(213, 86, 28, 0.25);
}

textarea.form-control {
    height: auto !important;
}


/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #d5561c, #1a1a1a);
}
.footer-logo{
    display: block;
}
.footer-logo img {
    width: 160px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact span {
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Packages Detail Page */
.packages-hero {
    color: white;
    display: flex;
    align-items: center;
    height: 65vh;
    text-align: center;
}

.package-highlights {
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.package-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.price-card-main {
    top: 80px;
}

.price-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.price-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 15px 0 5px;
}

.price-duration {
    color: #777;
}

.gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about page */
.about-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bg-orange-light {
    background-color: rgba(213, 86, 28, 0.1);
}

.about-about-about-hover-effect {
    transition: all 0.3s ease;
}

.about-about-about-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* contact us page */
.emergency-card {
    background: linear-gradient(135deg, #D5561C, #E05E2B);
    color: white;
    border-radius: 12px;
}

/* city tour pages */
.city-tour-btn{
    margin: 0 auto;
    display: block;
    width: max-content;
}


@media (max-width: 991px) {
    .main-title {
        margin-bottom: 35px;
    }

    .main-title .title {
        font-size: 40px;
    }

    .lead {
        font-size: 16px;
    }

    .welcome-section .row {
        flex-direction: column-reverse;
    }

    .welcome-section-content {
        margin-top: 20px;
    }

    .features-grid {
        display: flex;
        flex-flow: wrap;
        gap: 15px;
    }

    .welcome-section-content a {
        margin: 0 auto;
        display: block;
        width: max-content;
    }

    .gallery-row {
        height: 200px;
    }

    .gallery-item {
        aspect-ratio: auto;
        height: 100%;
    }

    .gallery-item.large {
        aspect-ratio: auto;
    }

    .gallery-item.wide {
        aspect-ratio: auto;
    }

    .contact-section .main-title~.row {
        flex-direction: column-reverse;
    }

    .contact-info-card {
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .about-icon-box {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .package-body {
        height: 200px;
    }

    .gallery-row {
        flex-direction: column;
        height: auto;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        flex: 1 1 100%;
        aspect-ratio: 16/9;
        height: 200px;
        margin-top: 0 !important;
    }

    .caption {
        padding: 15px;
    }

    .caption h3 {
        font-size: 1.1rem;
    }

    .caption p {
        font-size: 0.8rem;
    }

    .packages-hero {
        height: 50vh;
    }

    .team-card {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 14px;
    }

    .hero-banner-images {
        height: 80vh;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-book {
        font-weight: 500;
    }

    .main-title .title {
        font-size: 30px;
    }

    .main-title {
        margin-bottom: 20px;
    }

    .main-title .divider {
        margin: 9px auto !important;
    }

    .package-img {
        height: 200px;
    }

    .lead {
        font-size: 14px;
    }

    .feature-item {
        margin-bottom: 0;
        gap: 10px;
    }

    .feature-icon {
        font-size: 16px;
        width: 35px;
        height: 35px;
    }

    .feature-item h4 {
        font-size: 14px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        aspect-ratio: 16 / 8;
    }

    .contact-text h5 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact span {
        font-size: 14px;
    }

    .footer-logo~p {
        font-size: 14px;
    }

    .footer-bottom P {
        font-size: 14px;
    }

    .package-detail-title {
        font-size: 24px;
    }

    .package-highlights h3 {
        font-size: 24px;
    }

    .package-features li {
        font-size: 14px;
    }

    .price-card span {
        font-size: 14px;
    }

    .about-icon-box {
        width: 45px;
        height: 45px;
    }

    .about-icon-box i {
        font-size: 1rem !important;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo img {
        width: 200px;
    }

    .footer-contact li {
        justify-content: center;
    }

}

@media (max-width: 475px) {
    .hero-title {
        font-size: 25px;
    }

    .hero-banner-images {
        height: 50vh;
    }

    .hero-content {
        top: 55%;
    }

    .main-title .title {
        font-size: 25px;
    }

    .dubai-image-container {
        height: 250px;
    }

    .features-grid {
        flex-direction: column;
    }

    .package-title {
        font-size: 16px;
    }

    .contact-form-card h3 {
        font-size: 20px;
    }

    .form-floating>label {
        font-size: 13px;
    }

    .form-control,
    .form-select {
        font-size: 14px;
    }

    .navbar-brand img {
        width: 140px;
    }
}