/* ===========================
   GOLAN GLASS — Custom Styles
   =========================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700&family=Cormorant+Garamond:wght@500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dark:    #8B6914;
  --cream:        #F8F5F0;
  --charcoal:     #1C1C1C;
  --warm-gray:    #6B6B6B;
  --border:       #E5DDD0;
  --glass-blue:   #E8F4F8;
  --white:        #FFFFFF;

  --font-heb:     'Rubik', sans-serif;
  --font-eng:     'Cormorant Garamond', serif;

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.12);

  --radius:       16px;
  --transition:   0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  direction: rtl;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-heb);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heb);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.8vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

.brand-name-eng {
  font-family: var(--font-eng);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }
.section--dark  { background-color: var(--charcoal); color: var(--white); }

/* --- Gold Divider --- */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}

.gold-divider--center { margin-left: auto; margin-right: auto; }

/* --- Section Header (centered) --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-label { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 0; }
.section-header .gold-divider { margin: 20px auto 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heb);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(139,105,20,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4B55C 0%, var(--gold-dark) 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(139,105,20,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(139,105,20,0.35);
}

.btn-outline--white {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline--white:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(139,105,20,0.4);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo img {
  height: 75px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.navbar__whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-family: var(--font-heb);
  direction: ltr;
  box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}

.navbar__phone svg {
  flex-shrink: 0;
}

.navbar__phone:hover {
  background: linear-gradient(135deg, #D4B55C 0%, var(--gold-dark) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139,105,20,0.4);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
}

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

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav__call {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 14px 20px !important;
  text-align: center;
  border-bottom: none !important;
  margin-top: 8px;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 60%, #1a1a1a 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

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

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 150px 0 80px;
  background: var(--charcoal);
  text-align: center;
}

.page-hero h1 { color: var(--white); }

.page-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 1.1rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.service-card__body h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card__body p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.service-card__body .btn {
  width: 100%;
  text-align: center;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.gallery-grid img:hover {
  opacity: 0.88;
  transform: scale(1.01);
}

/* Gallery item overlay */
.gallery-item { position: relative; }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--warm-gray);
}

.filter-tab.active,
.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  left: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition);
}

.lightbox__close:hover { opacity: 1; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-eng);
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* --- Numbers (Stats) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.stat {
  padding: 48px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
  position: relative;
  transition: background 0.3s ease;
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat:hover { background: rgba(201,168,76,0.04); }
.stat:hover::after { opacity: 1; }

.stat:last-child { border-left: none; }

.stat__number {
  font-family: var(--font-eng);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 600;
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-heb);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo img { height: 52px; margin-bottom: 16px; }

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-style: italic;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__legal a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold); }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .stat                { border-bottom: 1px solid var(--border); }
  .footer__grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__cta   { display: none; }
  .navbar__toggle { display: flex; }

  /* Logo centered on mobile */
  .navbar__inner {
    position: relative;
    justify-content: center;
    height: auto;
    min-height: 100px;
    padding: 8px 24px;
  }
  .navbar__logo img {
    height: 90px;
  }
  .navbar__toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-nav {
    top: 100px;
  }

  .section { padding: 60px 0; }
  .page-hero { padding: 120px 0 60px; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer__grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom    { flex-direction: column; gap: 8px; text-align: center; }

  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { text-align: center; width: 100%; }

  /* Mobile centering */
  h1, h2, h3 { text-align: center; }
  .section-label { text-align: center; }
  .gold-divider { margin-left: auto; margin-right: auto; }

  .about-inner { text-align: center; }
  .about-inner .btn { display: block; width: fit-content; margin: 0 auto; }

  .btn-outline,
  .btn-primary { display: block; width: 100%; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }

  .footer__grid { text-align: center; }
  .footer__contact { align-items: center; }
  .footer__links { align-items: center; }
  .footer__legal { justify-content: center; }
}

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

  body { font-size: 17px; line-height: 1.75; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }

  p, li { font-size: 1rem; }

  .hero p,
  .page-hero p  { font-size: 1.05rem; }

  .service-card p,
  .testimonial p,
  .legal-content p,
  .legal-content li { font-size: 1rem; }

  .btn { font-size: 1rem; padding: 14px 24px; }

  .form-group label { font-size: 0.95rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; padding: 12px 14px; }

  .footer__tagline,
  .footer__links a,
  .footer__contact-item { font-size: 0.95rem; }

  .stat__number { font-size: 2.4rem; }
  .stat__label  { font-size: 0.9rem; }
}

/* ===========================
   ANIMATIONS & SCROLL UX
   =========================== */

/* Fade-in base */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Slide from right (RTL) */
.slide-in {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.slide-in.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Counter animation */
.stat__number { transition: all 0.3s ease; }

/* ===========================
   HERO WITH KEN BURNS IMAGE
   =========================== */
.hero {
  position: relative;
}
.hero__image {
  position: absolute;
  inset: -6%;
  background-image: url('../images/hero/hero.jpg');
  background-size: cover;
  background-position: center center;
  animation: kenBurns 22s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, 1%); }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,20,20,0.90) 0%,
    rgba(20,20,20,0.72) 55%,
    rgba(20,20,20,0.40) 100%
  );
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }
.hero__content { position: relative; z-index: 2; }

/* Hero text entrance */
.hero__content .section-label {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
.hero__content h1 {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}
.hero__content p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
}
.hero__buttons {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.8s forwards;
}

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; line-height: 1.6; flex: 1; min-width: 260px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 10px 20px; font-size: 0.9rem; }

/* Cookie checkboxes */
.cookie-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.cookie-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

/* ===========================
   ACCESSIBILITY WIDGET
   =========================== */
.a11y-toggle {
  position: fixed;
  bottom: 96px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  border: none;
  transition: var(--transition);
}
.a11y-toggle:hover { transform: scale(1.1); background: var(--gold-dark); }
.a11y-toggle svg  { width: 26px; height: 26px; fill: white; }

.a11y-panel {
  position: fixed;
  bottom: 160px;
  left: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 12px;
}
.a11y-panel.open { display: flex; }
.a11y-panel h4   { font-size: 0.85rem; color: var(--gold-dark); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }

.a11y-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-heb);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
  width: 100%;
  text-align: right;
}
.a11y-btn:hover   { border-color: var(--gold); color: var(--gold); }
.a11y-btn.active  { background: var(--gold); color: white; border-color: var(--gold); }

/* A11y modes */
body.a11y-large-text    { font-size: 120%; }
body.a11y-underline-links a { text-decoration: underline !important; }
body.a11y-focus-visible *:focus { outline: 3px solid var(--gold) !important; outline-offset: 3px !important; }

/* filter applied to content only — NOT to fixed elements (prevents position:fixed breakage) */
body.a11y-high-contrast :not(.whatsapp-float):not(.a11y-toggle):not(.a11y-panel):not(.cookie-banner):not(.lightbox) {
  filter: contrast(1.5);
}
body.a11y-grayscale :not(.whatsapp-float):not(.a11y-toggle):not(.a11y-panel):not(.cookie-banner):not(.lightbox) {
  filter: grayscale(1);
}

/* ===========================
   SMOOTH SCROLL & HOVER EFFECTS
   =========================== */
html { scroll-behavior: smooth; }

/* Card hover lift */
.card { transition: box-shadow 0.35s ease, transform 0.35s ease; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Gallery hover */
.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-item img {
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.3s ease;
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }

/* Button ripple */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:active::after { opacity: 1; }

/* Section entrance line */
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 8px;
}

/* Testimonial hover */
.testimonial {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Stat counter */
.stat { transition: background 0.3s; }
.stat:hover { background: rgba(201,168,76,0.04); }

/* ===========================
   LUXURY UX EFFECTS
   =========================== */

/* Gold shimmer on hero h1 */
.hero h1 span {
  background: linear-gradient(90deg, var(--gold) 0%, #f0d080 40%, var(--gold) 60%, #c8a030 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3.5s linear infinite;
}
@keyframes goldShimmer {
  to { background-position: 200% center; }
}

/* ============================================
   MOBILE TAP TARGETS — minimum 44×44 (Apple HIG / WCAG 2.5.5)
   Added 2026-05-01 after audit
   ============================================ */

/* Hamburger toggle: was 36×28 — bump to 44×44 */
.navbar__toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Lightbox close (×): was 24×32 — make 48×48 hit area */
.lightbox__close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  top: 16px;
  left: 16px;
}

/* Filter pills (gallery): was 38px height — bump to 44 */
.gf-pill,
.filter-tab {
  min-height: 44px;
  padding: 11px 22px;
}

/* Service tabs (homepage): was 39px height — bump to 44 */
.tab-btn {
  min-height: 44px;
  padding: 12px 22px;
}

/* Cookie banner accept: was 81×36 — bump height */
.cookie-banner__actions .btn {
  min-height: 44px;
  padding: 12px 22px;
  font-size: 0.95rem;
}

/* A11y reset button: was 39px height */
.a11y-btn { min-height: 44px; }

/* Footer links: were 18-22px high — make whole row tap-friendly */
.footer__links a,
.footer__legal a,
.footer__contact-item a {
  display: inline-block;
  padding: 8px 0;
  min-height: 36px;
}

/* Contact info links (phone/whatsapp/email): were 19px high */
.contact-info-item a {
  display: inline-block;
  padding: 6px 0;
  min-height: 32px;
}
