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

:root {
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #f59e0b;
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #f6ebc0;
  --gray-50: #f9fafb;
  --gray-100: #dddddd;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(245,158,11,0.1);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 640px) { .navbar-inner { height: 80px; padding: 0 1.5rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.logo-img img {
  height: 42px;
}
.logo-img-secondary img {
  height: 42px;
}
.logo-divider {
  display: block;
  flex: 0 0 1px;
  width: 1px;
  height: 34px;
  background: var(--gray-300);
  margin: 0 2px 0 2px;
}
@media (min-width: 640px) { .logo-icon { width: 40px; height: 40px; } }
@media (min-width: 640px) { .logo-divider { height: 40px; } }
.logo-icon svg { width: 20px; height: 20px; color: white; }
@media (min-width: 640px) { .logo-icon svg { width: 24px; height: 24px; } }
.logo-text {
  font-size: 1.125rem; font-weight: 700; letter-spacing: -0.025em;
  color: var(--gray-900); transition: color 0.3s;
}
@media (min-width: 640px) { .logo-text { font-size: 1.25rem; } }
.logo-text span { color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 6px; transition: all 0.3s;
  color: var(--gray-700);
}
@media (min-width: 1024px) { .nav-link { padding: 0.5rem 1rem; } }
.nav-link:hover { color: var(--gold-dark); background: var(--gold-50); }

.mobile-toggle {
  display: flex; padding: 0.5rem; border-radius: 6px;
  color: var(--gray-700); transition: color 0.3s;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open { display: block; max-height: 400px; opacity: 1; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu-inner {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,158,11,0.1);
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.mobile-nav-link {
  display: block; width: 100%; text-align: left;
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700); border-radius: 6px; transition: all 0.2s;
}
.mobile-nav-link:hover { color: var(--gold-dark); background: var(--gold-50); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.hero-overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 960px; margin: 0 auto; padding: 0 1rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-badge { margin-bottom: 2rem; } }
.hero-badge svg { width: 16px; height: 16px; color: var(--gold-light); }
.hero-badge span { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }
.hero h1 {
  font-size: 1.875rem; font-weight: 700; color: white;
  line-height: 1.15; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; margin-bottom: 2rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .gold { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.8);
  max-width: 640px; margin: 0 auto 2rem; line-height: 1.7;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; background: var(--gold);
  color: white; font-weight: 600; font-size: 1rem;
  border-radius: 6px; transition: all 0.3s;
}
@media (min-width: 640px) { .hero-cta { font-size: 1.125rem; } }
.hero-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(245,158,11,0.25);
}
.hero-cta:active { transform: scale(0.98); }
.hero-cta svg { width: 20px; height: 20px; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll-dot {
  width: 24px; height: 40px; border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.hero-scroll-dot::after {
  content: ''; width: 6px; height: 10px; border-radius: 9999px;
  background: rgba(255,255,255,0.6);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 5rem 0; position: relative; overflow: hidden;
}
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section-bg-white { background: var(--white); }
.section-bg-gray { background: var(--gray-50); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; position: relative; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1rem; position: relative; }
@media (min-width: 640px) { .container-sm { padding: 0 1.5rem; } }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  background: var(--gold-50); border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 1rem;
}
.section-label span {
  color: var(--gold-dark); font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.section-heading {
  font-size: 1.5rem; font-weight: 700; color: var(--gray-900);
}
@media (min-width: 640px) { .section-heading { font-size: 1.875rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 2.25rem; } }
.section-heading .gold { color: var(--gold-dark); }
.text-center { text-align: center; }
.section-header { margin-bottom: 3.5rem; }
@media (min-width: 640px) { .section-header { margin-bottom: 4rem; } }

/* ─── BLURS ─── */
.blur-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}

/* ─── ABOUT ─── */
.about-text {
  font-size: 1.125rem; color: var(--gray-700);
  line-height: 1.8; font-weight: 300;
}
@media (min-width: 640px) { .about-text { font-size: 1.25rem; } }
@media (min-width: 1024px) { .about-text { font-size: 1.5rem; } }
.about-text strong { font-weight: 600; color: var(--gray-900); }
.about-text .gold { color: var(--gold-dark); font-weight: 600; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: white; border-radius: 6px;
  border: 1px solid var(--gray-100);
  padding: 1.5rem; transition: all 0.3s ease;
}
@media (min-width: 640px) { .service-card { padding: 1.75rem; } }
.service-card:hover {
  box-shadow: 0 8px 30px rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 6px;
  background: var(--gold-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.service-icon svg { width: 24px; height: 24px; color: var(--gold-dark); }
.service-card h3 {
  font-size: 1.125rem; font-weight: 600; color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem; color: var(--gray-500); line-height: 1.6;
  display: none;
}


  .service-card {
    border-color: rgba(245,158,11,0.35);
    box-shadow: 0 8px 24px rgba(245,158,11,0.1);
  }

  .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 8px 16px rgba(245,158,11,0.25);
  }

  .service-icon svg {
    color: var(--white);
  }


/* ─── GALLERY ─── */
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .gallery-header { margin-bottom: 3rem; } }
.gallery-arrows { display: flex; gap: 0.5rem; }
.gallery-arrow {
  width: 40px; height: 40px; border-radius: 6px;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all 0.2s;
}
.gallery-arrow:hover { color: var(--gold-dark); border-color: var(--gold-200); }
.gallery-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.gallery-arrow:disabled:hover { color: var(--gray-500); border-color: var(--gray-200); }
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-track {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
@media (min-width: 640px) { .gallery-track { gap: 1.25rem; } }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex-shrink: 0; width: 288px; scroll-snap-align: start;
}
@media (min-width: 640px) { .gallery-slide { width: 320px; } }
@media (min-width: 1024px) { .gallery-slide { width: 384px; } }
.gallery-img-wrap {
  position: relative; aspect-ratio: 1/1;
  border-radius: 6px; overflow: hidden;
}
.gallery-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-img-wrap:hover img { transform: scale(1.05); }
.gallery-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-img-wrap:hover .gallery-img-overlay { opacity: 1; }
.gallery-img-overlay span {
  color: white; font-size: 0.875rem; font-weight: 500;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  max-width: 896px; margin: 0 auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.why-card {
  position: relative; background: white; border-radius: 6px;
  border: 1px solid var(--gray-100);
  padding: 1.5rem; transition: all 0.3s;
  overflow: hidden;
}
@media (min-width: 640px) { .why-card { padding: 2rem; } }
.why-card:hover {
  box-shadow: 0 8px 30px rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
}
.why-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.why-check {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 6px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.why-card:hover .why-check { transform: scale(1.05); }
.why-check svg { width: 20px; height: 20px; color: white; stroke-width: 3; }
.why-card h3 {
  font-size: 1.125rem; font-weight: 600; color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }
.why-card-glow {
  position: absolute; top: 0; right: 0;
  width: 96px; height: 96px; background: rgba(255,251,235,0.5);
  border-radius: 50%; filter: blur(30px);
  transform: translate(50%, -50%);
  opacity: 0; transition: opacity 0.5s;
}
.why-card:hover .why-card-glow { opacity: 1; }

/* ─── MAP / LOCATIONS ─── */
.locations-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
#map {
  width: 100%; height: 320px; border-radius: 6px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
@media (min-width: 640px) { #map { height: 384px; } }
.location-cards { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .location-cards { gap: 1.5rem; } }
.location-card {
  background: var(--gray-50); border-radius: 6px;
  border: 1px solid var(--gray-100);
  padding: 1.5rem; transition: all 0.3s;
}
.location-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border-color: rgba(245,158,11,0.25);
}
.location-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.location-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 6px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.location-icon svg { width: 20px; height: 20px; color: white; }
.location-card h3 {
  font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem;
}
.location-card p {
  font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0.75rem;
}
.location-link {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--gold-dark); transition: color 0.2s;
}
.location-link:hover { color: var(--gold); }
.location-link svg { width: 14px; height: 14px; }

/* ─── CONTACT ─── */
.contact-grid {
  display: flex;
  justify-content: center;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.contact-card {
  background: white; border-radius: 6px;
  border: 1px solid var(--gray-100);
  padding: 1.5rem; text-align: center;
  transition: all 0.3s;
  width: 100%;
  max-width: 550px;
}
.contact-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border-color: rgba(245,158,11,0.25);
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 6px;
  background: var(--gold-50);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.contact-card h3 {
  font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem;
}
.contact-card p, .contact-card a {
  font-size: 0.875rem; color: var(--gray-500); transition: color 0.2s;
}
.contact-card a:hover { color: var(--gold-dark); }

.contact-phone-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.contact-phone-details {
  list-style-position: inside;
  text-align: center;
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  list-style: none;
}


  .why-card,
  .location-card,
  .contact-card {
    border-color: rgba(245,158,11,0.35);
    box-shadow: 0 8px 24px rgba(245,158,11,0.1);
  }

  .why-check,
  .location-icon,
  .contact-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 8px 16px rgba(245,158,11,0.25);
  }

  .contact-icon svg {
    color: var(--white);
  }


/* ─── FOOTER ─── */
.footer { background: var(--gray-100); color: var(--gray-700); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 640px) { .footer-inner { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 4rem 2rem; } }
.footer-top {
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 640px) { .footer-top { flex-direction: row; } }
.footer-logo-section { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo .logo-img img,
.footer-logo .logo-img-secondary img { height: 56px; }
@media (min-width: 640px) { .footer-logo .logo-img img, .footer-logo .logo-img-secondary img { height: 50px; } }
.footer-company-info { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }
.footer-company-info p { margin: 0.25rem 0; font-weight: 500; }
.social-links { display: flex; align-items: center; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all 0.3s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: white; }
.social-link svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 1rem; padding-top: 1rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-credit { font-size: 0.75rem; color: var(--gray-400); }
.footer-credit a { color: var(--gold); font-weight: 500; transition: color 0.3s; }
.footer-credit a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible {
  opacity: 1; transform: translateY(0);
}