/* =========================================================
   BEAUTIFUL BODY STUDIO - STYLE.CSS
   CSS i ndarë me seksione për orientim të lehtë
   ========================================================= */


/* =========================================================
   01. VARIABLES & RESET
   ========================================================= */

:root {
  --black: #0a0805;
  --dark-brown: #1c1410;
  --mid-brown: #2d2018;
  --warm-brown: #3d2e1e;
  --gold: #c9a96e;
  --gold-light: #e2c98a;
  --gold-dark: #9e7a42;
  --cream: #f5ede0;
  --cream-light: #faf6f0;
  --white: #ffffff;
  --muted: #8a7060;
  --muted-light: #b09a84;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.18);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.26);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.36);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream-light);
  color: var(--dark-brown);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* =========================================================
   02. TYPOGRAPHY
   ========================================================= */

.serif { font-family: var(--serif); }
.gold { color: var(--gold); }

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}


/* =========================================================
   03. LAYOUT
   ========================================================= */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.gold-divider {
  width: 48px;
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}


/* =========================================================
   04. BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark-brown);
  box-shadow: 0 4px 18px rgba(201,169,110,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.5);
}

.btn-outline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
}


/* =========================================================
   05. HEADER / DESKTOP NAV
   ========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 1.1rem 0;
  background: rgba(10,8,5,0.88);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo,
.logo-image-link {
  display: flex;
  align-items: center;
  line-height: 1;
}

.site-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.75);
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}


/* =========================================================
   06. HAMBURGER
   ========================================================= */

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--cream);
  transition: var(--transition);
}


/* =========================================================
   07. MOBILE NAV OVERLAY
   ========================================================= */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,8,5,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 5rem 2rem 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.mobile-nav .btn {
  width: 100%;
  max-width: 320px;
  min-height: 52px;
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.mobile-nav-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 50%;
  cursor: pointer;
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.45);
  transform: rotate(90deg);
}


/* =========================================================
   08. HERO SECTION
   ========================================================= */

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,8,5,0.88), rgba(10,8,5,0.45), rgba(10,8,5,0.75)),
    url("../images/slider.png") center center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -100px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.14) 0%, transparent 68%);
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.1) 0%, transparent 65%);
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  top: 38%;
  left: 40%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.hero-ring {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-ring svg {
  width: min(480px, 46vw);
  height: auto;
  opacity: 0.18;
}

.hero-line {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.25), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-tag-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-services-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0 1rem;
}

.hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-service-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hero-desc {
  max-width: 440px;
  margin-bottom: 2.4rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,237,224,0.65);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
}

.hero-scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
}


/* =========================================================
   09. SERVICES SECTION
   ========================================================= */

#services {
  background: var(--cream-light);
  padding: 4rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 2rem;
}

.services-header .section-subtitle { display: none; }

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 0 0 1.6rem;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.service-card::before { display: none; }

.service-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #eee;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon-img {
  position: relative;
  z-index: 5;
  width: 72px;
  height: 72px;
  margin: -36px auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(201,169,110,0.55);
}

.service-icon-img img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-title {
  padding: 0 1rem;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.service-desc {
  max-width: 190px;
  margin: 0 auto 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-link {
  justify-content: center;
  color: var(--gold-dark);
}

.services-booking {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}


/* =========================================================
   10. ABOUT SECTION
   ========================================================= */

#about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--dark-brown);
}

#about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.about-photo-wrap {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-title {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
}

.about-title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-body {
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-size: 0.93rem;
  line-height: 1.9;
  color: rgba(245,237,224,0.6);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  background: rgba(201,169,110,0.1);
}

.about-feature-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
}

.about-feature-label {
  padding-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(245,237,224,0.7);
}


/* =========================================================
   11. TEAM SECTION
   ========================================================= */

#team {
  background: var(--cream-light);
  padding: 6rem 0;
}

.team-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  transition: transform .35s ease, box-shadow .35s ease;
}

.team-card:hover {
	
	 transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);

}

.team-avatar,
.team-photo {
  height: 280px;
  overflow: hidden;
  background: none;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img { transform: scale(1.05); }

.team-body { padding: 1.4rem 1.4rem 1.6rem; }

.team-name {
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark-brown);
}

.team-role {
  margin-bottom: 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.team-bio {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
}


/* =========================================================
   12. BENEFITS SECTION
   ========================================================= */

.benefits-strip {
  padding: 2.2rem 0 2.8rem;
  background: var(--cream-light);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.benefits-header {
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-header .eyebrow {
  margin-bottom: 0.4rem;
  color: var(--gold-dark);
}

.benefits-header .section-title {
  color: var(--dark-brown);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1.6rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.benefit-item h3 {
  margin-bottom: 0.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.benefit-item p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}


/* =========================================================
   13. TESTIMONIAL SLIDER
   ========================================================= */

.testimonial-slider {
  position: relative;
  min-height: 310px;
  padding: 2.5rem 0 2.1rem;
  overflow: hidden;
  background: #111;
}

.slider-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,7,5,0.94), rgba(8,7,5,0.72), rgba(8,7,5,0.94)),
    url("../images/slider1.png") center / cover no-repeat;
  opacity: 1;
}

.slider-content {
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 1.1rem;
}

.testimonials-header .section-title {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.testimonial-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 1.2rem 2rem 1.1rem;
  text-align: center;
  background: rgba(10,8,5,0.55);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.testimonial-card::before { display: none; }

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  margin-bottom: 0.7rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.65;
  color: var(--cream);
}

.testimonial-author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.testimonials-dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  cursor: pointer;
}

.testimonials-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--gold);
}

.slider-arrow {
  position: absolute;
  top: 56%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-prev { left: 10%; }
.slider-next { right: 10%; }


/* =========================================================
   14. CTA STRIP
   ========================================================= */

.cta-strip {
  padding: 2rem 0;
  background: linear-gradient(90deg, #ddb56f, #f4deb0, #b77d2b);
}

.cta-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.cta-icon {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61,46,30,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  box-shadow: 0 8px 26px rgba(61,46,30,0.16);
}

.cta-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.cta-copy h2 {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-brown);
}

.cta-copy p {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--dark-brown);
}

.cta-dark-btn {
  background: #0d0d0d;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.cta-dark-btn:hover {
  transform: translateY(-2px);
  background: #191919;
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.footer-modern {
  padding: 2.6rem 0 0.7rem;
  background: #0c0b09;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.footer-grid,
.footer-grid-modern {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid-modern > div {
  padding-left: 2rem;
  border-left: 1px solid rgba(201,169,110,0.14);
}

.footer-grid-modern > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand-tagline {
  max-width: 260px;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245,237,224,0.68);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255,255,255,0.03);
  font-size: 0.7rem;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.footer-col-title {
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(245,237,224,0.72);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: rgba(245,237,224,0.72);
}

.footer-hours-day { color: rgba(245,237,224,0.85); }

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  max-width: 240px;
}

.footer-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}

.footer-copy {
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  color: rgba(245,237,224,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.93rem;
  color: rgba(245,237,224,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold); }


/* =========================================================
   16. PRICES PAGE
   ========================================================= */

.prices-hero {
  min-height: 46svh;
  padding-top: 7rem;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10,8,5,0.95), rgba(10,8,5,0.72)),
    url("../images/slider1.png") center / cover no-repeat;
}

.prices-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}

.prices-hero p {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(245,237,224,0.7);
}

.prices-section {
  padding: 5rem 0;
  background: var(--cream-light);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.price-card h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark-brown);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  font-size: 0.9rem;
}

.price-row:last-child { border-bottom: 0; }

.price-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
  color: var(--gold-dark);
}


/* =========================================================
   17. ANIMATIONS
   ========================================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.animate { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }


/* =========================================================
   18. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
  .benefits-row { grid-template-columns: repeat(2, 1fr); }

  .footer-grid,
  .footer-grid-modern { grid-template-columns: 1fr 1fr; }

  .footer-grid-modern > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .price-grid { grid-template-columns: 1fr 1fr; }
  .slider-prev { left: 1.2rem; }
  .slider-next { right: 1.2rem; }
}


/* =========================================================
   FINAL SAFE FIX - HAMBURGER + INDEX MOBILE + PREISE
   Vendose kete ne fund te CSS. Nuk prish index.
========================================================= */

@media (max-width: 1100px) {
  .nav-links {
    display: none !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    margin-left: auto;
  }

  .nav-right .btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 130;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-logo {
    height: 60px;
  }

  #hero {
    min-height: 92svh;
    align-items: flex-start;
    padding-top: 70px;
    background:
      linear-gradient(
        180deg,
        rgba(5,4,3,0.25) 0%,
        rgba(5,4,3,0.35) 30%,
        rgba(5,4,3,0.72) 70%,
        rgba(5,4,3,0.92) 100%
      ),
      url("../images/slider.png") 64% top / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 4.5rem;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 1.05;
  }

  .hero-desc {
    max-width: 310px;
    font-size: 1rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-ring {
    right: -22%;
    top: 52%;
  }

  .hero-ring svg {
    width: 270px;
  }

  #services {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card {
    display: grid;
    grid-template-columns: 38% 62%;
    grid-template-rows: auto auto auto;
    min-height: 170px;
    padding: 0;
    border-radius: 0;
    text-align: left;
  }

  .service-image {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 100%;
    height: 170px;
  }

  .service-icon-img {
    position: absolute;
    left: calc(38% - 28px);
    top: 50%;
    width: 56px;
    height: 56px;
    margin: 0;
    transform: translateY(-50%);
  }

  .service-icon-img img {
    width: 28px;
    height: 28px;
  }

  .service-title {
    grid-column: 2;
    grid-row: 1;
    margin: 2rem 1rem 0.4rem 3rem;
    padding: 0;
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .service-desc {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    margin: 0 1rem 0.6rem 3rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .service-link {
    grid-column: 2;
    grid-row: 3;
    margin: 0 1rem 1rem 3rem;
    justify-content: flex-start;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo-wrap,
  .about-photo {
    min-height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-photo {
    height: 240px;
  }

  .cta-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    text-align: center;
  }

  .cta-icon {
    width: 86px;
    height: 86px;
  }

  .footer-grid,
  .footer-grid-modern {
    grid-template-columns: 1fr;
  }

  .footer-grid-modern > div {
    padding-left: 0;
    padding-top: 1.4rem;
    border-left: 0;
    border-top: 1px solid rgba(201,169,110,0.12);
  }

  .footer-grid-modern > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-gallery {
    grid-template-columns: repeat(4, 64px);
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .benefits-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    max-width: calc(100% - 4.6rem);
    padding: 1rem 1.2rem;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 58px;
    justify-content: center;
  }
}

/* PREISE ONLY */
.prices-hero {
  min-height: 38svh;
  padding: 9rem 0 4rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.prices-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prices-hero h1,
.prices-hero p {
  text-align: center;
}

.prices-hero p {
  max-width: 620px;
}

.nail-price-section,
.simple-price-section {
  background: #faf6ef;
  padding: 5rem 0;
}

.nail-simple-header,
.simple-price-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nail-simple-header h2,
.simple-price-header h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #3a2418;
}

.nail-prices-wide,
.simple-price-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nail-table-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(117,75,50,0.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(61,35,22,0.08);
}

.nail-table-title {
  background: linear-gradient(135deg, #e2c98a, #c9a96e, #9e7a42);
  color: #111;
  padding: 1rem 1.5rem;
}

.nail-table-title h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nail-table-head,
.nail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 100px;
  align-items: center;
  gap: 1rem;
}

.nail-table-head {
  padding: 0.9rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6a55;
}

.nail-row {
  padding: 0.85rem 1.4rem;
  border-top: 1px solid rgba(117,75,50,0.12);
  font-size: 0.95rem;
}

.nail-table-head span:nth-child(2),
.nail-row span:nth-child(2) {
  text-align: center;
}

.nail-table-head span:nth-child(3),
.nail-row strong {
  text-align: right;
}

.nail-row strong {
  font-size: 1.1rem;
  color: #2a1710;
}

.nail-row small {
  display: block;
  margin-top: 0.15rem;
  color: #7d6c60;
  font-size: 0.78rem;
}

.nail-row.simple {
  grid-template-columns: minmax(0, 1fr) 100px;
}

.bodyforming-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.4rem;
}

.bodyforming-mini-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
}

.mini-card-head {
  background: linear-gradient(135deg, #e2c98a, #c9a96e, #9e7a42);
  padding: 0.8rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #111;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
}

.mini-row strong {
  color: #2a1710;
}

@media (max-width: 768px) {
  .prices-hero {
    min-height: auto;
    padding: 8rem 0 3rem;
    text-align: center;
  }

  .prices-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .prices-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .nail-price-section,
  .simple-price-section {
    padding: 3rem 0;
  }

  .nail-simple-header h2,
  .simple-price-header h2 {
    font-size: 2.7rem;
  }

  .nail-table-title {
    padding: 0.9rem 1rem;
  }

  .nail-table-title h3 {
    font-size: 1.25rem;
  }

  .nail-table-head,
  .nail-row {
    grid-template-columns: minmax(0, 1fr) 70px 55px;
    gap: 0.45rem;
  }

  .nail-table-head {
    padding: 0.75rem 1rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .nail-row {
    padding: 0.8rem 1rem;
    font-size: 0.78rem;
  }

  .nail-row span:first-child {
    line-height: 1.35;
  }

  .nail-row span:nth-child(2) {
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .nail-row strong {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .nail-table-card {
    border-radius: 16px;
  }

  .bodyforming-cards-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .mini-row {
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 1rem;
  }

  .nail-simple-header h2,
  .simple-price-header h2 {
    font-size: 2.45rem;
  }

  .nail-table-head,
  .nail-row {
    grid-template-columns: minmax(0, 1fr) 66px 52px;
  }
}







/* =========================================================
   GALLERY / MASONRY SECTION
========================================================= */

.gallery-section {
  background: #0c0b09;
  padding: 5rem 0 4rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-title {
  color: var(--cream);
}

.gallery-header p {
  max-width: 520px;
  margin: 1rem auto 0;
  color: rgba(245,237,224,0.58);
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery-masonry {
  max-width: 980px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 1rem;
}








.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(201,169,110,0.18);
  background: #111;
  box-shadow: 0 12px 34px rgba(0,0,0,0.24);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10,8,5,0.02) 0%,
      rgba(10,8,5,0.15) 45%,
      rgba(10,8,5,0.82) 100%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;

  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.92;
}

.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
}

.gallery-item:hover span {
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1000px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 170px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .gallery-section {
    padding: 4rem 0;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 0.7rem;
  }

  .gallery-item {
    border-radius: 14px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item span {
    opacity: 1;
    transform: none;
    font-size: 0.58rem;
  }

  .gallery-item::after {
    opacity: 1;
  }
}



.gallery-item {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  cursor: zoom-in;
}



.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.4);
  background: #111;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}





/* =========================================================
   FOOTER FIX
========================================================= */

.footer-modern {
  background: #0c0b09;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(201,169,110,0.22);
}

.footer-grid-modern {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-grid-modern > div {
  padding-left: 2rem;
  border-left: 1px solid rgba(201,169,110,0.14);
}

.footer-grid-modern > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand-tagline {
  max-width: 280px;
  color: rgba(245,237,224,0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col-title {
  margin-bottom: 1.3rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(245,237,224,0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(245,237,224,0.82);
  font-size: 0.95rem;
}

.footer-hours-day {
  color: rgba(245,237,224,0.9);
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 58px);
  gap: 0.55rem;
}

.footer-gallery img,
.footer-instagram-box {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,0.22);
  background: rgba(255,255,255,0.035);
}

.footer-gallery img {
  object-fit: cover;
}

.footer-instagram-box {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(201,169,110,0.22);
  background: rgba(255,255,255,0.03);

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

  transition: all 0.3s ease;
}

.footer-instagram-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.footer-copy,
.footer-legal a {
  font-size: 0.95rem;
  color: rgba(245,237,224,0.38);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid-modern > div {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: 0;
    border-top: 1px solid rgba(201,169,110,0.12);
  }

  .footer-grid-modern > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-gallery {
    grid-template-columns: repeat(4, 58px);
  }

  .footer-bottom {
    flex-direction: column;
  }
}




.footer-phone-link {
  color: rgba(245,237,224,0.82);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone-link:hover {
  color: var(--gold);
}







/* =========================================================
   LEGAL CARD PAGES
========================================================= */

.legal-card-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201,169,110,0.12), transparent 34%),
    #f6f1ea;
  color: #241812;
}

.legal-card-wrap {
  min-height: 100vh;
  padding: 5rem 1.2rem;

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

.legal-card {
  width: 100%;
  max-width: 860px;

  padding: 4rem;

  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 26px;

  box-shadow: 0 28px 80px rgba(61,35,22,0.12);
}

.legal-eyebrow {
  display: block;
  margin-bottom: 0.9rem;

  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin-bottom: 2rem;

  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 500;
  line-height: 1;

  color: #241812;
}

.legal-info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.1rem;

  padding: 1.5rem 0;

  border-bottom: 1px solid rgba(61,35,22,0.08);
}

.legal-info-item:last-of-type {
  border-bottom: 0;
}

.legal-icon {
  width: 46px;
  height: 46px;

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

  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 50%;

  background: rgba(201,169,110,0.08);
  color: var(--gold-dark);

  font-size: 1.2rem;
  font-weight: 600;
}

.legal-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.legal-info-item h2 {
  margin-bottom: 0.35rem;

  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;

  color: #111;
}

.legal-info-item p {
  color: rgba(36,24,18,0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-info-item a {
  color: rgba(36,24,18,0.72);
  transition: color 0.3s ease;
}

.legal-info-item a:hover {
  color: var(--gold-dark);
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 2rem;
  padding: 0.85rem 1.6rem;

  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #241812;

  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

.legal-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,169,110,0.35);
}

@media (max-width: 640px) {
  .legal-card-wrap {
    padding: 2rem 1rem;
  }

  .legal-card {
    padding: 2rem 1.3rem;
    border-radius: 20px;
  }

  .legal-info-item {
    grid-template-columns: 40px 1fr;
    gap: 0.9rem;
  }

  .legal-icon {
    width: 40px;
    height: 40px;
  }
}




/* =========================================================
   WHATSAPP FLOAT BUTTON
========================================================= */
/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:68px;
  height:68px;
  border-radius:50%;
  z-index:9999;

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

  background:#25D366;
  box-shadow:0 10px 30px rgba(0,0,0,.18);

  transition:0.3s;
  animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.05);
}

.whatsapp-float img{
  width:50px;
  height:50px;
  object-fit:contain;
}

@keyframes whatsappPulse{
  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.5);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}

@media(max-width:768px){

  .whatsapp-float{
    width:60px;
    height:60px;
    right:16px;
    bottom:16px;
  }

  .whatsapp-float img{
    width:50px;
    height:50px;
  }

}


















/* =========================================================
   FAQ SEO SECTION
========================================================= */
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
  background: #faf6ef;
  padding: 6rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(42,27,20,0.65);
  line-height: 1.8;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item:hover {
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 12px 30px rgba(61,35,22,0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;

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

  padding: 1.4rem 1.6rem;

  font-size: 1rem;
  font-weight: 500;
  color: #241812;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.6rem 1.5rem;
  margin: 0;

  color: rgba(36,24,18,0.72);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {

  .faq-section {
    padding: 4rem 0;
  }

  .faq-item summary {
    padding: 1.2rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .faq-item p {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.9rem;
  }

}












.location-section {
  background: #faf6ef;
  padding: 6rem 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.location-info p {
  max-width: 420px;
  margin: 1rem 0;
  color: var(--muted);
}

.location-address {
  margin: 1.5rem 0 2rem;
  padding: 1.2rem;
  border-left: 3px solid var(--gold);
  background: #fff;
  color: var(--dark-brown);
  line-height: 1.8;
}

.location-map {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(201,169,110,0.25);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

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

  .location-map iframe {
    height: 320px;
  }
}



/* =========================================================
   FOOTER BOTTOM MINIMAL
========================================================= */

.footer-bottom-minimal {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: color .3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-copyright {
  color: rgba(245,237,224,0.55);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-address-bottom {
  color: rgba(245,237,224,0.45);
  font-size: 0.9rem;
}

@media (max-width:768px) {

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }

}





@media (max-width: 768px) {

  .footer-grid-modern > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-grid-modern > div:last-child .footer-col-title {
    width: 100%;
    text-align: center;
  }

  .footer-grid-modern > div:last-child .footer-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .footer-instagram-box {
    margin: 0 auto;
  }

}










