@media (max-width: 900px) {
    .nav-links,
    .nav-cta-wrap {
      display: none;
    }
    .nav-inner {
      grid-template-columns: 1fr auto;
    }
    .hamburger {
      display: block;
    }
    .nav-logo img {
      height: 30px;
      width: 220px;
      margin-left: 10px;
    }
  }
 
  @media (prefers-reduced-motion: reduce) {
    .mobile-menu, .mobile-menu a, .backdrop, .hamburger span, .btn-book {
      transition: none !important;
    }
  }
 
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
  }

@media (max-width: 768px) {
  .btn-book {
    font-size: 14px!important;
    padding: 10px 12px;
    letter-spacing: 0.02em;
    text-align: center!important;
  }
}





  /* Tablets / small laptops (≤1024px) */
@media (max-width: 1024px) {
  .hero {
    min-height: clamp(480px, 78vh, 760px);
  }
  .hero-desc {
    grid-template-columns: repeat(2, auto);
    gap: 14px 20px;
  }
  /* separator logic changes for 2-col: hide after every 2nd item instead of 3rd */
  .hero-desc span:not(:nth-child(3n))::after {
    content: none;
  }
  .hero-desc span:not(:nth-child(2n))::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #ED1B2F;
    border-radius: 50%;
    transform: translateY(-50%);
  }
}

/* Tablets portrait / large phones (≤768px) */
@media (max-width: 768px) {
  .hero {
    height:560px !important;
    min-height:560px !important;
    max-height:560px !important; 
    
    align-items: flex-end;
  }
  .hero-inner {
    padding: clamp(32px, 8vw, 56px) clamp(16px, 5vw, 32px);
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(26px, 7vw, 38px);
    margin-bottom: 16px;
  }
  .hero-tag {
    margin-bottom: 16px;
  }
  .hero-desc {
    grid-template-columns: 1fr;
    justify-content: stretch;
    width: 100%;
    gap: 10px 0;
    padding: 14px 16px;
    margin-bottom: 24px;
  }
  .hero-desc span {
    white-space: normal;
  }
  /* stacked layout: no dot separators, use bottom border instead */
  .hero-desc span::after {
    content: none !important;
  }
  .hero-desc span:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
  
   .hero-desktop-banner {
        display: none;
    }

    .hero-mobile-banner {
        display: block;
    }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .hero {
    height: 500px!important;
  }
  .hero-title {
    font-size: clamp(24px, 8vw, 30px);
    letter-spacing: -0.3px;
  }
  .hero-tag span:last-child {
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .hero-desc {
    font-size: 13px;
    padding: 12px 14px;
  }
  .btn {
    font-size: 12px;
    gap: 8px;
  }
  .btn-outline {
    padding: 14px 20px;
  }
}

/* Landscape phones with limited height */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    height: 500px!important;
    align-items: center;
  }
  .hero-inner {
    padding: 24px 32px;
  }
  .hero-desc {
    margin-bottom: 18px;
  }
}




/* ===========================
   FORM STYLE
=========================== */
/* Tablet */
/* ===========================
   Large Desktop (1200px+)
=========================== */
@media (min-width:1200px){

    .premium-form-card{
        max-width:1200px;
    }

    .premium-form-card form{
        flex-wrap:nowrap;
    }

    .premium-form-card .field{
        flex:1;
        min-width:250px;
    }

    .premium-form-card button{
        width:130px;
        min-width:130px;
    }
}


/* ===========================
   Laptop (992px - 1199px)
=========================== */
@media (max-width:1199px){

    .premium-form-card{
        padding:28px 30px;
    }

    .premium-form-card form{
        gap:18px;
    }

    .premium-form-card .field{
        flex:1;
        min-width:220px;
    }

    .premium-form-card button{
        width:120px;
        min-width:120px;
    }

}


/* ===========================
   Tablet (768px - 991px)
=========================== */
@media (max-width:991px){

    .premium-form-card{
        padding:25px;
    }

    .premium-form-card form{
        flex-wrap:wrap;
        gap:18px;
    }

    .premium-form-card .field{
        flex:1 1 calc(50% - 9px);
        min-width:calc(50% - 9px);
    }

    .premium-form-card button{
        flex:1 1 100%;
        width:100%;
        min-width:100%;
        height:58px;
    }

}


/* ===========================
   Mobile (576px - 767px)
=========================== */
@media (max-width:767px){

    .premium-form-card .field{
        height:55px;
        display:flex;
        align-items:center;
    }

    .premium-form-card .icon-wrap{
        left:14px;
        width:18px;
        height:18px;
        z-index:2;
    }

    .premium-form-card .field input{
        height:55px;
        line-height:55px;
        padding:0 15px 0 52px;   /* Increased left padding */
        font-size:14px;
    }

    .premium-form-card .field input::placeholder{
        font-size:14px;
        color:#888;
        line-height:55px;
    }

    .premium-form-card .underline{
        left:52px;
        right:15px;
        bottom:12px;
    }
}

/* ===========================
   Small Mobile (Below 576px)
=========================== */
@media (max-width:575px){

    .premium-form-card{
        padding:20px;
    }

    .premium-form-card form{
        display:flex;
        flex-direction:column;
        gap:16px;
    }

    .premium-form-card .field{
        width:100%;
        min-width:100%;
        height:52px;
        flex:none;
    }

    .premium-form-card .field input{
        width:100%;
        height:100%;
        padding:0 15px 0 55px;
    }

    .premium-form-card .underline{
        left:55px;
        right:15px;
    }

    .premium-form-card button{
        display:block;
        width:100% !important;
        min-width:100% !important;
        max-width:100% !important;
        height:52px;
        flex:none !important;

        padding:0;
        margin:0;

        border:1px solid #fff;
        border-radius:4px;
        background:#fff;
        color:#ED1B2F;
        font-size:13px;
        font-weight:600;
        text-transform:uppercase;
    }
}







  /* ===== Services Media Queries ===== */

/* Tablets */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    aspect-ratio: 4/3;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .section-head p {
    font-size: 14px;
  }
}


@media (max-width: 720px){
    .premium-form-card form{ flex-direction: column; align-items: stretch; }
    .premium-form-card button{ align-self: stretch; margin-top: 12px; }
    .premium-form-card{ padding: 32px 24px 28px; }
  }
 
  .premium-form-card input:focus-visible,
  .premium-form-card button:focus-visible{
    outline: 1px solid var(--accent);
    outline-offset: 3px;
  }
  
  
  
  /* ===========================
   FLOATING BUTTONS
=========================== */
  
  
  /* Tablets */
@media (max-width: 768px){
    .float-btn{
        width:52px;
        height:52px;
        right:16px;
    }
    .float-btn i{
        font-size:22px;
    }
    .float-btn svg{
        width:24px;
        height:24px;
    }
    .float-call{
        bottom:85px;
    }
    .float-whatsapp{
        bottom:16px;
    }
}

/* Mobile phones */
@media (max-width: 480px){
    .float-btn{
        width:46px;
        height:46px;
        right:12px;
        box-shadow:0 6px 14px rgba(0,0,0,.25);
    }
    .float-btn i{
        font-size:20px;
    }
    .float-btn svg{
        width:20px;
        height:20px;
    }
    .float-call{
        bottom:72px;
    }
    .float-whatsapp{
        bottom:12px;
    }
}

/* Very small phones */
@media (max-width: 360px){
    .float-btn{
        width:42px;
        height:42px;
        right:10px;
    }
    .float-btn i{
        font-size:18px;
    }
    .float-btn svg{
        width:18px;
        height:18px;
    }
    .float-call{
        bottom:64px;
    }
    .float-whatsapp{
        bottom:10px;
    }
}




/* ===========================
   FOOTER 
=========================== */

/* Tablets */
@media (max-width: 900px){
    .footer-logo{
        width: 260px;
    }
    .footer-about{
        text-align: left; /* justify gets ugly with narrower columns */
    }
    .footer-row-address a{
        max-width: 300px;
    }
}

/* Mobile phones - grid collapses to 1 column anyway via auto-fit, 
   but let's tighten things up */
@media (max-width: 600px){
    .footer-logo{
        width: 240px!important;
        margin-bottom: 18px;
    }
    img.footer-logo {
        width: 240px !important;
        max-width: 240px !important;
       
    }
    .footer-about{
        max-width: 100%;
        text-align: left;
    }
    .footer-row-address a{
        max-width: 100%;
    }
    .footer-social{
        margin-left: 0;
    }
    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Very small phones */
@media (max-width: 380px){
    .footer-logo{
        width: 260px!important;
    }
    .footer-logo img{
        width:260px;
        height:auto;
    }
    .footer-row{
        gap: 10px;
    }
    .footer-icon,
    .footer-social a{
        width: 22px;
        height: 22px;
    }
}