/* ==========================================================================
   MPA Travels & Tours - Master Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #f39c12;
  --primary-hover: #d68910;
  --dark-navy: #12122c;
  --navy-light: #1c1c42;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* --- Header / Navigation --- */
.navbar {
  background-color: #1E113B !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition, all 0.3s ease);
  padding: 7px 0;
}

.navbar-brand img {
  max-height: 100px;
  transition: var(--transition, all 0.3s ease);
}

.nav-link {
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 8px;
  position: relative;
  transition: var(--transition, all 0.3s ease);
}

.nav-link:hover, 
.nav-link.active {
  color: #EB9819 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #EB9819;
  transition: var(--transition, all 0.3s ease);
}

.nav-link:hover::after, 
.nav-link.active::after {
  width: 100%;
}

/* Button Customizations */
.btn-primary-custom {
  background-color: var(--primary, #f39c12);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 28px;
  border: none;
  transition: var(--transition, all 0.3s ease);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary-custom:hover {
  background-color: #EB9819;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 152, 25, 0.4);
}

.btn-outline-custom {
  border: 2px solid #EB9819;
  color: #EB9819;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 24px;
  background: transparent;
  transition: var(--transition, all 0.3s ease);
}

.btn-outline-custom:hover {
  background-color: #EB9819;
  color: #ffffff;
}

/* --- Dropdown Styling & Desktop Hover --- */
.dropdown-menu {
  background-color: #1F113D !important;
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.3s ease;
}

.dropdown-item {
  color: #ffffff !important;
  font-weight: 500;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dropdown Item Hover Effect */
.dropdown-item:hover, 
.dropdown-item:focus {
  background-color: #EB9819 !important;
  color: #ffffff !important;
}

/* Desktop Hover Trigger for Dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #1F113D;
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .navbar .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .navbar-toggler-icon {
    filter: invert(1); /* Makes toggler icon visible on dark background */
  }

  .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.2) !important;
    margin-top: 8px;
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(18, 18, 44, 0.75), rgba(18, 18, 44, 0.65)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 120px 0 80px;
  color: var(--white);
  border-radius: 0 0 30px 30px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

/* --- Modern Cards --- */
.package-card, .info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.package-card:hover, .info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.badge-duration {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
}

.price-tag {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

/* --- Glass Floating Form Card --- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
}

.form-control, .form-select {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  font-weight: 500;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.2);
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}





/*=========================================
FOOTER
=========================================*/

.footer{

    position:relative;
    background:linear-gradient(135deg,#1F103D 0%,#2b1856 100%);
    padding:100px 0 30px;
    color:#fff;
    overflow:hidden;

}

/*=========================
TOP SHAPE
=========================*/

.footer::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#EB9819,#FFD56A,#EB9819);

}

.footer-shape{

    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(235,152,25,.08);

    top:-220px;
    right:-150px;

    filter:blur(30px);

}

/*=========================
GRID
=========================*/

.footer-grid{

    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.3fr;
    gap:50px;
    margin-bottom:60px;

}

/*=========================
LOGO
=========================*/

.footer-logo img{

    width:180px;
    margin-bottom:25px;
    transition:.4s;

}

.footer-logo img:hover{

    transform:scale(1.06);

}

.footer-text{

    color:#ddd;
    line-height:32px;
    font-size:16px;
    margin-bottom:30px;

}

/*=========================
HEADING
=========================*/

.footer-col h3{

    color:#EB9819;
    font-size:30px;
    margin-bottom:25px;

}

/*=========================
LINKS
=========================*/

.footer-col ul{

    list-style:none;
    padding:0;

}

.footer-col ul li{

    margin-bottom:16px;

}

.footer-col ul li a{

    color:#fff;
    text-decoration:none;
    transition:.35s;
    position:relative;

}

.footer-col ul li a:hover{

    color:#EB9819;
    padding-left:10px;

}

/*=========================
CONTACT
=========================*/

.footer-contact li{

    display:flex;
    align-items:flex-start;
    gap:15px;

}

.footer-contact i{

    color:#EB9819;
    font-size:20px;
    margin-top:5px;
    min-width:20px;

}

.footer-contact span,
.footer-contact a{

    color:#fff;
    line-height:30px;
    text-decoration:none;

}

/*=========================
SOCIAL
=========================*/

.footer-social{

    display:flex;
    gap:15px;

}

.footer-social a{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

    font-size:18px;

}

.footer-social a:hover{

    background:#EB9819;

    transform:translateY(-8px) rotate(8deg);

}

/*=========================
BOTTOM
=========================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;
    color:#ddd;

}

.footer-bottom a{

    color:#EB9819;
    text-decoration:none;
    font-weight:600;

}



/*=========================================
RESPONSIVE STYLES
=========================================*/

/* --- Large Desktop / Standard Desktop Adjustments --- */
@media (max-width: 1199px) {
    .footer-grid {
        gap: 30px;
    }
    .footer-col h3 {
        font-size: 24px;
    }
}

/* --- Tablets & Medium Screens (Portrait & Landscape) --- */
@media (max-width: 991px) {
    .footer {
        padding: 70px 0 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-shape {
        width: 350px;
        height: 350px;
        top: -150px;
        right: -100px;
    }

    .footer-contact li a,
    .footer-contact li span {
        word-break: break-word;
    }
}

/* --- Mobile Landscape & Small Tablets --- */
@media (max-width: 767px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-col h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .footer-logo img {
        width: 160px;
        margin-bottom: 20px;
    }

    .footer-text {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding-top: 20px;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

/* --- Extra Small Mobile Devices (Portrait) --- */
@media (max-width: 480px) {
    .footer-logo img {
        width: 140px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-contact li {
        gap: 12px;
    }

    .footer-contact i {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}













/*=====================================
Hero Banners
======================================*/
.north-hero, .hajj-hero {
    min-height: 75vh;
    padding-top: 140px;
    background-size: cover;
    background-position: center;
}

.north-hero {
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80');
}

.hajj-hero {
    background-image: url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?auto=format&fit=crop&w=1920&q=80');
}

.north-hero-overlay, .hajj-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 16, 61, 0.7) 0%, rgba(31, 16, 61, 0.95) 100%);
    z-index: 1;
}

/*=====================================
Buttons & Form Components
======================================*/
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--secondary);
    border-radius: 60px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.theme-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.theme-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: var(--secondary);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.theme-btn-sm:hover {
    background: #fff;
    color: var(--primary);
}

.border-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 2px solid var(--secondary);
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.border-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.custom-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 16px;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary);
    box-shadow: none;
}

.option-dark {
    background-color: var(--primary);
    color: #fff;
}

/*=====================================
Glassmorphism & Cards Layout
======================================*/
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.border-amber {
    border: 1px solid rgba(235, 152, 25, 0.3);
}

.border-gold {
    border: 1px solid rgba(241, 179, 78, 0.3);
}

.modern-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(235, 152, 25, 0.4);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(31, 16, 61, 0.85);
    backdrop-filter: blur(8px);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body-custom {
    padding: 24px;
}

/* Package Cards for Hajj & Umrah */
.package-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

.featured-package {
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
    background: rgba(235, 152, 25, 0.05);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
}

/* Accordion Component */
.custom-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 24px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary) !important;
}

/* Icons & Helpers */
.feature-icon, .icon-circle, .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(235, 152, 25, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .theme-btn {
        margin-top: 15px;
        width: 100%;
    }

    .north-hero, .hajj-hero {
        padding-top: 120px;
        min-height: auto;
    }
}











/* CUSTOM */
@media only screen and (max-width: 1200px){
 .package-img-wrapper{
    height: 300px;
   }
}
@media only screen and (max-width: 992px){
   .badge-duration{
    text-align: center;
   }
}
@media only screen and (max-width: 767px){
  .package-img-wrapper{
        height: 400px;
    }
}
@media only screen and (max-width: 768px){
  .navbar-brand img{
    height: 80px;
  }
}
@media only screen and (max-width: 425px){
    .navbar-brand img{
    height: 70px;
  }
}
@media only screen and (max-width: 375px){
    .package-img-wrapper{
        height: 300px;
    }
    .btn-primary-custom{
      padding: 5px 15px;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
}
/* CUSTOM */
