/* MOBILE SETTINGS */
@media (max-width: 768px) {

  body {
    font-size: 14px;
    line-height: 1.7;
  }

  section {
    padding: 60px 16px;
  }

  h1 {
    font-size: 28px !important;
    line-height: 1.3;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    font-size: 14px;
  }

  /* HERO SECTION */
  .hero {
    height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 16px;
  }

  .hero-left {
    max-width: 100%;
    text-align: left;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stat-box {
    width: 100%;
  }

  /* OFFER / FORM CARD */
  .offer-box,
  .modal-box {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }

  .offer-header,
  .modal-header {
    padding: 20px;
    text-align: left;
  }

  .offer-form,
  .modal-form {
    padding: 20px;
  }

  .offer-form input,
  .modal-form input,
  .modal-form select {
    font-size: 14px;
    padding: 14px 16px;
  }

/* PHONE INPUT FIX – MOBILE */
@media (max-width: 768px) {

  .phone-field,
  .phone-input,
  input[type="tel"] {
    width: 100%;
    height: 48px;
    padding-left: 88px !important; 
    height: 48px;
    font-size: 15px;
    border-radius: 14px;
  }

}

  /* If flag is inside input */
  .country-flag,
  .flag-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
  }

  /* Label spacing */
  .form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
  }
}
@media (max-width: 768px) {

  .iti {
    width: 100%;
  }

  .iti input {
    padding-left: 95px !important;
    height: 48px;
    font-size: 15px;
    border-radius: 14px;
  }

  .iti__flag-container {
    left: 12px;
  }

}

  /* PAYMENT / INFO GRID */
  .overview-grid,
  .payment-header,
  .plan-steps {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .plan-card {
    width: 100%;
  }

  /* WHY SECTION */
  @media (max-width: 768px) {

  .why-section {
    padding: 60px 0;
  }

  .why-lock {
    max-width: 100%;
  }

  .why-lock h2 {
    font-size: 28px;
  }

  .why-lock h3 {
    font-size: 22px;
    margin-top: 50px;
  }

  .why-lock p {
    font-size: 15px;
    line-height: 1.75;
  }
}


  /* IMAGE SECTIONS */
  .image-group {
    flex-direction: column;
    gap: 20px;
  }

  .image-box.large,
  .image-box.small {
    width: 100%;
    height: 240px;
  }

  /*  GALLERY SLIDER */
  .gallery-container {
    height: 360px;
    border-radius: 16px;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  /*  AMENITIES MOBILE FIX  */
  .amenities-section {
    padding: 40px 0;
  }

  .amenities-section .title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .amenities-section .sub {
    font-size: 14px;
    padding: 0 16px;
  }

  /* WRAPPER */
  .slider-wrapper {
    position: relative;
    margin-top: 24px;
  }

  /* SLIDER */
  .slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
    scroll-behavior: smooth;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }

  /* CARD */
  .card {
    min-width: 85%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    background: #e5e7eb;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* OVERLAY */
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.1)
    );
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .overlay h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .overlay p {
    color: #e5e7eb;
    font-size: 13px;
  }

  /* ARROWS */
  .slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
  }

  .slide-btn.left {
    left: 10px;
  }

  .slide-btn.right {
    right: 10px;
  }

/* FAQ SECTION */
  .faq-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }

  /* === LOCATION SECTION === */
  .location-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-wrapper {
    height: 300px;
  }

  .nearby-card {
    padding: 14px 16px;
  }

  /*FLOATING BUTTONS */
  .floating-actions {
    left: 16px;
    right: 16px;
    bottom: 20px;
  }

  .enquire-btn {
    padding: 12px 22px;
    font-size: 14px;
    border-radius: 30px;
  }

  .scroll-top-btn {
    width: 44px;
    height: 44px;
  }

  /* FOOTER */
  footer {
    padding: 24px 16px;
    font-size: 13px;
  }

/* SMALL DEVICES (≤480px) */
@media (max-width: 480px) {

  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .gallery-container {
    height: 300px;
  }

  .card {
    min-width: 220px;
    height: 300px;
  }
}
  /* NAVBAR */
 @media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
/*  MOBILE OVERVIEW LOCK  */
@media (max-width: 768px) {

  /* SECTION PADDING */
  .overview-section {
    padding: 40px 0;
  }

  /* GRID → COLUMN */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 92%;
    margin: auto;
  }

  /* LEFT CONTENT LOCK */
  .overview-left {
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .overview-left h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .overview-left p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* BUTTON FULL WIDTH */
  .btn-download {
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: 28px;
  }

  /* RIGHT SIDE STACK */
  .overview-right {
    gap: 24px;
  }

  /* IMAGES STACK */
  .image-group {
    flex-direction: column;
    gap: 16px;
  }

  .image-box.large,
  .image-box.small {
    width: 100%;
    height: 220px;
    border-radius: 16px;
  }

  /* INFO CARD LOCK */
  .info-card {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    border-radius: 18px;
  }

  .info-item strong {
    font-size: 15px;
  }
}
