/* =========================
   V&C Services and Tax
   Styles (Premium / Formal)
   ========================= */

/* ---- CSS Reset (light) ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #F3F3F3;
  background: #0B0B0B;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.15; }

:root{
  --gold:#C9A227;
  --bg:#0B0B0B;
  --bg2:#141414;
  --text:#F3F3F3;
  --muted:#B9B9B9;
  --line: rgba(201,162,39,.20);
  --shadow: 0 10px 30px rgba(0,0,0,.45);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1120px;
}

/* ---- Utilities ---- */
.container{
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.center{ text-align: center; }

.section{
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  letter-spacing: .2px;
}

.section__subtitle{
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}

.section__text{
  color: var(--muted);
  margin-top: .65rem;
  max-width: 62ch;
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  padding: .75rem 1rem;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* ---- Header / Nav ---- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,39,.10);
  transition: box-shadow .2s ease;
}
.header.is-elevated{
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.brand__logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,162,39,.18);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 2px;
  opacity: .9;
}

.nav__menu{
  display: flex;
  align-items: center;
  gap: .9rem;
}

.nav__link{
  color: rgba(243,243,243,.86);
  font-weight: 500;
  font-size: .95rem;
  padding: .45rem .55rem;
  border-radius: 10px;
}
.nav__link:hover{
  background: rgba(255,255,255,.04);
}

.nav__cta{
  margin-left: .25rem;
}

/* ---- Language toggle ---- */
.lang{
  display: flex;
  align-items: center;
  border: 1px solid rgba(201,162,39,.18);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.lang__btn{
  border: 0;
  background: transparent;
  color: rgba(243,243,243,.85);
  padding: .35rem .6rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
}
.lang__btn.is-active{
  background: rgba(201,162,39,.18);
  color: #fff;
}

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(201,162,39,.25);
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn--gold{
  background: linear-gradient(180deg, rgba(201,162,39,1), rgba(168,131,29,1));
  color: #0B0B0B;
  border-color: rgba(201,162,39,.55);
}
.btn--gold:hover{ filter: brightness(1.03); }

.btn--ghost{
  background: rgba(255,255,255,.03);
  color: #fff;
}
.btn--ghost:hover{
  background: rgba(255,255,255,.06);
}

/* ---- HERO ---- */
.hero{
  position: relative;
  padding: clamp(2.8rem, 5.5vw, 5.2rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,162,39,.12);
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 20% 10%, rgba(201,162,39,.16), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.75)),
    url("assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.03);
}
.hero__content{
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
}

.hero__title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.0rem, 3.3vw, 3.1rem);
  letter-spacing: .2px;
}
.hero__subtitle{
  color: rgba(243,243,243,.82);
  margin-top: .9rem;
  max-width: 60ch;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.2rem;
}
.hero__badges{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem;
}
.badge{
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.16);
  color: rgba(243,243,243,.88);
}

.hero__card{
  background: rgba(20,20,20,.82);
  border: 1px solid rgba(201,162,39,.18);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.card__title{
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: .75rem;
}
.card__list{
  display: grid;
  gap: .55rem;
  color: rgba(243,243,243,.82);
  font-size: .95rem;
}
.card__list li::before{
  content: "•";
  color: var(--gold);
  margin-right: .55rem;
}
.card__link{
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 800;
}

/* ---- Panels / Layout ---- */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.panel{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,162,39,.14);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.panel--dark{
  background: rgba(20,20,20,.75);
}
.bullets{
  display: grid;
  gap: .6rem;
  margin-top: .9rem;
  color: rgba(243,243,243,.84);
}
.bullets li::before{
  content: "✓";
  color: var(--gold);
  margin-right: .55rem;
}

/* ---- Why cards ---- */
.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}
.card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,162,39,.14);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.card__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.18);
  color: #fff;
  font-weight: 900;
  margin-bottom: .85rem;
}
.card__h{ font-weight: 800; }
.card__p{
  color: rgba(243,243,243,.80);
  margin-top: .55rem;
}

/* ---- Hours ---- */
.hours{
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}
.hours li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(201,162,39,.12);
  border-radius: 14px;
}
.hours span{ color: rgba(243,243,243,.82); }
.hint{
  margin-top: .9rem;
  color: rgba(243,243,243,.78);
}

/* ---- Contact ---- */
.contact{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-top: 1.3rem;
}
.contact__item{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,162,39,.14);
  border-radius: var(--radius-sm);
  padding: 1rem;
  transition: transform .15s ease, background .15s ease;
}
.contact__item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
}
.contact__label{
  display: block;
  color: rgba(243,243,243,.70);
  font-weight: 700;
  font-size: .85rem;
}
.contact__value{
  display: block;
  margin-top: .35rem;
  font-weight: 800;
  color: #fff;
  font-size: .95rem;
}

/* ---- Final CTA ---- */
.final-cta{
  background: rgba(20,20,20,.75);
  border: 1px solid rgba(201,162,39,.18);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  margin-top: 1.4rem;
}
.final-cta__title{
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
}
.final-cta__text{
  color: rgba(243,243,243,.80);
  margin-top: .6rem;
}
.final-cta__actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

/* ======================
   Services Page
   ====================== */
.page-hero{
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
}
.page-hero__title{
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
}
.page-hero__text{
  margin-top: .75rem;
  color: rgba(243,243,243,.80);
  max-width: 70ch;
}

.search{
  margin-top: 1.3rem;
  display: grid;
  gap: .5rem;
  max-width: 560px;
}
.search__label{
  font-weight: 800;
  color: rgba(243,243,243,.88);
  font-size: .95rem;
}
.search__input{
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(201,162,39,.20);
  background: rgba(255,255,255,.03);
  color: #fff;
  outline: none;
}
.search__input:focus{
  border-color: rgba(201,162,39,.55);
  box-shadow: 0 0 0 4px rgba(201,162,39,.10);
}

.service-grid{
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .95rem;
}

.service{
  text-align: left;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: .85rem;
  align-items: center;
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,.16);
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.service:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(201,162,39,.28);
}
.service__icon{
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}
.service__title{
  font-weight: 900;
}
.service__desc{
  color: rgba(243,243,243,.78);
  margin-top: .2rem;
  font-size: .95rem;
}
.service__arrow{
  color: rgba(201,162,39,.95);
  font-weight: 900;
  font-size: 1.2rem;
}

.note{
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,.16);
  background: rgba(20,20,20,.65);
  color: rgba(243,243,243,.85);
}

/* ======================
   Modal
   ====================== */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}
.modal.is-open{ display: block; }

.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(8px);
}

.modal__dialog{
  position: relative;
  width: min(760px, calc(100% - 2rem));
  margin: 6vh auto;
  background: rgba(20,20,20,.96);
  border: 1px solid rgba(201,162,39,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(201,162,39,.18);
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal__header{
  padding: 1.3rem 1.3rem 1rem;
  border-bottom: 1px solid rgba(201,162,39,.14);
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(201,162,39,.14), transparent 55%),
    rgba(0,0,0,.18);
}
.modal__title{
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}
.modal__subtitle{
  margin-top: .55rem;
  color: rgba(243,243,243,.80);
  max-width: 70ch;
}

.modal__content{
  padding: 1.2rem 1.3rem 1.35rem;
}
.modal__section + .modal__section{
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(201,162,39,.12);
}
.modal__h{
  font-weight: 900;
  margin-bottom: .6rem;
}
.modal__list{
  display: grid;
  gap: .55rem;
}
.modal__list li{
  padding: .85rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,162,39,.12);
  color: rgba(243,243,243,.86);
}
.modal__list li strong{ color: #fff; }
.modal__p{
  color: rgba(243,243,243,.80);
}
.modal__actions{
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ======================
   Footer
   ====================== */
.footer{
  padding: 1.4rem 0;
  border-top: 1px solid rgba(201,162,39,.12);
  background: rgba(0,0,0,.25);
}
.footer__inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__small{
  color: rgba(243,243,243,.68);
  max-width: 62ch;
}

/* ======================
   WhatsApp floating button
   ====================== */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: #1DB954;
  color: #081b10;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}
.wa-float__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 1.05rem;
}
.wa-float__text{ font-size: .95rem; }

/* ======================
   Reveal animations
   ====================== */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   Responsive
   ====================== */
@media (max-width: 980px){
  .hero__content{
    grid-template-columns: 1fr;
  }
  .cards{
    grid-template-columns: repeat(2, 1fr);
  }
  .contact{
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px){
  .grid-2{
    grid-template-columns: 1fr;
  }
  .nav__toggle{
    display: inline-grid;
    place-items: center;
  }

  .nav__menu{
    position: absolute;
    right: 1rem;
    top: 70px;
    width: min(340px, calc(100% - 2rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    padding: .85rem;
    border-radius: 16px;
    background: rgba(20,20,20,.98);
    border: 1px solid rgba(201,162,39,.18);
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{ display: flex; }

  .nav__link, .nav__cta{
    width: 100%;
    text-align: left;
  }

  .lang{
    justify-content: space-between;
  }

  .cards{
    grid-template-columns: 1fr;
  }
  .contact{
    grid-template-columns: 1fr;
  }
  .service-grid{
    grid-template-columns: 1fr;
  }

  .wa-float{
    right: 14px;
    bottom: 14px;
    padding: .75rem .9rem;
  }
}
