:root {
  --black: #050505;
  --dark: #101010;
  --green-dark: #001b0b;
  --green-main: #004d1d;
  --green-bright: #0ca83d;
  --gold: #e5bd61;
  --gold-dark: #b78325;
  --white: #ffffff;
  --light: #f7f7f4;
  --text: #101610;
  --muted: #5d665f;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

a { 
  text-decoration: none; 
}

.container {
  width: 100%;
  max-width: 1800px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

/* HEADER */

.header {
  background: var(--black);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo img { 
  width: 175px; 
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn i { 
  font-size: 18px; 
}

.btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn small {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.85;
}

.btn-outline {
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.btn:hover,
.hero-btn:hover,
.jewelry-btn:hover {
  transform: translateY(-3px);
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at 70% 30%, rgba(229, 189, 97, 0.18), transparent 30%),
    linear-gradient(120deg, #001b0b, #050505 58%);
  color: var(--white);
  padding: 10px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(52px, 6.8vw, 92px);
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero h1 span { 
  color: var(--gold); 
}

.hero-content > p {
  font-size: 19px;
  line-height: 1.55;
  color: #e7eee9;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  transition: 0.25s ease;
  min-width: 185px;
}

.hero-btn i {
  font-size: 22px;
}

.hero-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-btn small {
  font-size: 11px;
  opacity: 0.85;
}

.hero-btn.call {
  background: var(--green-bright);
}

.hero-btn.whatsapp {
  background: #25d366;
}

.hero-btn.shop {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.hero-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero-video img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: var(--green-main);
  font-size: 28px;
  cursor: pointer;
}

.hero-video > span {
  position: absolute;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}

/* REVIEWS ROW */

.reviews-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.google-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

.stars small {
  color: var(--white);
  font-size: 12px;
  margin-left: 6px;
}

.review-score-text p {
  color: #dfe7e1;
  font-size: 14px;
  font-weight: 700;
}

.customer-avatars {
  display: flex;
  margin-left: 10px;
}

.customer-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -9px;
  background: linear-gradient(135deg, #d9a85d, #5e341b);
}

.customer-avatars span:nth-child(2) { background: linear-gradient(135deg, #9fd0ff, #154477); }
.customer-avatars span:nth-child(3) { background: linear-gradient(135deg, #ddd, #59675d); }
.customer-avatars span:nth-child(4) { background: linear-gradient(135deg, #ffc27a, #734020); }
.customer-avatars span:nth-child(5) { background: linear-gradient(135deg, #ead4b2, #222); }

.happy-text {
  color: #e5eee8;
  font-size: 13px;
  font-weight: 700;
}

/* WHY ICONS */

.why-icons {
  margin-top: 64px;
  background: var(--white);
  color: var(--text);
  border-radius: 26px 26px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.12);
}

.why-item {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid #e8e1d4;
}

.why-item:last-child { 
  border-right: none; 
}

.why-item i {
  font-size: 32px;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.why-item p {
  line-height: 1.25;
  font-size: 14px;
  color: var(--muted);
}

.why-item strong {
  color: var(--green-main);
  text-transform: uppercase;
}

/* GENERAL TITLES */

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--green-main);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
}

/* SERVICES */

.services {
  padding: 64px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(183, 131, 37, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: -35px auto 16px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--gold);
  border: 5px solid var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  color: var(--green-main);
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.45;
  padding: 0 22px 28px;
}

/* JEWELRY */

.jewelry {
  padding: 64px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 189, 97, 0.12), transparent 28%),
    linear-gradient(120deg, #050505, #1b160d);
  color: var(--white);
}

.jewelry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.jewelry-content span {
  display: inline-block;
  color: var(--gold);
  border: 1px solid rgba(229, 189, 97, 0.5);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.jewelry-content h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.jewelry-content p {
  color: #e7eee9;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.jewelry-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.jewelry-content li {
  margin-bottom: 12px;
  font-weight: 800;
}

.jewelry-content li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

.jewelry-btn {
  display: inline-flex;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.jewelry-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.jewelry-gallery article {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.jewelry-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.jewelry-gallery h3 {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  text-transform: uppercase;
}

/* HOW IT WORKS */

.how-it-works {
  padding: 64px 0;
  background: var(--light);
}

.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.how-main {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}

.how-main h2 {
  color: var(--green-main);
  font-size: clamp(38px, 5vw, 58px);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.step {
  padding: 26px;
  border-radius: 18px;
  background: var(--light);
  border: 1px solid #e7dfcf;
}

.step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green-main);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.step-icon span {
  position: absolute;
  right: -8px;
  top: -8px;
  background: var(--gold);
  color: #111;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  color: var(--green-main);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.45;
}

.faq-row {
  margin-top: 24px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 50px 45px 1fr;
  align-items: center;
  gap: 74px;
}

.faq-row strong {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  font-size: 24px;
}

.faq-row span {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
}

.faq-row p {
  color: #e5eee8;
}

/* REQUIREMENTS */

.requirements {
  background:
    linear-gradient(rgba(0, 27, 11, 0.9), rgba(0, 27, 11, 0.9)),
    url("assets/service-pawn.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.requirements h3 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold);
}

.requirements ul {
  list-style: none;
  margin-bottom: 30px;
}

.requirements li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.requirements li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

.requirements > i {
  font-size: 84px;
  color: var(--gold);
  margin: 20px 0;
}

.requirements a {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

/* VISIT */

.visit {
  padding: 64px 0;
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.visit-info {
  background: var(--green-main);
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}

.visit-info h2 {
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.visit-info > p {
  color: #e5eee8;
  margin-bottom: 24px;
}

.visit-info ul {
  list-style: none;
}

.visit-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.visit-info li i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  border-radius: 50%;
}

.map-box,
.storefront {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-box img,
.storefront img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.storefront {
  grid-column: 2;
}

/* FOOTER */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.footer p {
  color: #d8e0db;
  font-weight: 700;
}

.footer i {
  color: var(--gold);
  margin-right: 6px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .container {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .jewelry-grid,
  .how-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

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

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

  .services,
  .jewelry,
  .how-it-works,
  .visit {
    padding: 56px 0;
  }

  .storefront {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header {
    position: relative;
  }

  .logo img {
    width: 145px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 10px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero {
    padding: 42px 0 0;
  }

  .hero h1 {
    font-size: 42px;
    line-height: .95;
    letter-spacing: -1.5px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-btn {
    min-width: 0;
    width: 100%;
  }

  .hero-video img {
    height: 240px;
        opacity:.88;

    transition:.35s ease;
  }

  .services,
  .jewelry,
  .how-it-works,
  .visit {
    padding: 44px 0;
  }

  .why-icons {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-right: none;
    border-bottom: 1px solid #e8e1d4;
  }

  .services-grid,
  .jewelry-gallery,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .jewelry-gallery img,
  .map-box img,
  .storefront img {
    height: 230px;
  }

  .how-main,
  .requirements,
  .visit-info {
    padding: 28px;
  }

  .faq-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-row strong {
    margin: auto;
  }
}

.customer-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -15px;
}

.visit {

    background:#01260f;
    color:white;
    padding:0;
}

.visit-wrapper {

    display:grid;
    grid-template-columns: 350px 1fr 450px;
    min-height:320px;
}

.visit-info {

    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.visit-info h2 {

    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.visit-info p {

    margin-bottom:25px;
    color:#d6e0d8;
}

.visit-info ul {

    list-style:none;
}

.visit-info li {

    display:flex;
    gap:14px;
    margin-bottom:18px;
    align-items:flex-start;
}

.visit-info li i {

    color:#e5bd61;
    font-size:20px;
    margin-top:4px;
}

.social-icons {

    display:flex;
    gap:12px;
    margin-top:15px;
}

.social-icons a {

    width:44px;
    height:44px;

    border:2px solid #c89b42;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#c89b42;
}

.visit-map img,
.visit-store img {

    width:100%;
    height:100%;
    object-fit:cover;
}

.visit-bottom {

    display:grid;
    grid-template-columns:repeat(5,1fr);

    border-top:1px solid rgba(255,255,255,.15);

    background:#011d0b;
}

.visit-bottom div {

    padding:18px 15px;

    text-align:center;

    font-size:14px;

    font-weight:600;
}

.visit-bottom i {

    color:#e5bd61;
    margin-right:8px;
}

@media(max-width:1100px){

.visit-wrapper{

grid-template-columns:1fr;
}

.visit-map{

height:350px;
}

.visit-store{

height:350px;
}

.visit-bottom{

grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.visit-bottom{

grid-template-columns:1fr;
}

.visit-info h2{

font-size:36px;
}

}

/* **************************************************** */
/* **************** LANGUAGE SWITCHER ***************** */
/* **************************************************** */

.language-switcher {

    display:flex;
    align-items:center;
    gap:8px;

    padding:4px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(229,189,97,.4);

    border-radius:999px;
}

.flag {

    display:flex;
    align-items:center;
    gap:6px;

    padding:8px 12px;

    border-radius:999px;

    cursor:pointer;

    transition:.25s;

    font-size:14px;
    font-weight:800;

    color:white;
}

.flag:hover {

    background:rgba(255,255,255,.12);
}

.flag.active {

    background:var(--gold);

    color:#111;
}

.flag span {

    font-size:12px;
}

.hero-video{

    position:relative;

    overflow:hidden;

    border-radius:20px;
}

.hero-video img{

    width:100%;
    display:block;
    
}

.hero-video video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.video-label{

    position:absolute;

    bottom:20px;
    left:50%;

    transform:translateX(-50%);

    color:white;

    font-weight:700;

    letter-spacing:1px;
}

/* **************************************************** */
/* ******************* FAQ SECTION ******************** */
/* **************************************************** */

.faq-section {
  padding: 64px 0;
  background: var(--light);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.faq-tab {
  border: 1px solid rgba(183, 131, 37, 0.45);
  background: var(--white);
  color: var(--green-main);
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.faq-tab.active,
.faq-tab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

.faq-panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-panel.active {
  display: grid;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(183, 131, 37, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  border: none;
  background: var(--white);
  color: var(--green-main);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}

.faq-question i {
  color: var(--gold-dark);
  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

@media (max-width: 680px) {
  .faq-panel {
    grid-template-columns: 1fr;
  }

  .faq-tab {
    font-size: 12px;
    padding: 12px 14px;
  }

  .faq-question {
    font-size: 14px;
    padding: 20px;
  }
}

.service-card {
  cursor: pointer;
}

.service-card.active {
  border-color: var(--gold-dark);
  box-shadow: 0 24px 60px rgba(183, 131, 37, 0.22);
  transform: translateY(-6px);
}

.service-details {
  margin-top: 34px;
  background:
    linear-gradient(135deg, rgba(0, 77, 29, 0.96), rgba(0, 27, 11, 0.96));
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.service-detail {
  display: none;
}

.service-detail.active {
  display: block;
  animation: fadeService 0.25s ease;
}

.service-detail h3 {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-detail p {
  color: #e7eee9;
  font-size: 18px;
  line-height: 1.65;
  max-width: 1150px;
}

@keyframes fadeService {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* **************************************************** */
/* **************** WHY CHOOSE US ********************** */
/* **************************************************** */

.why-section{
  position:relative;
  padding:110px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(207,166,73,.12), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(0,70,45,.08), transparent 32%),
    #f8f8f5;
}

.why-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  top:-240px;
  right:-160px;
  border-radius:50%;
  border:1px solid rgba(207,166,73,.18);
}

.why-section::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  bottom:-190px;
  left:-120px;
  border-radius:50%;
  border:1px solid rgba(0,63,41,.12);
}

.why-section .container{
  position:relative;
  z-index:2;
}

.why-section .section-title{
  text-align:center;
  margin-bottom:30px;
}

.why-section .section-title > span{
  display:inline-block;
  margin-bottom:12px;
  color:var(--gold-main, #cda84e);
  font-size:13px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.why-section .section-title h2{
  max-width:900px;
  margin:0 auto;
  color:var(--green-main, #073b2a);
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.05;
  letter-spacing:-.045em;
}

.why-intro{
  max-width:860px;
  margin:0 auto 56px;
  text-align:center;
}

.why-intro h3{
  margin-bottom:18px;
  color:#171717;
  font-size:clamp(24px, 3vw, 38px);
  line-height:1.15;
  letter-spacing:-.025em;
}

.why-intro p{
  margin:0 auto;
  color:#5f625f;
  font-size:17px;
  line-height:1.85;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.why-card{
  position:relative;
  min-height:240px;
  padding:34px 30px;
  overflow:hidden;
  border:1px solid rgba(0,49,31,.08);
  border-radius:26px;
  background:rgba(255,255,255,.84);
  box-shadow:
    0 18px 45px rgba(16,38,29,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.why-card::after{
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  right:-60px;
  bottom:-70px;
  border-radius:50%;
  background:rgba(207,166,73,.08);
  transition:transform .4s ease;
}

.why-card:hover{
  transform:translateY(-9px);
  border-color:rgba(207,166,73,.35);
  box-shadow:
    0 28px 65px rgba(16,38,29,.14),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.why-card:hover::after{
  transform:scale(1.4);
}

.why-card i{
  width:58px;
  height:58px;
  margin-bottom:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:var(--gold-main, #cda84e);
  background:rgba(207,166,73,.12);
  font-size:25px;
  box-shadow:inset 0 0 0 1px rgba(207,166,73,.15);
}

.why-card h3{
  position:relative;
  z-index:2;
  margin-bottom:10px;
  color:var(--green-main, #073b2a);
  font-size:26px;
  line-height:1.1;
  letter-spacing:-.025em;
}

.why-card p{
  position:relative;
  z-index:2;
  max-width:220px;
  color:#666a66;
  font-size:14px;
  line-height:1.55;
}

.why-reviews{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.review-card{
  position:relative;
  padding:30px;
  border-radius:24px;
  background:var(--green-main, #073b2a);
  color:white;
  box-shadow:0 20px 50px rgba(4,45,29,.18);
}

.review-card::before{
  content:"“";
  position:absolute;
  top:6px;
  right:20px;
  color:rgba(255,255,255,.08);
  font-family:Georgia, serif;
  font-size:100px;
  line-height:1;
}

.review-card .stars{
  position:relative;
  z-index:2;
  margin-bottom:16px;
  color:var(--gold-main, #e1b952);
  font-size:20px;
  letter-spacing:3px;
}

.review-card p{
  position:relative;
  z-index:2;
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:15px;
  line-height:1.7;
}

@media (max-width: 980px){
  .why-section{
    padding:85px 0;
  }

  .why-grid,
  .why-reviews{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .why-section{
    padding:70px 0;
  }

  .why-section .section-title{
    margin-bottom:22px;
  }

  .why-intro{
    margin-bottom:38px;
  }

  .why-intro p{
    font-size:15px;
    line-height:1.7;
  }

  .why-grid,
  .why-reviews{
    grid-template-columns:1fr;
  }

  .why-card{
    min-height:auto;
    padding:28px 24px;
  }

  .why-card h3{
    font-size:23px;
  }

  .why-reviews{
    margin-top:46px;
  }
}

/* **************************************************** */
/* *************** EXPANDABLE WHY CARDS **************** */
/* **************************************************** */

.why-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.why-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(0,49,31,.08);
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 45px rgba(16,38,29,.08);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.why-card:hover{
  transform:translateY(-7px);
  border-color:rgba(207,166,73,.35);
  box-shadow:0 26px 60px rgba(16,38,29,.14);
}

.why-card-toggle{
  width:100%;
  min-height:245px;
  padding:32px 28px;
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.why-card-main{
  flex:1;
  min-width:0;
}

.why-card-main > i{
  width:58px;
  height:58px;
  margin-bottom:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:var(--gold-main, #cda84e);
  background:rgba(207,166,73,.12);
  font-size:25px;
  box-shadow:inset 0 0 0 1px rgba(207,166,73,.15);
}

.why-card-main h3{
  margin:0 0 10px;
  color:var(--green-main, #073b2a);
  font-size:26px;
  line-height:1.12;
  letter-spacing:-.025em;
}

.why-card-main p{
  margin:0;
  max-width:240px;
  color:#666a66;
  font-size:14px;
  line-height:1.55;
}

.why-card-plus{
  width:40px;
  min-width:40px;
  height:40px;
  margin-top:3px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green-main, #073b2a);
  background:rgba(7,59,42,.08);
  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}

.why-card-plus i{
  font-size:14px;
}

.expandable-card.active .why-card-plus{
  transform:rotate(45deg);
  color:#fff;
  background:var(--green-main, #073b2a);
}

.why-card-details{
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  border-top:1px solid transparent;
  transition:
    grid-template-rows .45s ease,
    opacity .35s ease,
    border-color .35s ease;
}

.why-card-details-inner{
  overflow:hidden;
  padding:0 28px;
}

.expandable-card.active .why-card-details{
  grid-template-rows:1fr;
  opacity:1;
  border-top-color:rgba(0,49,31,.08);
}

.expandable-card.active .why-card-details-inner{
  padding-top:24px;
  padding-bottom:28px;
}

.why-card-details p{
  margin:0;
  color:#555b57;
  font-size:14px;
  line-height:1.75;
}

.why-card-link{
  display:inline-block;
  margin-top:16px;
  color:var(--green-main, #073b2a);
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}

.why-card-link:hover{
  color:var(--gold-main, #cda84e);
}

/* TARJETA ABIERTA */

.expandable-card.active{
  border-color:rgba(207,166,73,.35);
  box-shadow:0 28px 65px rgba(16,38,29,.14);
}

/* TABLET */

@media(max-width:980px){
  .why-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */

@media(max-width:640px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-card-toggle{
    min-height:auto;
    padding:26px 22px;
  }

  .why-card-main h3{
    font-size:22px;
  }

  .why-card-main p{
    max-width:none;
  }

  .why-card-details-inner{
    padding-left:22px;
    padding-right:22px;
  }

  .expandable-card.active .why-card-details-inner{
    padding-bottom:24px;
  }
}

.why-card-details-inner{
    width:100%;
}

/* Para que el texto se expanda */

.why-card-details p{
    width:100%;
    max-width:none;
}

.why-card-toggle{
    min-height:180px;
    transition:.35s;
}

.expandable-card.active .why-card-toggle{
    min-height:auto;
    padding-bottom:10px;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:130px;
}




.service-detail-link{
    display:inline-block;
    margin-top:20px;
    color:#eee6e6;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.service-detail-link:hover{
    color:#d8a132;   /* Dorado al pasar el mouse */
    transform:translateX(5px);
}

/* ==========================================
   MOBILE HEADER
========================================== */

@media (max-width:680px){

    /* Centrar todo el header */
    .header-inner{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:18px;
    }

    /* Logo centrado */
    .logo{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .logo img{
        width:170px;
        margin:0 auto;
    }

    /* Idioma centrado */
    .language-switcher{
        margin:0 auto;
        justify-content:center;
    }

    /* Botones ocupan todo el ancho */
    .header-actions{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .header-actions .btn{
        width:100%;
    }

    /* Menú centrado */
    .nav{
        width:100%;
        justify-content:center;
        margin:0;
    }

}

.visit-shop-btn{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    margin-top:25px;
    padding:16px 20px;

    width:100%;

    border-radius:14px;

    background:linear-gradient(135deg,#e5bd61,#b78325);

    color:#111;

    font-weight:800;

    transition:.3s ease;
}

.visit-shop-btn i{

    font-size:24px;
}

.visit-shop-btn span{

    display:flex;
    flex-direction:column;
    line-height:1.15;
}

.visit-shop-btn strong{

    font-size:18px;
    text-transform:uppercase;
}

.visit-shop-btn small{

    font-size:12px;
    opacity:.85;
}

.visit-shop-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(229,189,97,.35);
}