/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  html{
    scroll-behavior:smooth;
  }
  
  body{
    font-family:'Inter',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
  }
  
  img{
    width:100%;
    display:block;
  }
  
  a{
    text-decoration:none;
  }
  
  button,
  input{
    font-family:'Inter',sans-serif;
  }
  
  :root{
    --gold:#d4a85f;
    --gold-light:#f0d2a0;
    --dark:#0b0b0b;
    --dark-2:#121212;
    --dark-3:#1a1a1a;
    --border:rgba(255,255,255,0.08);
  }
  
  /* =========================
     LOADER
  ========================= */
  
  .loader-wrapper{
    position:fixed;
    inset:0;
    background:#0b0b0b;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    transition:0.4s;
  }
  
  .loader-wrapper.hide{
    opacity:0;
    pointer-events:none;
  }
  
  .loader{
    width:54px;
    height:54px;
    border:3px solid rgba(255,255,255,0.1);
    border-top:3px solid var(--gold);
    border-radius:50%;
    animation:spin 1s linear infinite;
  }
  
  @keyframes spin{
    to{
      transform:rotate(360deg);
    }
  }
  
  /* =========================
     HEADER
  ========================= */
  
  .header{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 40px);
    max-width:1380px;
    height:82px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:999;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    background:rgba(15,15,15,0.72);
    backdrop-filter:blur(18px);
  }
  
  .logo-section{
    display:flex;
    align-items:center;
    gap:14px;
  }
  
  .logo-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    overflow:hidden;
    flex-shrink:0;
    border:1px solid rgba(255,255,255,0.08);
  }
  
  .logo-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .logo-section h2{
    color:#fff;
    font-size:17px;
    font-weight:700;
  }
  
  .logo-section p{
    color:#aaa;
    font-size:13px;
  }
  
  .nav{
    display:flex;
    align-items:center;
    gap:14px;
  }
  
  .nav-link{
    height:48px;
    padding:0 20px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#c9c9c9;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
  }
  
  .nav-link:hover{
    background:rgba(255,255,255,0.06);
    color:#fff;
  }
  
  .nav-link.active{
    background:rgba(212,168,95,0.14);
    color:var(--gold);
  }
  
  .header-whatsapp{
    height:50px;
    padding:0 22px;
    border-radius:14px;
    background:var(--gold);
    color:#111;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    transition:0.3s;
  }
  
  .header-whatsapp:hover{
    transform:translateY(-2px);
  }
  
  /* =========================
     HERO
  ========================= */
  
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
  }
  
  .hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.45);
    transform:scale(1.05);
  }
  
  .hero-overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.82)
      );
  }
  
  .hero-content{
    position:relative;
    z-index:5;
    max-width:1100px;
    padding:180px 20px 120px;
  }
  
  .hero-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:40px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:30px;
  }
  
  .hero-content h1{
    font-size:82px;
    line-height:1;
    font-weight:800;
    margin-bottom:26px;
  }
  
  .hero-content p{
    max-width:760px;
    margin:auto;
    color:#d0d0d0;
    font-size:22px;
    line-height:1.7;
    margin-bottom:44px;
  }
  
  /* =========================
     SEARCH
  ========================= */
  
  .search-box{
    max-width:650px;
    margin:0 auto 34px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:24px;
    overflow:hidden;
    display:flex;
  }
  
  .search-input{
    flex:1;
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 24px;
  }
  
  .search-input i{
    color:var(--gold);
  }
  
  .search-input input{
    width:100%;
    height:56px;
    border:none;
    background:none;
    outline:none;
    color:#fff;
    font-size:17px;
  }
  
  .search-input input::placeholder{
    color:#aaa;
  }
  
  .search-box button{
    min-width:190px;
    border:none;
    background:var(--gold);
    color:#111;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
  }
  
  /* =========================
     FILTERS
  ========================= */
  
  .filter-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
  }
  
  .filter-btn{
    height:52px;
    padding:0 24px;
    border:none;
    border-radius:40px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#ddd;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
  }
  
  .filter-btn:hover{
    border-color:var(--gold);
  }
  
  .filter-btn.active{
    background:var(--gold);
    color:#111;
  }
  
  /* =========================
     STATS
  ========================= */
  
  .stats-section{
    margin-top:-60px;
    position:relative;
    z-index:5;
    padding:0 55px 80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  
  .stat-box{
    background:#121212;
    border:1px solid var(--border);
    border-radius:22px;
    padding:34px;
    text-align:center;
  }
  
  .stat-box h3{
    color:var(--gold);
    font-size:44px;
    margin-bottom:12px;
  }
  
  .stat-box p{
    color:#bbb;
    font-size:17px;
  }
  
  /* =========================
     SECTIONS
  ========================= */
  
  .properties-section,
  .contact-section,
  .about-section{
    padding:110px 55px;
  }
  
  .section-title{
    text-align:center;
    margin-bottom:60px;
  }
  
  .section-tag{
    display:inline-flex;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(212,168,95,0.12);
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:22px;
  }
  
  .section-title h2{
    font-size:56px;
    margin-bottom:18px;
  }
  
  .section-title p{
    color:#aaa;
    font-size:19px;
  }
  
  /* =========================
     PROPERTIES
  ========================= */
  
  .properties-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  
  .property-card{
    background:#121212;
    border:1px solid var(--border);
    border-radius:26px;
    overflow:hidden;
    transition:0.4s;
    display:flex;
    flex-direction:column;
    height:100%;
  }
  
  .property-card:hover{
    transform:translateY(-10px);
    border-color:rgba(212,168,95,0.4);
  }
  
  .property-image{
    position:relative;
    height:260px;
    overflow:hidden;
  }
  
  .property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
  }
  
  .property-card:hover .property-image img{
    transform:scale(1.08);
  }
  
  .property-badge{
    position:absolute;
    top:18px;
    left:18px;
    padding:10px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    color:#111;
  }
  
  .badge-sale{
    background:var(--gold);
  }
  
  .badge-rent{
    background:#fff;
  }
  
  .badge-land{
    background:#22c55e;
  }
  
  .property-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  
  .property-title{
    font-size:28px;
    line-height:1.2;
    margin-bottom:16px;
    min-height:72px;
  }
  
  .property-location{
    display:flex;
    align-items:center;
    gap:10px;
    color:#aaa;
    margin-bottom:20px;
  }
  
  .property-location i{
    color:var(--gold);
  }
  
  .property-price{
    color:var(--gold);
    font-size:38px;
    font-weight:800;
    margin-bottom:22px;
  }
  
  .property-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    color:#bbb;
    margin-bottom:28px;
    min-height:44px;
  }
  
  .property-features span{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
  }
  
  .card-buttons{
    display:flex;
    gap:12px;
    margin-top:auto;
  }
  
  .details-btn{
    flex:1;
    height:56px;
    border:none;
    border-radius:16px;
    background:var(--gold);
    color:#111;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
  }
  
  .whatsapp-btn{
    width:56px;
    height:56px;
    border-radius:16px;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
  }
  
  /* =========================
     ABOUT
  ========================= */
  
  .about-section{
    position:relative;
    background:#111;
    overflow:hidden;
  }
  
  .about-overlay{
    position:absolute;
    inset:0;
    background:
      radial-gradient(
        circle at top right,
        rgba(212,168,95,0.08),
        transparent 30%
      );
  }
  
  .about-container{
    position:relative;
    z-index:5;
    max-width:1250px;
    margin:auto;
    text-align:center;
  }
  
  .about-container h2{
    font-size:56px;
    margin-bottom:24px;
  }
  
  .about-text{
    max-width:850px;
    margin:auto;
    color:#bbb;
    font-size:20px;
    line-height:1.9;
  }
  
  .about-features{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  
  .feature-box{
    background:#171717;
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px;
  }
  
  .feature-icon{
    width:74px;
    height:74px;
    margin:0 auto 28px;
    border-radius:20px;
    background:rgba(212,168,95,0.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
  }
  
  .feature-box h3{
    font-size:28px;
    margin-bottom:16px;
  }
  
  .feature-box p{
    color:#aaa;
    line-height:1.8;
  }
  
  /* =========================
     CONTACT
  ========================= */
  
  .contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
  
  .contact-card{
    background:#121212;
    border:1px solid var(--border);
    border-radius:28px;
    padding:40px;
  }
  
  .contact-card h3{
    font-size:34px;
    margin-bottom:34px;
  }
  
  .contact-item{
    margin-bottom:30px;
  }
  
  .contact-item span{
    display:block;
    color:#888;
    margin-bottom:10px;
  }
  
  .contact-item strong{
    font-size:20px;
    line-height:1.8;
  }
  
  .phone-link{
    color:#fff;
    font-size:22px;
    font-weight:700;
  }
  
  .contact-whatsapp{
    margin-top:20px;
    height:60px;
    border-radius:16px;
    background:var(--gold);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:17px;
    font-weight:700;
  }
  
  .map-container{
    border-radius:28px;
    overflow:hidden;
    min-height:450px;
    border:1px solid var(--border);
  }
  
  .map-container iframe{
    width:100%;
    height:100%;
    border:none;
  }
  
  /* =========================
     FOOTER
  ========================= */
  
  .footer{
    padding:60px 20px;
    background:#050505;
    border-top:1px solid rgba(255,255,255,0.05);
  }
  
  .footer-center{
    text-align:center;
    padding-bottom:30px;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  
  .footer-center h3{
    font-size:30px;
    margin-bottom:12px;
  }
  
  .footer-center p{
    color:#888;
  }
  
  .footer-bottom{
    padding-top:30px;
    text-align:center;
    color:#777;
  }
  
  /* =========================
     DETAILS PAGE
  ========================= */
  
  .details-page{
    padding:140px 55px 100px;
    background:#0b0b0b;
  }
  
  .breadcrumb{
    max-width:1300px;
    margin:0 auto 28px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#888;
  }
  
  .breadcrumb a{
    color:#aaa;
  }
  
  .details-gallery{
    max-width:1300px;
    margin:0 auto 44px;
  }
  
  .main-image-wrap{
    position:relative;
    height:720px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--border);
  }
  
  .main-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .details-badge{
    position:absolute;
    top:24px;
    left:24px;
    z-index:5;
    padding:12px 18px;
    border-radius:40px;
    background:var(--gold);
    color:#111;
    font-weight:700;
  }
  
  .gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.5);
    color:#fff;
    backdrop-filter:blur(10px);
    cursor:pointer;
  }
  
  .gallery-arrow.left{
    left:24px;
  }
  
  .gallery-arrow.right{
    right:24px;
  }
  
  .thumbnail-row{
    display:flex;
    gap:16px;
    margin-top:20px;
    overflow-x:auto;
  }
  
  .thumbnail-img{
    width:190px;
    height:110px;
    object-fit:cover;
    border-radius:16px;
    border:2px solid transparent;
    cursor:pointer;
  }
  
  .thumbnail-img.active{
    border-color:var(--gold);
  }
  
  .details-layout{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 380px;
    gap:34px;
  }
  
  .details-card{
    background:#121212;
    border:1px solid var(--border);
    border-radius:28px;
    padding:40px;
  }
  
  .details-top{
    display:flex;
    justify-content:space-between;
    gap:30px;
    margin-bottom:40px;
  }
  
  .property-mini-tag{
    display:inline-flex;
    padding:10px 16px;
    border-radius:30px;
    background:rgba(212,168,95,0.12);
    color:var(--gold);
    font-size:13px;
    margin-bottom:20px;
  }
  
  .details-card h1{
    font-size:54px;
    line-height:1.05;
    margin-bottom:20px;
  }
  
  .detail-location{
    display:flex;
    align-items:center;
    gap:10px;
    color:#aaa;
  }
  
  .detail-price{
    color:var(--gold);
    font-size:52px;
    font-weight:800;
  }
  
  .detail-stats{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-bottom:40px;
  }
  @media(max-width:1200px){
    .detail-stats{
      grid-template-columns:repeat(3,1fr);
    }
  }
  
  .detail-stat{
    background:#181818;
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
  }
  
  .stat-icon.gold{
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(212,168,95,0.12);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:18px;
  }
  
  .detail-stat strong{
    display:block;
    font-size:30px;
    margin-bottom:6px;
  }
  
  .detail-stat span{
    color:#999;
  }
  
  .details-card hr{
    border:none;
    border-top:1px solid rgba(255,255,255,0.08);
    margin:10px 0 40px;
  }
  
  .details-description-block h2{
    font-size:32px;
    margin-bottom:20px;
  }
  
  .detail-description{
    color:#bbb;
    line-height:1.9;
    font-size:18px;
  }
  
  .details-sidebar{
    display:flex;
    flex-direction:column;
    gap:24px;
  }
  
  .sidebar-card{
    background:#121212;
    border:1px solid var(--border);
    border-radius:28px;
    padding:30px;
  }
  
  .sidebar-card h2,
  .sidebar-card h3{
    margin-bottom:18px;
  }
  
  .sidebar-text{
    color:#aaa;
    line-height:1.8;
    margin-bottom:24px;
  }
  
  .details-whatsapp{
    height:60px;
    border-radius:16px;
    background:var(--gold);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:700;
  }
  
  .info-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  
  .info-row span{
    color:#888;
  }
  
  .agent-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
  }
  
  .agent-top img{
    width:60px;
    height:60px;
    border-radius:16px;
    object-fit:cover;
  }
  
  .agent-contact p{
    display:flex;
    align-items:center;
    gap:10px;
    color:#bbb;
    margin-bottom:14px;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  
  @media(max-width:1000px){
  
    .properties-grid{
      grid-template-columns:1fr;
    }
  
    .stats-section{
      grid-template-columns:1fr 1fr;
      padding:0 20px 70px;
    }
  
    .about-features{
      grid-template-columns:1fr;
    }
  
    .contact-container{
      grid-template-columns:1fr;
    }
  
    .details-layout{
      grid-template-columns:1fr;
    }
  
    .detail-stats{
      grid-template-columns:1fr 1fr;
    }
  
    .details-top{
      flex-direction:column;
    }
  
  }
  
  @media(max-width:700px){
  
    .header{
      width:calc(100% - 20px);
      padding:0 18px;
    }
  
    .nav{
      display:none;
    }
  
    .header-whatsapp{
      padding:0 14px;
      font-size:14px;
    }
  
  
    .hero-content h1{
      font-size:42px;
      line-height:1.05;
      margin-bottom:18px;
    }
  
    .hero-content p{
      font-size:15px;
      line-height:1.6;
      max-width:95%;
    }
  
    .hero-subtitle{
      font-size:11px;
      padding:10px 16px;
      margin-bottom:20px;
    }
  
    .search-box{
      flex-direction:column;
    }
  
    .search-box button{
      width:100%;
      height:64px;
    }
  
    .stats-section{
      grid-template-columns:1fr;
    }
  
    .properties-section,
    .contact-section,
    .about-section{
      padding:80px 20px;
    }
  
    .section-title h2{
      font-size:40px;
    }
  
    .details-page{
      padding:120px 20px 80px;
    }
  
    .main-image-wrap{
      height:320px;
    }
  
    .detail-stats{
      grid-template-columns:1fr;
    }
  
    .details-card h1{
      font-size:36px;
    }
  
  }
  /* CLEANER LUXURY HEADER + HERO FIX */

.header{
  top:18px;
  height:76px;
  width:calc(100% - 48px);
  max-width:1180px;
  padding:0 24px;
  border-radius:22px;
}

.logo-icon{
  width:52px;
  height:52px;
  border-radius:14px;
}

.logo-section h2{
  font-size:16px;
  font-weight:700;
}

.logo-section p{
  font-size:12px;
}

.nav-link{
  height:44px;
  padding:0 18px;
  border-radius:14px;
}

.header-whatsapp{
  height:46px;
  padding:0 20px;
  border-radius:14px;
}

.hero-content{
  padding-top:150px;
}

@media(max-width:700px){

  .header{
    height:62px;
    padding:0 10px;
    border-radius:18px;
    top:10px;
    width:calc(100% - 16px);
}

.logo-section{
    gap:8px;
}

.logo-icon{
    width:38px;
    height:38px;
    border-radius:10px;
}

.logo-section h2{
    font-size:13px;
    white-space:nowrap;
}

.nav{
    display:none;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:6px;
}

.header-call,
.header-whatsapp{
    height:36px;
    padding:0 10px;
    border-radius:10px;
    font-size:12px;
    gap:5px;
}

.header-call i,
.header-whatsapp i{
    font-size:13px;
}

  .hero-content{
    padding:125px 18px 75px;
  }

  .hero-subtitle{
    font-size:10px;
    letter-spacing:1.6px;
    padding:10px 16px;
    margin-bottom:22px;
  }

  .hero-content h1{
    font-size:40px;
    line-height:1.08;
    margin-bottom:18px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.55;
    max-width:95%;
    margin-bottom:30px;
  }

  .search-box{
    border-radius:22px;
    margin-bottom:30px;
  }

  .search-input{
    padding:0 18px;
  }

  .search-input input{
    height:72px;
    font-size:15px;
  }

  .search-box button{
    height:60px;
    font-size:16px;
  }

  .filter-btn{
    height:50px;
    padding:0 22px;
    font-size:14px;
  }
}
.back-btn{
  display:flex;
  align-items:center;
  gap:10px;

  width:fit-content;

  margin:0 0 22px 0;

  padding:0 22px;
  height:48px;

  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:#151515;
  color:#fff;

  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.back-btn:hover{
  color:var(--gold);
  border-color:rgba(212,175,55,.4);
  transform:translateY(-2px);
}
.load-more-btn{
  display:none;
  margin:45px auto 0;
  height:56px;
  padding:0 28px;
  border:none;
  border-radius:16px;
  background:var(--gold);
  color:#111;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}

.load-more-btn:hover{
  transform:translateY(-2px);
}
/* =========================
   SOCIAL ICONS
========================= */

.social-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  margin-top:22px;
}

.social-links a{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#fff;

  background:#171717;
  border:1px solid rgba(255,255,255,.08);

  transition:.3s;
}

.social-links a:hover{
  background:var(--gold);
  color:#111;
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(212,168,95,.28);
}

@media(max-width:700px){

  .social-links{
      gap:14px;
  }

  .social-links a{
      width:46px;
      height:46px;
      font-size:19px;
  }

}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-call{
  height:50px;
  padding:0 22px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;

  background:#1b1b1b;
  border:1px solid rgba(255,255,255,.08);

  color:#fff;
  font-weight:700;

  transition:.3s;
}

.header-call:hover{
  background:#fff;
  color:#111;
  transform:translateY(-2px);
}
@media(max-width:400px){

  .header-call span,
  .header-whatsapp span{
      display:none;
  }
  
  .header-call,
  .header-whatsapp{
      width:38px;
      padding:0;
      justify-content:center;
  }
  
  }
  /* FINAL CLEAN MOBILE HEADER */

@media (max-width:700px){

  .header{
    width:calc(100% - 16px);
    height:62px;
    top:10px;
    padding:0 10px;
    border-radius:18px;
  }

  .logo-section{
    min-width:0;
    gap:8px;
  }

  .logo-icon{
    width:38px;
    height:38px;
    border-radius:10px;
    flex-shrink:0;
  }

  .logo-section h2{
    font-size:13px;
    line-height:1;
    white-space:nowrap;
  }

  .nav{
    display:none;
  }

  .header-actions{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:auto;
    flex-shrink:0;
  }

  .header-call,
  .header-whatsapp{
    width:40px;
    height:40px;
    min-width:40px;
    padding:0;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
  }

  .header-call span,
  .header-whatsapp span{
    display:none;
  }

  .header-call i,
  .header-whatsapp i{
    font-size:16px;
  }

}