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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

/* ==============================
   SECTION DIVIDER
============================== */

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sun), var(--sky), var(--leaf), transparent);
  border: none;
  opacity: 0.4;
}

/* ==============================
   BUTTONS
============================== */

.btn {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  line-height: 1;
}

.btn-sun {
  background: var(--sun);
  color: var(--charcoal);
}

.btn-sun:hover {
  background: #e5b500;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254,201,1,0.3);
}

.btn-outline-sun {
  background: transparent;
  border: 2px solid var(--sun);
  color: var(--charcoal);
}

.btn-outline-sun:hover {
  background: var(--sun);
  color: var(--charcoal);
}

.btn-outline-sky {
  background: transparent;
  border: 2px solid var(--sky);
  color: var(--charcoal);
}

.btn-outline-sky:hover {
  background: var(--sky);
  color: var(--white);
}

.btn-outline-leaf {
  background: transparent;
  border: 2px solid var(--leaf);
  color: var(--charcoal);
}

.btn-outline-leaf:hover {
  background: var(--leaf);
  color: var(--white);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.25);
}

.btn-ig {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-ig:hover {
  background: var(--white);
  color: var(--sky);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==============================
   SECTION TITLES
============================== */

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.section-title .highlight-sun { color: var(--sun); }
.section-title .highlight-sky { color: var(--sky); }
.section-title .highlight-leaf { color: var(--leaf); }
.section-title .highlight-mountain { color: var(--mountain); }

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(44,44,44,0.55);
  margin-bottom: 48px;
  font-weight: 300;
}

/* ==============================
   ANIMATIONS
============================== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes modalIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==============================
   SERVICE CAROUSEL
============================== */

.service-carousel {
  margin-top: 16px;
  padding: 32px 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-carousel .sc-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.sc-viewport {
  overflow: hidden;
  width: 100%;
}

.sc-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s ease;
}

.sc-slide {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.sc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sc-icon {
  font-size: 2rem;
  line-height: 1;
}

.sc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
  white-space: nowrap;
}

.sc-detail {
  font-size: 0.8rem;
  color: rgba(44,44,44,0.55);
  font-weight: 300;
  white-space: nowrap;
}

.sc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.sc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44,44,44,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sc-dot.active {
  background: var(--sun);
  transform: scale(1.3);
}

/* ==============================
   CARD BADGE
============================== */

.card-badge {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--sun);
  color: var(--charcoal);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-weight: 700;
}
