/* Fonts */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

@font-face {
    font-family: 'TimesTenProRoman';
    src: url('./fonts/TimesTenPro-Roman.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'TimesTenProRoman';
  src: url('./fonts/TimesTenPro-Roman.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Souvenir';
  src: url('../fonts/Souvenir.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
  
}

.hero-section-mobile { 
    display: none; 
}
.navbar-mobile{
  display: none;
}
.angled-header {
  background-color: white;
  color: #fff;
  height: 17vh;
  /* position: fixed; */
  position: relative;
  top: 0;
  width: 100%;
  /* z-index: 9999; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 ;
  z-index: 2;
}

/* HEADER LEFT */
.header-left {
  display: flex;
  background-color: #000;
  height: 100%;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  align-items: center;
  justify-content: center;
  width: 80%;
  z-index: 3;
}
.header-left img{
  height: 100%;
  width: 650px;
}
/* .logo-icon {
  height: 90px;
} */

.header-right{
  width: 20%;
}

.logo-text h1{
  font-size: 3.4rem;
  font-weight: bold;
  margin: 0;
  background: linear-gradient(to right, #fff9cc, #e0b647);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.logo-text span  {
  font-size: 2.2rem;
  color:  #d5aa3f;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  margin-top: -6px;
}

/* Consultation Button Image */
.header-right img  {
    height: 100px;
    width: 260px;
    
}

/* ===== NAVBAR ===== */
/* NAVBAR BASE */
.custom-navbar {
  position: relative;
  /* top: 17vh;  */
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #3c5858;
  color: white;
  padding: 0px ;
  height: 8vh;
  position: relative;

  /* POLYGON SHAPE FROM LEFT */
  /* clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%); */
}

/* LEFT SLANT BLOCK */
.navbar-left-slant {
  width: 25%;
  height: 100%;
  position: relative;
  color: white;
  background-color: #ffffff;
  clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 88% 110%, 0% 105%);
}
.nav-content {
  display: flex;
  align-items: center;
  width: 100%;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 70%;
  font-family: 'Adobe Jenson Pro Bold Subhead';
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}

nav ul li a:hover {
    color: #969292;   /* dark grey */
    border-radius: 5px;       /* optional rounded corners */
}

.nav-links li:not(:last-child) a::after {
  content: "|";
  color: rgba(255, 255, 255, 0.4);
  margin-left: 12px;
}

/* WhatsApp Button on Right */
.whatsapp-click {
  display: flex;
  width: 30%;
  height: 100%;
  justify-content: center;
  
}

.whatsapp-click img {
  height: 58px;
}

.btn-hover:hover {
    filter: brightness(50%); /* darkens the image/button */
    transform: scale(1.5); /* slightly zooms in */
}


/* ========== HERO SECTION ========== */
/* .onepage-wrapper{
  position: absolute;
  top: calc(17vh + 8vh); 
  bottom: 10vh;          
  overflow-y: auto;
  width: 100%;
  background: #f9f9f9;
} */
.hero-section {
  /* background-color: #fff; */
  background-image: url("../img/bg.png"); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: 70vh;
  width: 100vw;
  font-family: 'Segoe UI', sans-serif;
  width: auto;
}


.hero-container {
  display: flex;  
  
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 100%;
}

.hero-text {
  flex: 1;
  display: flex;
  height: 100%;
  max-width: 70%;
  justify-content: center;
}

.text-container{
  width: 70%;
}

.hero-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 16px;
  font-weight: 400;
}

#typewriter {
  
    font-family: 'Roboto Condensed', sans-serif;
    color: #dbb23e;
    font-size: 3.5rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #5c4033;
    animation: blinkCursor 0.7s infinite;
}


.hero-text h2 span {
  color: #dbb23e;
  font-family: 'TimesTenProRoman', 'Times New Roman', serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-description {
  margin-top: 20px;

}

.hero-description p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 15px;
  font-family: 'Times New Roman', Times, serif;

  /* font-weight: bold; */
  color: #222;
  text-align: justify;
}
.hero-image {
  flex: 1;
  height: 100%;
  max-width: 30%;
  text-align: right;
}

.hero-image img {
  width: 100%;
  height: 100%;
  bottom: 0;
  object-fit: fill;
}
/* .hero-image img {
  width: 90%;
  max-width: 400px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
} */


/* ========== HERO FOOTER ========== */


.hero-footer {
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 10vh;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: white;
  overflow: hidden;
}

/* 🔻 Left Slant Shape with Button */
.footer-left-slant {
  background-color: black;
  width: 25%;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 82% 100%, 0% 100%);
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-left-slant a {
  background: linear-gradient(to right, #fdbb2d, #f68e1f);
  color: black;
  font-weight: 600;
  font-size: 20px;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-left-slant a:hover {
  color: white;
}

/* 🔸 Right Info Boxes */
.right-info {
  display: flex;
  flex: 1;
  background-color: #ffffff;
  height: 50%;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  text-align: center;
}

.right-info a {
  text-decoration: none;
  color: inherit; /* keeps the current text color */
}

.info-box {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  gap: 10px;
  color: white;
  background-color: #3c5858;
  border-left: 1px solid white;
}

.left-slant-box {
  background-color: #3c5858;
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(38px 0%, 100% 0%, 100% 100%, 0% 100%);
  border-left: none !important;
  padding-left: 35px; /* additional padding to align text due to polygon cut */
}

.info-box i {
  font-size: 16px;
}


.legal-section {
  position: relative;
  background-image: url("../img/bg.png"); /* Ensure correct path */
  background-size: cover; /* Makes the image cover entire section */
  background-position: center; /* Keeps image centered */
  background-repeat: no-repeat;
  overflow: hidden;
  padding: calc(27vh + 8vh) 0 0 0;
  height: 65vh;
  width: 100vw;
  width: auto;
}

.legal-container {
  display: flex;  
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 100%;
}

.legal-section .alt{
  flex-wrap:wrap-reverse;
}
.legal-alt{
  background-image: url("../img/bg.png"); /* Ensure correct path */
  background-size: cover; /* Makes the image cover entire section */
  background-position: center; /* Keeps image centered */
  background-repeat: no-repeat;
  
}
.alt .legal-text{
  transform: translateX(80px);
}
.legal-img{
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-img img {
  width: 54%;
  height: 79%;
  z-index: 2;
}
.legal-text {
  transform: translateX(0px);
}
.legal-text img{
  text-align: end;
  margin-top: -70px;
  margin-left: 197px;
  height: 250px;
  width: 205px;
}
.legal-text {
  width: 50%;
  height: 100%;
  z-index: 2;
}

.legal-text h2 {
  font-size: 35px;
  color: #222;
  font-family: 'Roboto Condensed', sans-serif;
  border-bottom: 2px solid #000;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: 45px;
  margin-left: 91px;
}

.legal-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 91px;
}

.legal-text ul li {
  font-size: 23px;
  margin-bottom: 12px;
  color: #333;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  font-family: 'Times New Roman', Times, serif;
  
}

.legal-text ul li::before {
  content: '*';
  position: absolute;
  left: 0;
  color: #222;
  font-weight: bold;
}


.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(20, 20, 20, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem 2.5rem;
    max-width: 1000px;
    width: 50%;
    height: 65vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.disclaimer-box h3 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: justify;
}

.disclaimer-box button {
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background-color: #4b2e1f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.disclaimer-box button:hover {
    background-color: #684218;
}


/* @media screen and (max-width: 800px) {
  html, body {
    width: 1200px !important;       
    min-width: 1200px !important;   
    overflow-x: scroll !important;    
    overflow-y: scroll !important;
    zoom: 1 !important;             
    touch-action: pan-x pan-y;      
  }

  body {
    position: relative;
  }
} */

/* @media screen and (max-width: 800px) {
  html, body {
    width: 1200px !important;
    min-width: 1200px !important;
    max-width: 1200px !important;
    overflow-x: scroll !important;    
    overflow-y: scroll !important;;
    touch-action: pan-x pan-y; 
    zoom: 0.1 !important;
    -webkit-text-size-adjust: none;
  }

  body {
    position: relative;
    transform-origin: 0 0; 
  }
} */

/* ============== MOBILE (≤800px) — force desktop layout, scroll between fixed bars ============== */
@media screen and (max-width:576px) {
  
   .hero-footer{
    display: none;
   }


  .angled-header{ 
      display: none ; 
      
  }
  .custom-navbar { 
      display: none ;
   }

  .onepage-wrapper{
    padding-top: 80px;
  }

  .navbar-mobile {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .nav-left { display: block; }

  .logo {
    height: 40px;
  }
  .brand img {
    display: none;
  }

  /* Brand = 95% (image + text in one line) */
  .brand {

    align-items: center;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    flex: 0 1 95%;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    background: linear-gradient(to bottom, #eea852, #c9a063, #c5bcaf, #bdb9b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Souvenir', serif;
    line-height: 1;
  }

  /* Toggle = 5% */
  .nav-right {
    flex: 0 0 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  transition: 0.4s ease;
  border-radius: 2px;
  }

  .menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  

  /* Dropdown panel under the bar */
  .nav-links {
    position: fixed;
    top: 70px; left: 0;
    width: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0;                 /* collapsed by default */
    max-height: 0;              /* collapsed */
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,.3);
    z-index: 999;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links.show {
    max-height: 70vh;
    padding: 1.1rem 0;
  }

  .nav-links li a {
    color: #ede8f5;
    text-decoration: none;
    font-size: 1.05rem;
  }

  /* Remove desktop separators */
  .nav-links li:not(:last-child) a::after { content: none !important; }

    .hero-section { display: none !important; }
  .hero-section-mobile { 
    display: block !important;
    background-image: url("../img/bg.png"); 
    background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
    padding: 10px 14px 10px;
    /* height: 95vh; */
  }

  /* Container: stack image then text */
  .hero-container-mobile{
    display:flex;
    flex-direction: column-reverse;
    height: 70%;
  }
  .onepage-wrapper {
        padding-top: 70px;
    }

  /* Image card */
  .hero-image-mobile{
    text-align:center;
  }
  .hero-image-mobile img{
    width: 50%;
    max-width: 290px;
    height:auto;
    border-radius: 6px;
    box-shadow: 0 8px 26px rgba(0,0,0,.18);
  }

  /* Text block */
  .hero-text-mobile{
    color:#111;
  }
  .hero-text-mobile h1{
    margin: 2px 0 10px;
    line-height: 1.15;
  }
  .hero-text-mobile .wc{
    display:inline-block;
    color:#000000;
    font-weight: 500;
    letter-spacing:.2px;
    font-size: 1.15rem;
  }
  /* Big title (typewriter target) */
  #typewriter-mobile{
    margin-top:6px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;          /* looks like screenshot scale */
    color: #dbb23e;
    border-right: 2px solid #111; /* caret */
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCaret .7s step-end infinite;
    text-transform: uppercase;
  }
  /*@keyframes blinkCaret {*/
  /*  0%,100%{ border-color:#111; } 50%{ border-color: transparent; }*/
  /*}*/

  /* Paragraphs */
  .hero-description-mobile{
    margin-top: 10px;
  }
  .hero-description-mobile p{
    margin: 0 0 8px;
    font-size: .7rem;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.45;
    color:#000000;
    text-align: left;
  }

  /* Buttons row */
  .hero-buttons-mobile{
    display:flex;
    gap:35px;
    margin-top: 12px;
    
  }
  .hero-buttons-mobile a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 11px 16px;
    font-family: 'Roboto', sans-serif;
    border-radius: 999px;
    font-weight: 600;
    text-decoration:none;
    font-size: .7rem;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
  }
  .hero-buttons-mobile .btn-outline{
    background: linear-gradient(to right, #fdbb2d, #f68e1f);
  color: black;
  font-size: 0.7rem;
  }
  .hero-buttons-mobile .btn-outline:hover{
    background: linear-gradient(to right, #ede3cd, #e8c29a);
  color: black;
  }
  .hero-buttons-mobile .btn-filled{
    background:#25D366;
    color:#0d0d0d;
  }

  /* Contact card (footer in the hero) */
  .mobile-footer{
    margin-top: 12px;
    background:#0c0c0c;
    border-radius: 12px;
    padding: 10px 12px 10px;
    display:flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-footer .contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#cfcfcf;
  }
  .mobile-footer .contact-item i{
    font-size: 1.1rem;
    width: 34px; height:34px;
    display:grid; place-items:center;
    border-radius: 50%;
    background:#1b1b1b;
    color:#cfcfcf;
  }
  .mobile-footer .contact-item h4{
    margin:0 0 2px;
    font-family: 'Roboto', sans-serif;
    font-size:.8rem;
    color:#e1e1e1;
  }
  .mobile-footer .contact-item p{
    margin:0;
    font-family: 'Times New Roman', Times, serif;
    font-size:.77rem;
    color:#bababa;
  }

  html {
  /* scroll-behavior: smooth;          
  overscroll-behavior-y: contain;  */
  overflow-y: auto;  /* no page bounce on Android */
}
.legal-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 5px;     /* compact, even padding */
    height: 90vh;           /* let content define height */
    width: auto;
  }

  .legal-container {
    display: flex;
    flex-direction: column; /* stack image then text */
    width: 100%;
    gap: 10px;
    min-height: calc(100vh - 150px);
  }

  /* In “alt” sections we still stack (no zig-zag on mobile) */
  .legal-section .alt,
  .legal-container.alt {
    flex-direction: column-reverse !important;
  }

  /* image first, full width, nice card look */
  .legal-img {
    flex: 4 1 0;                /* 4 parts of the total */
  width: 100%;
  text-align: center;
  min-height: 0;
  }
  .legal-img img {
    width: 100%;
    max-width: 540px;         /* prevents huge images on tablets */
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
    object-fit: cover;
  }

  /* text block second */
  .legal-text {
    flex: 6 1 0;                /* 6 parts of the total */
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  overflow-y: hidden;           /* scroll if copy is long */
  padding: 10px;
  box-sizing: border-box;
  min-height: 0;
  }

  .legal-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    margin: 6px 0 10px;
    color: #101010;
    border-bottom: 2px solid #000; /* keep your underlined style */
    display: inline-block;
  }
  .legal-text img{
      margin-left: 100px;
  }

  .legal-text ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
  }

  .legal-text ul li {
    position: relative;
    padding-left: 18px;
    margin: 8px 0;
    line-height: 1.5;
    color: #2b2b2b;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(.95rem, 3.6vw, 1.05rem);
  }

  /* your star/bullet */
  .legal-text ul li::before {
    content: '*';
    position: absolute;
    left: 0;
    top: 0;
    color: #111;
    font-weight: 700;
  }

  /* remove any desktop transforms that push text sideways */
  .alt .legal-text,
  .legal-text { transform: none !important; }


  /* Hide desktop onepage pagination on mobile if needed */
  .onepage-pagination { display: none; }

  .disclaimer-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem 2.5rem;
    max-width: 1000px;
    width: 70%;
    height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    overflow-y: scroll;
}
}


@media screen and (min-width: 577px) and (max-width: 740px){
  .hero-section-mobile { display: none; }

   /* Hide desktop bars */
  .angled-header,
  .custom-navbar { display: none !important; }

  /* Show mobile nav */
  .navbar-mobile {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1000;
  }
  .onepage-wrapper{
    padding-top: 80px;
  }

  .nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .nav-left { display: none; }

  /* Brand = 95% (image + text in one line) */
  .brand {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    flex: 0 1 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    background: linear-gradient(to bottom, #eea852, #c9a063, #c5bcaf, #bdb9b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Souvenir', serif;
    font-size: 2rem;
    line-height: 1;
  }
  .brand img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
  }

  /* Toggle = 5% */
  .nav-right {
    flex: 0 0 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  /* .menu-toggle .bar {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: .3s ease;
  } */
  
  .menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  transition: 0.4s ease;
  border-radius: 2px;
  }

  .menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  

  /* Dropdown panel under the bar */
  .nav-links {
    position: fixed;
    top: 70px; left: 0;
    width: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 0;                 /* collapsed by default */
    max-height: 0;              /* collapsed */
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,.3);
    z-index: 999;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links.show {
    max-height: 70vh;
    padding: 1.1rem 0;
  }

  .nav-links li a {
    color: #ede8f5;
    text-decoration: none;
    font-size: 1.05rem;
  }

  /* Remove desktop separators */
  .nav-links li:not(:last-child) a::after { content: none !important; }

}

/* ============== TABLET (801px–1199px) — normal flow, gentle tightening only ============== */
@media screen and (min-width: 740px) and (max-width: 1024px) {
  .hero-section-mobile { display: none; }
  /* No overflow tricks here; keep your existing behavior */
    .angled-header{
    display: none;
  }
  .custom-navbar{
    display: none;
  }
  .navbar-mobile{
    display: block;
  }

  .navbar-mobile{
    position: fixed;
    top: 0;
    height: 70px;
    z-index: 1000;
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: space-evenly;
    background: #000000;
  }

  /* Hide left extra content; keep brand + toggle only */
  .nav-left { display: none; }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: 50%  0;
    gap: 12px;
    padding: 0;
  }
  
  .onepage-wrapper{
    padding-top: 80px;
  }

  /* Brand = logo + text (85%) on one line */
  .brand {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #eea852, #c9a063, #c5bcaf, #bdb9b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    gap: 10px;
    width: 100%;
    justify-content: space-evenly;
    font-family: 'Souvenir', serif;
    white-space: nowrap;          /* no wrap */
    overflow: hidden;             /* prevent breaking */
    text-overflow: ellipsis;      /* safe truncation */
    text-align: left;             /* align left on tablet */
    margin: 0;
  }
  .brand img {
    height: 44px;
    width: auto;
    vertical-align: middle;
    flex-shrink: 0;
    display: inline-block;
  }
  .brand span,
  .brand .text,
  .brand {                       
    font-size: 2rem;              
    line-height: 1;
  }


  .menu-toggle {
  display: none;
}

  /* Toggle on the right (15%) */
  .nav-right {
    flex: 0%  50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
  }
  /* .menu-toggle {
    display: flex;
    width: 28px;
    height: 22px;
  } */
  /* .menu-toggle .bar { height: 3px; } */

  /* Dropdown panel */
  /* .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    background: #111;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0,0,0,.3);
    transition: opacity .25s ease;
  }
  .nav-links.show { display: flex; }

  .nav-links li a {
    font-size: 1.05rem;
  } */
  .nav-links li:not(:last-child) a::after {
    content: none !important;
  }
  /* Optional: show the inline logo variant if you use .img-none */
  .img-none img { display: inline-block; }

}

/* ✅ Fix for text overlapping images on smaller screens */
@media (max-width: 768px) {
  .service-section {
    display: flex;
    flex-direction: column; /* Stack image on top, text below */
    align-items: center;
  }

  .service-section .image {
    width: 100%;
    margin-bottom: 20px; /* space between image and text */
  }

  .service-section .content {
    width: 100%;
    text-align: center;
    padding: 0 15px;
  }
}


