@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  background: hsl(180, 2%, 22%);
  color: #fff;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background */
.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  object-position: right top;
  display: block;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
    hsla(180, 2%, 22%, 0.9),
    hsla(180, 2%, 22%, 0.8),
    hsla(180, 2%, 37%, 0.7));
}

/* Floating decorative elements */
.float-orb {
  position: absolute;
  border-radius: 50%;
  background: hsla(43, 89%, 66%, 0.05);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.float-orb-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  filter: blur(40px);
}

.float-orb-2 {
  bottom: 8rem;
  right: 5rem;
  width: 12rem;
  height: 12rem;
  filter: blur(48px);
  animation-delay: 2s;
}

.float-orb-3 {
  top: 50%;
  left: 25%;
  width: 6rem;
  height: 6rem;
  filter: blur(24px);
  animation-delay: 4s;
}

/* Content */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Logo */
.logo {
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out both;
}

.logo img {
  height: 7rem;
  width: auto;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3));
}

/* Heading */
.heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gold-text {
  background: linear-gradient(135deg, hsl(43, 89%, 66%), hsl(39, 65%, 48%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheading */
.subheading {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 36rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Scroll indicator */
.scroll-indicator {
  color: rgba(255, 255, 255, 0.4);
  animation: bounce 2s infinite;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  width: 100%;
  max-width: 56rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease-out both;
  color: #fff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Service card */
.service-card {
  animation: fadeInUp 0.5s ease-out both;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.25s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }

.service-header {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(43, 89%, 66%, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s, background 0.3s;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #fff;
  outline: none;
}

.service-header:hover {
  border-color: hsla(43, 89%, 66%, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.service-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: hsla(43, 89%, 66%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.service-header:hover .service-icon {
  background: hsla(43, 89%, 66%, 0.2);
}

.service-icon svg {
  color: hsl(43, 89%, 66%);
  stroke: hsl(43, 89%, 66%);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.service-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.chevron {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.expanded .chevron {
  transform: rotate(180deg);
}

/* Service body (accordion) */
.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-left: 4rem;
}

.service-body.open {
  max-height: 600px;
  opacity: 1;
  padding-top: 0.5rem;
}

.subgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid hsla(43, 89%, 66%, 0.05);
  margin-bottom: 0.5rem;
  transition: border-color 0.3s;
}

.subgroup:hover {
  border-color: hsla(43, 89%, 66%, 0.15);
}

.subgroup svg {
  color: hsl(43, 89%, 66%);
  stroke: hsl(43, 89%, 66%);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.sub-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.sub-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

/* ===== WHATSAPP FORM ===== */
.form-section {
  width: 100%;
  max-width: 32rem;
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.form-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(43, 89%, 66%, 0.15);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.wa-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  color: #4ade80;
  stroke: #4ade80;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

#whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.input-wrap {
  position: relative;
}

.input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  stroke: rgba(255, 255, 255, 0.3);
}

.input-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid hsla(43, 89%, 66%, 0.1);
  color: #fff;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.input-wrap input:focus {
  border-color: hsla(43, 89%, 66%, 0.4);
}

.input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid hsla(43, 89%, 66%, 0.1);
  color: #fff;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

select:focus {
  border-color: hsla(43, 89%, 66%, 0.4);
}

select option {
  background: hsl(180, 2%, 22%);
  color: #fff;
}

textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid hsla(43, 89%, 66%, 0.1);
  color: #fff;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

textarea:focus {
  border-color: hsla(43, 89%, 66%, 0.4);
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #16a34a;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #22c55e;
}

.submit-btn svg {
  stroke: #fff;
}

/* Contact */
.contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 1.2s both;
}

.contact:hover {
  color: hsl(43, 89%, 66%);
}

.contact svg {
  stroke: currentColor;
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  padding-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out 1.5s both;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive */
@media (min-width: 640px) {
  .logo img {
    height: 10rem;
  }

  .heading {
    font-size: 3rem;
  }

  .subheading {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .heading {
    font-size: 3.75rem;
  }
}

@media (max-width: 640px) {
  .service-body {
    margin-left: 0;
  }

  .service-desc {
    display: none;
  }
}
