 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-blue: #243E70;
      --accent-red: #E63946;
      --accent-orange: #F77F00;
      --light-gray: #E8E8E8;
      --bg-cream: #F5F3F0;
      --text-dark: #2c2c2c;
      --white: #FFFFFF;
    }

    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: 'Lora', serif;
      color: var(--text-dark);
      background-color: var(--bg-cream);
      line-height: 1.6;
    }

    /* ===== TOP BAR ===== */
    .top-bar {
      background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2f52 100%);
      color: var(--white);
      padding: 12px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 16px;
      gap: 8px;
      text-align: center;
      z-index: 950;
      border-bottom: 3px solid var(--accent-red);
    }

    .top-bar a {
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-left, .top-right {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .social {
      display: flex;
      gap: 10px;
    }

    .social a {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
      font-size: 14px;
    }

    @media (min-width: 768px) {
      .top-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 25px;
      }
    }

    /* ===== HEADER ===== */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid var(--light-gray);
      box-shadow: 0 4px 25px rgba(36, 62, 112, 0.12);
    }

    .nav {
      max-width: 1400px;
      margin: auto;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--primary-blue);
      flex-shrink: 0;
    }

    .logo img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 50%;
    }

    .logo span {
      font-size: 14px;
      font-weight: 900;
      color: var(--primary-blue);

    }

    /* ===== MENU BUTTON ===== */
    .menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--primary-blue);
      cursor: pointer;
      z-index: 1001;
      padding: 0;
      transition: all 0.3s ease;
    }

    .menu-btn:hover {
      color: var(--accent-red);
      transform: scale(1.15);
    }

    .menu-btn:active {
      transform: scale(0.95);
    }

    /* ===== MOBILE MENU ===== */
    .menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 280px;
      height: 100vh;
      background: #ffffff;
      padding-top: 200px;
      padding-left: 20px;
      padding-right: 20px;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 999;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
    }

    .menu.active {
      transform: translateX(0);
    }

    .menu a {
      display: block;
      color: var(--primary-blue);
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      padding: 15px 0;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .menu a:hover {
      color: var(--accent-red);
      padding-left: 10px;
      
    }

    @media (min-width: 768px) {
      .nav {
        height: 100px;
        padding: 20px 30px;
        gap: 30px;
      }

      .logo img {
        width: 60px;
        height: 60px;
      }

      .logo span {
        font-size: 16px;
      }

      .menu-btn {
        display: none !important;
      }

      .menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        padding: 0;
        padding-top: 0;
        transform: translateX(0);
        box-shadow: none;
        display: flex;
        gap: 25px;
      }

      .menu a {
        font-size: 16px;
        padding: 0;
        border-bottom: none;
      }

      

      .menu a:hover::before {
        width: 100%;
      }
    }

    @media (min-width: 1024px) {
      .nav {
        height: 120px;
        padding: 20px 40px;
        gap: 45px;
      }

      .logo img {
        width: 120px;
        height: 120px;
      }

      .logo span {
        font-size: 26px;
      }

      .menu {
        gap: 45px;
      }

      .menu a {
        font-size: 20px;
      }
    }






.booknow-btn {
  display: inline-block;
  text-decoration: none;
}
    /* ===== FOOTER ===== */
    .footer {
      background: linear-gradient(135deg, #0d1f3f, #1a2f52);
      color: #ffffff;
      padding: 40px 15px 20px;
      border-top: 4px solid #e53935;
      font-size: 12px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin-bottom: 30px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .footer-col h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: #ffffff;
      font-weight: 700;
    }

    .footer-col h4 {
      font-size: 14px;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .footer-col p {
      margin-bottom: 10px;
      color: #dddddd;
      line-height: 1.6;
      font-size: 12px;
    }

    .footer-col a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 12px;
      color: #cccccc;
    }

    @media (min-width: 768px) {
      .footer { padding: 50px 25px 25px; }
      .footer-container { grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: left; }
      .footer-links { align-items: flex-start; }
    }

    @media (min-width: 1024px) {
      .footer { padding: 70px 8% 30px; }
      .footer-container { grid-template-columns: repeat(3, 1fr); gap: 40px; }
      .footer-col h3 { font-size: 40px; }
    }

/* 📱 Mobile */
@media (max-width: 767px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;   /* ✅ small padding for mobile */
  }

}

/* 📲 Tablet */
@media (min-width: 768px) and (max-width: 1023px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 60px;   /* ✅ medium padding for tablet */
  }

}



@media (max-width: 767px) {

  /* First section full width */
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: left;
    padding-bottom: 10px;
  }

  /* Contact left */
  .footer-col:nth-child(2) {
    text-align: left;
    padding-left:35px;
  }

  /* Quick links right */
  .footer-col:nth-child(3) {
    text-align: right;
    padding-right: 60px;
  }

  .footer-col:nth-child(3) .footer-links {
    align-items: flex-end;
  }

}
    /* ===== FIXED BUTTONS ===== */
    .whatsapp-float {
      position: fixed;
      left: 10px;
      bottom: 20px;
      width: 48px;
      height: 48px;
      background: #25D366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      border: none;
      cursor: pointer;
        text-decoration: none !important;   /* 🔥 removes underline */

    }

    .booknow-btn {
  position: fixed;
  right: 20px;
  bottom: 70px;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 8px 12px; /* 🔥 size reduced */
  border-radius: 40px;

  background: linear-gradient(135deg, #E63946, #F77F00);
  color: #fff;

  font-size: 10px; /* 🔥 smaller text */
  font-weight: 400;

  border: none;
  cursor: pointer;

  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: 0.3s;
}

/* icon small */
.booknow-btn i {
  font-size: 13px;
}

/* hover */
.booknow-btn:hover {
  transform: translateY(-2px);
}
    @media (min-width: 768px) {
      .whatsapp-float {
        left: 15px;
        bottom: 25px;
        width: 55px;
        height: 55px;
        font-size: 24px;
      }
      .booknow-btn {
        right: 15px;
        bottom: 90px;
        padding: 10px 16px;
        font-size: 12px;
      }
    }

    @media (min-width: 1024px) {
      .whatsapp-float {
        left: 20px;
        bottom: 30px;
        width: 50px;
        height: 50px;
        font-size: 30px;
      }
      .booknow-btn {
        right: 45px;
        bottom: 100px;
        padding: 12px 20px;
        font-size: 25px;
      }
    }

    /* ===== POPUP ===== */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      padding: 15px;
    }

    .popup-overlay.active {
      display: flex;
    }

    .popup-box {
      background: #fff;
      width: 95%;
      max-width: 450px;
      padding: 15px;
      border-radius: 15px;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    .popup-box h3 {
      margin-bottom: 15px;
      color: #0a1f44;
      font-size: 18px;
    }

    .popup-box input,
    .popup-box textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 13px;
      font-family: 'Lora', serif;
      margin-bottom: 12px;
    }

    .submit-btn {
      width: 100%;
      background: #0a1f44;
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
    }

    .close-btn {
      position: absolute;
      right: 12px;
      top: 8px;
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: #666;
    }

    @keyframes fadeIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @media (min-width: 768px) {
      .popup-box { width: 90%; max-width: 500px; padding: 25px; }
      .popup-box h3 { font-size: 22px; margin-bottom: 20px; }
    }

    @media (min-width: 1024px) {
      .popup-box { width: 500px; padding: 30px; }
      .popup-box h3 { font-size: 24px; }
    }




