
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
:root {
    --bg: #fff;
    --text: #0f172a;
    --muted: #475569;
    --brand: #df291b;
    --surface: #f8fafc;
    --ring: #f59e0b33;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(2, 8, 23, .06)
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Varela Round", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6
}

img {
    max-width: 100%;
    display: block
}

a {
    color: var(--brand);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    width: min(1200px, 90%);
    margin-inline: auto
}

.header {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .75));
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid #dadada;
    z-index: 40
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit
}

.brand__logo {
    width: 100%
}

.brand__name {
    font-weight: 700
}

.nav__links {
    display: flex;
    gap: 10px;
    align-items: center
}

.nav__link {
    padding: 5px 10px;
    border-radius: 10px
}

.nav__link--active {
    background: var(--surface);
    box-shadow: inset 0 0 0 1px #dadada
}

.nav__toggle {
    display: none;
    font-size: 22px;
    background: transparent;
    border: 0;
    cursor: pointer
}

@media (max-width:860px) {
    .nav__toggle {
        display: block
    }

    .nav {
        position: fixed;
        inset: 60px 0 auto 0;
        background: #fff;
        border-bottom: 1px solid #dadada;
        transform: translateY(-120%);
        transition: .25s ease;
        box-shadow: var(--shadow)
    }

    .nav.open {
        transform: translateY(0)
    }

    .nav__links {
        flex-direction: column;
        padding: 14px
    }
}

.section {
    padding: 50px 0
}

.section h2 {
    font-size: clamp(22px, 3.2vw, 34px);
    margin: 0 0 10px
}

.section p.lead {
    color: var(--muted);
    margin: 0 0 22px
}

.grid {
    display: grid;
    gap: 24px
}

/* .grid-4 {
    grid-template-columns: repeat(4, 1fr)
} */

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

@media (max-width:900px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr
    }
}

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #dadada
}

.card__body {
    padding: 10px
}

.card__body h3{
    margin: 5px 0px;
}

.btn {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.btn--outline {
    background: #fff;
    color: var(--brand);
    border: 1px solid var(--brand)
}

.footer {
    margin-top: 40px;
    border-top: 1px solid #dadada;
    background: #fff
}

.footer__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 28px 0
}

.footer__bottom {
    border-top: 1px solid #dadada;
    padding: 16px 0;
    text-align: center;
    color: var(--muted)
}

@media (max-width:900px) {
    .footer__grid {
        grid-template-columns: 1fr
    }
}

.breadcrumbs {
    font-size: 14px;
    color: var(--muted);
    margin: 12px 0
}

/* Slider */
.slider{position:relative;min-height:100svh;width:100%;overflow:hidden;isolation:isolate}
.slider__track{height:100%;display:flex;transform:translateX(0);transition:transform .6s ease}
.slide{position:relative;min-width:100%;height:100svh;display:grid;place-items:center;overflow:hidden}
.slide__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:0}
.slide::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.45),rgba(0,0,0,.35));z-index:1}
.slide__overlay{position:relative;z-index:2;color:#fff;text-align:center;padding:0 4vw;max-width:980px}
.slider__arrow{position:absolute;top:50%;translate:0 -50%;z-index:3;background:rgba(255,255,255,.9);border:0;border-radius:50%;width:44px;height:44px;display:grid;place-items:center;box-shadow:0 10px 30px rgba(2,8,23,.12);cursor:pointer}
.slider__arrow--prev{left:14px}.slider__arrow--next{right:14px}
.slider__dots{position:absolute;left:50%;bottom:18px;translate:-50% 0;display:flex;gap:10px;z-index:3}
.slider__dot{width:14px;height:14px;border-radius:50%;background:rgba(255,255,255,.6);border:0;cursor:pointer}
.slider__dot.is-active{background:#fff;box-shadow:0 0 0 3px #f59e0b33;}

/* === Responsive height controls (override) === */

/* Desktop / default */
.slider { 
  min-height: clamp(420px, 90vh, 920px);
}
.slide { 
  height: clamp(420px, 90vh, 920px);
}

/* Use dynamic viewport units where supported (fixes mobile address bar jump) */
@supports (height: 1dvh) {
  .slider { min-height: clamp(420px, 90dvh, 920px); }
  .slide  { height:     clamp(420px, 90dvh, 920px); }
}

/* Tablet */
@media (max-width: 1024px) {
  .slider { min-height: clamp(360px, 72vh, 800px); }
  .slide  { height:     clamp(360px, 72vh, 800px); }
}

/* Phones */
@media (max-width: 768px) {
  .slider { min-height: clamp(260px, 60vh, 560px); }
  .slide  { height:     clamp(260px, 60vh, 560px); }

  /* Tighter UI on mobile */
  .slide__overlay { padding: 0 5vw; }
  .slider__arrow { width: 40px; height: 40px; }
  .slider__dots  { bottom: 14px; gap: 8px; }
  .slider__dot   { width: 12px; height: 12px; }
  
}

/* Small phones */
@media (max-width: 480px) {
  .slider { min-height: clamp(220px, 50vh, 500px); }
  .slide  { height:     clamp(220px, 50vh, 500px); }

  .slider__arrow { width: 36px; height: 36px; }
  .slider__dots  { bottom: 12px; }
  .slider__dot   { width: 10px; height: 10px; }
}

/* Keep images perfectly covering */
.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* Base (desktop/tablet) */
.slide__overlay p{
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  max-width: 50ch;           /* comfortable line length */
  margin: 10px auto 10px;
  opacity: .95;
  text-wrap: pretty;          /* nicer breaks (safe fallback) */
  hyphens: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,.35); /* improve contrast over image */
}

/* Tablet and down */
@media (max-width: 992px){
  .slide__overlay{ padding: 0 6vw; }
  .slide__overlay p{
    font-size: clamp(14px, 2.2vw, 17px);
    max-width: 46ch;
    line-height: 1.55;
  }
}

/* Mobile */
@media (max-width: 640px){
  /* if you used a smaller slide height earlier, keep that; this is just text */
  .slide__overlay{ padding: 0 7vw; }
  .slide__overlay p{
    font-size: clamp(13px, 3.8vw, 16px);
    max-width: 38ch;          /* shorter lines = easier reading */
    line-height: 1.5;
    margin-top: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
  }
}

/* Optional: clamp long paragraphs on very small phones */
@media (max-width: 420px){
  .slide__overlay p{
    display: -webkit-box;
    -webkit-line-clamp: 4;    /* show up to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}


.slide__overlay-inner{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, #000 40%, transparent);
  backdrop-filter: blur(2px);
}
@media (max-width: 640px){
  .slide__overlay-inner{ padding: 8px 12px; border-radius: 10px; }
}

@media (max-width: 480px){
  .slider__dots{gap:12px}
  .slider__dot{width:16px;height:16px}
}

@media (max-width: 480px){
  .slide__overlay{padding:0 5vw}
  .slide__overlay h1{font-size:clamp(22px,6.5vw,30px);line-height:1.15;margin-bottom:.5rem}
  .slide__overlay p{font-size:clamp(14px,3.6vw,16px);line-height:1.55;max-width:72ch;margin-inline:auto}
  .cta .btn{padding:.8rem 1.1rem;font-size:.95rem}
}



.btn{display:inline-block;background:#b45309;color:#fff;padding:5px;border-radius:5px;text-decoration:none}
.btn_enquiry{display:inline-block;background:#b45309;color:#fff;padding:5px 10px;border-radius:5px;text-decoration:none}
.btn_products{display:inline-block;background:#b45309;color:#fff;padding:10px 15px;border-radius:5px;text-decoration:none}
.btn_contact{display:inline-block;background:#b45309;color:#fff;padding:10px 15px;border-radius:5px;text-decoration:none}
.btn--outline{background:#fff;color:#b45309;border:1px solid #b45309}
.whatsapp {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.whatsapp svg {
    width: 18px;
    height: 18px;
}
.hero-page {
    background: var(--surface);
    padding: 32px 0;
    border-bottom: 1px solid #dadada
}

.products__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 24px
}

.product__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px
}

.price {
    font-weight: 600;
    font-size: 14px;
}

.gallery {
    columns: 4 250px;
    column-gap: 14px
}

.gallery img {
    margin: 0 0 14px;
    border-radius: 12px
}

.form {
    display: grid;
    gap: 12px;
    max-width: 620px
}

.input,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dadada;
    border-radius: 12px;
    font: inherit
}

textarea {
    min-height: 100px;
    resize: none
}

.notice {
    padding: 12px 14px;
    border: 1px dashed #dadada;
    border-radius: 12px;
    background: #fffbeb
}

.small {
    font-size: 14px;
    color: var(--muted)
}

/*----------------*/

.wrap_plans{
    max-width:1200px; margin:0 auto; padding:48px 16px 72px;
  }
  .header_plans{
    text-align:center; margin-bottom:28px;
  }
  .h1_plans{
    margin:0 0 8px; font-size: clamp(24px, 4vw, 36px); color:#000; letter-spacing:.2px;
  }
  .sub{color:#000; font-size:clamp(14px, 2.4vw, 16px)}
  .grid_plans{
    display:grid; gap:24px;
    grid-template-columns: repeat(12, 1fr);
  }
  /* 1col on mobile, 2col tablet, 4col desktop */
  .grid_plans > article{
    grid-column: span 12;
  }
  @media (min-width:700px){
    .grid_plans > article{ grid-column: span 6; }
  }
  @media (min-width:1024px){
    .grid_plans > article{ grid-column: span 6; }
  }

  .card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .card:focus-within, .card:hover{
    transform: translateY(-2px);
    box-shadow:0 16px 36px rgba(0,0,0,.12);
  }
  .thumb{
    /* aspect-ratio: 7/10; */
    width:100%; display:block; object-fit:cover;
  }
  .body{
    padding:18px 18px 20px;
    color:#111827;
  }
  .kicker{
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:600; color:#fff; background:#b45309;
    border:1px solid #b45309; padding:6px 10px; border-radius:999px;
  }
  .title{ margin:.75rem 0 .25rem; font-size: clamp(18px, 2.4vw, 25px) !important; font-weight:700; color:#0f172a;}
  .meta{ color:#6b7280; font-size:14px; margin-bottom:10px;}
  .price{ display:flex; align-items:baseline; gap:8px; margin:10px 0 6px;}
  .price .big{ font-size:clamp(22px, 3.6vw, 28px); font-weight:800; color:#111827;}
  .price .each{ font-size:12px; color:#6b7280;}
  .bullets{ list-style:none; padding:0; margin:12px 0 14px;}
  .bullets li{
    display:flex; gap:8px; align-items:flex-start; color:#0f172a; font-size:14px; line-height:1.45;
    margin:6px 0;
  }
  .bullets li::before{
    content:"✓"; color:#b45309; font-weight:700; line-height:1.2; margin-top:1px;
  }
  details{
    border-top:1px solid #dadada; padding-top:10px; margin-top:10px;
  }
  details summary{
    cursor:pointer; font-weight:600; color:#b45309; outline:none;
  }
  .cta{
    display:flex; gap:10px; margin-top:14px;
  }
  .btn{
    appearance:none; border:0; cursor:pointer; text-decoration:none;
    padding:12px 14px; border-radius:10px; font-weight:700; font-size:14px; line-height:1;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
  }
  .btn:active{ transform: translateY(1px); }
  .btn-primary{ background:#b45309; color:#fff; }
  .btn-primary:hover{ background:#0b1220; }
  .btn-ghost{ background:#f1f5f9; color:#0f172a; }
  .btn-ghost:hover{ background:#e2e8f0; }
  .fine{ font-size:12px; color:#64748b; margin-top:8px;}


  .wrap_error{max-width:720px;padding:3rem;text-align:center; margin:0 auto;}

/* base */
.grid.grid-4, .grid-4 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--gap, 1rem);
}

/* 480–599.98px → 3 columns */
@media (min-width: 480px) and (max-width: 599.98px) {
  .grid.grid-4, .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .grid.grid-4, .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 3800px) {
  .grid.grid-4, .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}