/* ===== ROOT VARIABLES ===== */
:root {
  --yellow: #F5C518;
  --yellow-dark: #d4a80e;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f8f8f8;
  --gray-mid: #e8e8e8;
  --gray-text: #555555;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 50px rgba(0,0,0,0.18);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--black);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar .logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 3px;
}

.navbar .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar .brand-name {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 700;
}

.navbar .brand-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--black) !important;
  background: var(--yellow);
}

.navbar .btn-quote {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  transition: var(--transition);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.navbar .btn-quote:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
}

.navbar-toggler {
  border-color: var(--yellow) !important;
}
.navbar-toggler-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(0deg);
}

/* ===== TOP STRIP ===== */
.top-strip {
  background: var(--yellow);
  text-align: center;
  padding: 7px 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
}

.top-strip a { color: var(--black); text-decoration: none; }

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245,197,24,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,197,24,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.hero p.lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-primary-custom {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,197,24,0.4);
  color: var(--black);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
   border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}


.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  animation: floatUp 6s ease-in-out infinite;
}
/* 
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
} */

.hero-card .service-pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin: 4px;
}

.hero-card .service-pill.dark {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray-text);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 100px 0;
  background: var(--gray-light);
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--black);
  transform: rotate(6deg) scale(1.1);
}

.service-card:hover .service-icon i {
  color: var(--yellow) !important;
}

.service-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--black);
}

.service-card p {
  color: var(--gray-text);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  width: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
}

.about-badge .num {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge .txt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-check li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--gray-text);
}

.about-check li i {
  color: var(--yellow);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(245,197,24,0.07) 0%, transparent 60%);
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(245,197,24,0.08);
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h5 {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 50px 0;
  background: var(--gray-light);
}

.gallery-grid .gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,197,24,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  font-size: 2rem;
  color: var(--black);
}

/* ===== PROCESS ===== */
.process-section {
  padding: 0px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--black);
  color: var(--yellow);
  transform: scale(1.1);
}

.process-step h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray-text);
  font-size: 0.85rem;
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: var(--gray-light);
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--black);
}

.contact-info-item p, .contact-info-item a {
  color: var(--gray-text);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-item a:hover { color: var(--yellow-dark); }

.form-control-custom {
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: var(--font-body);
  width: 100%;
  background: var(--gray-light);
  color: var(--black);
  margin-bottom: 14px;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--yellow);
  background: white;
}

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 70px 0 30px;
  color: rgba(255,255,255,0.7);
}

footer .footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  font-weight: 700;
}

footer .footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
}

footer h6 {
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
footer ul li a:hover { color: var(--yellow); padding-left: 4px; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.social-btn:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: var(--yellow); text-decoration: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--black);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 80%, rgba(245,197,24,0.1) 0%, transparent 60%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: white;
  font-weight: 700;
  position: relative;
}

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

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

.breadcrumb-custom a { color: var(--yellow); text-decoration: none; }
.breadcrumb-custom a:hover { text-decoration: underline; }

/* ===== REVIEWS ===== */
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
  transition: var(--transition);
  height: 100%;
}

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

.review-stars { color: var(--yellow); margin-bottom: 12px; }

.review-card p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
}

.reviewer-date {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.4);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--yellow);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(0,0,0,0.65);
  font-size: 1rem;
  margin-bottom: 28px;
}

.btn-dark-custom {
  background: var(--black);
  color: var(--yellow);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-dark-custom:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: var(--yellow);
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--yellow);
  color: var(--black);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  border: none;
  font-size: 1rem;
}

#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOURS TABLE ===== */
.hours-table td { padding: 8px 12px; font-size: 0.9rem; }
.hours-table tr:nth-child(even) { background: var(--gray-light); }
.hours-open { color: #16a34a; font-weight: 600; }

/* ===== PRICE BADGE ===== */
.pricing-note {
  background: var(--yellow);
  color: var(--black);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
  .footer-bottom { text-align: center; justify-content: center; }
  .process-arrow { display: none; }
}
