/* ==========================================================
   MarioJuicy - Professional Bootstrap Theme (style.css)
   Author: MK Web Tech
   ========================================================== */

:root {
  --mj-orange: #ff6600;
  --mj-orange-dark: #e05500;
  --mj-dark: #111;
  --mj-gray: #666;
  --mj-light: #fff9f4;
  --mj-white: #ffffff;

  --font-primary: "Poppins", sans-serif;

  --fs-xs: 0.875rem;
  --fs-sm: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-xxl: 3rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.15);
}

/* -------------------------------
   Global Reset & Base
--------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--mj-dark);
  background-color: var(--mj-white);
  overflow-x: hidden;
}

/* -------------------------------
   Typography
--------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--mj-dark);
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--fs-xxl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }

@media (max-width: 991px) {
    h2 {
        font-size: 1.75rem; /* Tablet (28px) */
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 1.5rem; /* Mobile (24px) */
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.35rem; /* Small Mobile (22px) */
    }
}

p {
  color: var(--mj-gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

a {
  color: var(--mj-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--mj-orange-dark);
}

span {
  color: var(--mj-orange);
  font-weight: var(--fw-medium);
}

/* -------------------------------
   Utilities
--------------------------------*/
.text-orange { color: var(--mj-orange) !important; }
.bg-light-orange { background-color: var(--mj-light) !important; }
.text-center { text-align: center !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.mt-section { margin-top: var(--space-xl) !important; }
.mb-section { margin-bottom: var(--space-xl) !important; }

/* -------------------------------
   Navbar
--------------------------------*/
.mj-navbar {
  background-color: #fff;
  height: 75px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

.mj-navbar .navbar-brand img {
  height: 55px;
  width: auto;
  display: block;
}

.mj-navbar .nav-link {
  color: var(--mj-dark);
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.mj-navbar .nav-link:hover,
.mj-navbar .nav-link.active {
  color: var(--mj-orange);
}
/* =========================================
   Home Hero Section
========================================= */

.mj-hero {
  position: relative;
  min-height: calc(100vh - 75px); 
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/b-2.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.mj-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
   color: #13d71b;
}

.mj-hero p {
  color: #f2f2f2;
  font-size: 1.15rem;
  line-height: 1.7;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


@media (max-width: 991px) {
  .mj-hero {
    background-attachment: scroll; /* Fix for mobile parallax */
    min-height: 90vh;
  }

  .mj-hero h1 {
    font-size: 2rem;
  }

  .mj-hero p {
    font-size: 1rem;
  }

  .hero-wave {
    height: 60px;
  }
}

/* =================== Location Hero Section  ================= */

.location-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 60vh; 
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/b-1.jpg") center/cover no-repeat;
  background-attachment: fixed;
  border-bottom: 4px solid var(--mj-orange);
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #13d71b;
}

.page-hero p {
  font-size: 1.1rem;
  color: #f2f2f2;
  max-width: 650px;
  margin: 0 auto;
}

.page-hero .btn-orange {
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .page-hero {
    min-height: 50vh;
    background-attachment: scroll; /* mobile fix for parallax */
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 1rem;
    padding: 0 20px;
  }
}
.franchise-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 60vh; 
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/h-b-1.jpg") center/cover no-repeat;
  background-attachment: fixed;
  border-bottom: 4px solid var(--mj-orange);
}
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 60vh; 
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/b-1.jpg") center/cover no-repeat;
  background-attachment: fixed;
  border-bottom: 4px solid var(--mj-orange);
}
.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 60vh; 
  background: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/b-1.jpg") center/cover no-repeat;
  background-attachment: fixed;
  border-bottom: 4px solid var(--mj-orange);
}

/* -------------------------------
   Buttons
--------------------------------*/
.btn-orange {
  background-color: var(--mj-orange);
  color: #fff !important;
  border-radius: 50px;
  border: none;
  padding: 12px 36px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-orange:hover {
  background-color: var(--mj-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 102, 0, 0.4);
}

/* -------------------------------
   About Section
--------------------------------*/
.about-section {
  padding: 100px 0;
}

.about-section p {
  color: var(--mj-gray);
}
@media (max-width: 992px) {
  .about-section {
    padding: 70px 0;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 50px 0;
  }
}

/* =======================================
   MarioJuicy Premium Menu Section
======================================= */

.mj-menu-section {
  background: linear-gradient(180deg, #fff9f4 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mj-menu-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent 70%);
  z-index: 0;
}
@supports not (mask: linear-gradient(#fff 0 0)) {
  .menu-card:hover {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  }
}

.mj-menu-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.08), transparent 70%);
  z-index: 0;
}

.mj-menu-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  position: relative;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 10px auto 40px;
  line-height: 1.6;
}

.menu-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 102, 0, 0.25);
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #ff6600, #ff944d) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}


.menu-card:hover::before {
  opacity: 1;
}

.menu-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.menu-card:hover h5 {
  color: #ff6600;
}

/* Responsive */
@media (max-width: 991px) {
  .mj-menu-section {
    padding: 70px 0;
  }

  .menu-img img {
    height: 200px;
  }

  .menu-card h5 {
    font-size: 1rem;
  }
}

/* ==========================================
   MarioJuicy Stats Section – Fresh Premium
========================================== */

.mj-stats-section {
  background: linear-gradient(180deg, #fff9f4 0%, #fff9f4 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* decorative soft shapes (optional subtle design) */
.mj-stats-section::before {
  content: "";
  position: absolute;
  top: -50px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
  z-index: 0;
}
.mj-stats-section::after {
  content: "";
  position: absolute;
  bottom: -50px; left: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,153,0,0.1) 0%, transparent 70%);
  z-index: 0;
}

.stat-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  z-index: 1;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 102, 0, 0.25);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6600, #ff944d);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
  transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.5);
}

.stat-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.stat-icon i {
    font-size: 25px;
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .mj-stats-section {
    padding: 70px 0;
  }

  .stat-box {
    padding: 30px 15px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-box h2 {
    font-size: 1.8rem;
  }
}


/* -------------------------------
   Franchise / CTA Section
--------------------------------*/
/* .franchise {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.85), rgba(255, 153, 0, 0.85)),
              url("../images/banner_img.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 0;
} */
.franchise {
  position: relative;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  background: url("../images/b-4.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Premium overlay */
.franchise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.55)
    );
  backdrop-filter: brightness(0.9);
  z-index: 1;
}

/* Content should be above overlay */
.franchise > .container {
  position: relative;
  z-index: 2;
}
.franchise {
  animation: fadeHero 1.2s ease forwards;
  opacity: 0;
}
.franchise h2{
color:#13d71b}
@keyframes fadeHero {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =======================================
   MarioJuicy - Steps to Join Section
======================================= */

.mj-steps-section {
  background: linear-gradient(180deg, #fff 0%, #fff9f4 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mj-steps-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.08), transparent 70%);
  z-index: 0;
}

.mj-steps-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  position: relative;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 10px auto 50px;
  line-height: 1.6;
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px 35px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  z-index: 1;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.number-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6600, #ff944d);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
}

.step-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-top: 35px;
  margin-bottom: 10px;
}

.step-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .mj-steps-section {
    padding: 70px 0;
  }

  .number-badge {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    line-height: 40px;
  }

  .step-card {
    padding: 35px 20px 30px;
  }

  .step-card h5 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }
}

/* -------------------------------
   Scroll To Top Button
--------------------------------*/
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 12px 15px;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #222;
  transform: translateY(-3px);
}

/* -------------------------------
   Responsive Design
--------------------------------*/
@media (max-width: 991px) {
  .mj-navbar {
    height: auto;
    padding: 12px 0;
  }

  .mj-hero h1 {
    font-size: 2rem;
  }

  .mj-hero p {
    font-size: 0.95rem;
  }

  .menu-item img {
    height: 200px;
  }

  .btn-orange {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* ===============================
   ENQUIRY & CONTACT FORM
   =============================== */
.enquiry {
  background: #fff9f4;
}

.enquiry-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.enquiry-form .form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

/* Floating Labels Styling */
.form-floating label {
  color: #777;
  transition: all 0.3s ease;
}

.form-floating .form-control:focus+label {
  color: #ff6600;
}

.form-floating .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px;
}

.form-floating .form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

/* ===============================
   TEAM & DIRECTORS
   =============================== */
.director-card,
.team-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.director-card:hover,
.team-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.director-card img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===============================
   FOOTER
   =============================== */
/* =======================================
   Premium Footer - MarioJuicy
======================================= */

.mj-footer {
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: #fff;
  text-align: center;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Add subtle top glow line */
.mj-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff6600, transparent);
  transform: translateX(-50%);
  opacity: 0.7;
}

/* Footer Text */
.mj-footer .contact-info {
  font-size: 1rem;
  color: #ddd;
  letter-spacing: 0.3px;
}

.mj-footer .contact-info strong {
  color: #ff6600;
  font-weight: 600;
}

/* Social Icons */
.mj-footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ff6600;
  font-size: 18px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.mj-footer .social a:hover {
  background: #ff6600;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Bottom Copyright */
.mj-footer p.small {
  font-size: 1rem;
  color: #ccc;
  margin-top: 25px;
  line-height: 1.6;
}

.mj-footer p.small span {
  color: #ff6600;
  font-weight: 700;
}

.mj-footer p.small a {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.mj-footer p.small a:hover {
  color: #fff;
}

/* Background Decorative Lights */
.mj-footer::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,0.15), transparent 70%);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .mj-footer {
    padding: 50px 0 20px;
  }

  .mj-footer .social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .mj-footer p.small {
    font-size: 0.9rem;
  }
}

/* ===============================
   SCROLL TO TOP
   =============================== */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #222;
  transform: translateY(-3px);
}

/* ===============================
   SWEETALERT2 BRAND THEME
   =============================== */
.swal2-popup {
  border-radius: 16px !important;
  font-family: "Poppins", sans-serif !important;
}

.swal2-title {
  color: #ff6600 !important;
  font-weight: 700 !important;
}

.swal2-confirm {
  background: linear-gradient(135deg, #ff6600, #ff9900) !important;
  border: none !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 30px !important;
  transition: 0.3s ease !important;
}

.swal2-confirm:hover {
  background: linear-gradient(135deg, #e05500, #ff7a00) !important;
}

.swal2-icon.swal2-success {
  border-color: #ff6600 !important;
  color: #ff6600 !important;
}

/* ===============================
   LOADER ANIMATION
   =============================== */
.mj-loader {
  width: 60px;
  height: 60px;
  border: 5px solid #ffcc99;
  border-top: 5px solid #ff6600;
  border-radius: 50%;
  animation: mjSpin 1s linear infinite;
  margin: 20px auto;
}

@keyframes mjSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swal2-html-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .menu-item img {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .btn-orange {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* ===============================
   Locations Section
=============================== */
.locations {
  background-color: var(--mj-light);
}

.outlet-card {
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.outlet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.store-icon .main-icon {
  font-size: 30px;
  color: var(--mj-orange);
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  padding: 25px;
}

.branch-name {
  font-weight: 700;
  color: var(--mj-dark);
      margin: 0;
    padding-left: 10px;
    flex: 1;
    text-align: left;
}

/* Info Row (icon + text perfectly aligned) */
.info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.6;
}

.info-row i {
  color: var(--mj-orange);
  min-width: 24px;        /* keeps icons aligned vertically */
  font-size: 18px;
  margin-top: 4px;
}

.info-row p {
  margin: 0;
  padding-left: 10px;
  flex: 1;
  text-align: left;
  color: #555;
}

/* Buttons */
.outlet-card .btn-orange {
  margin-top: 15px;
  display: inline-block;
  width: 100%;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 767px) {
  .outlet-card {
    text-align: left;
  }

  .info-row p {
    font-size: 15px;
  }
}
/* =========================================
   Contact Details Section
========================================= */


.contact-details .section-title {
  font-size: 2rem;
  color: var(--mj-orange);
  font-weight: 700;
  position: relative;
}

.contact-details .section-subtitle {
  font-size: 1rem;
  color: #777;
}

/* Info Rows */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.icon-circle {
  background: rgba(255, 102, 0, 0.1);
  color: var(--mj-orange);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background: var(--mj-orange);
  color: #fff;
  transform: scale(1.1);
}

.info-text h6 {
  font-weight: 700;
  color: var(--mj-dark);
  margin-bottom: 3px;
}

.info-text p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 102, 0, 0.1);
  color: var(--mj-orange);
  border-radius: 50%;
  margin: 0 6px;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-link:hover {
  background: var(--mj-orange);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
  .info-item {
    align-items: flex-start;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .info-text p {
    font-size: 14px;
  }
}
