/* Yellow theme variables */
:root {
  --yellow: #ffd54a;
  --yellow-dark: #f7c948;
  --accent: #ffb400;
  --bg: #fffdf7;
  --muted: #6b6b6b;
  --text: #222;
  --container: 1100px;
  --radius: 12px;
  --shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
  --glass: rgba(255, 255, 255, 0.6);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg);
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}
.container {
  max-width: var(--container);
  padding: 2rem;
  margin: 0 auto;
}
.headercontainer {
  /* max-width: var(--container); */
  padding: 0.7rem;
  margin: 0 auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(213, 211, 211, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 60px 30px rgba(255, 255, 255, 3);
  position: relative;
  overflow: hidden;
  /* background: yellow; */
  color: blanchedalmond;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}
.logo {
  font-weight: 700;
  color: #222;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.6rem 0.3rem;
  margin-right: 0.75rem;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: var(--yellow-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.btn-primary {
  background: #222;
  color: #fff;
}
.btn-outline {
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  color: var(--text);
}
.btn-call {
  background: rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0.75rem;
}
.btn-wa {
  background: #25d366;
  color: white;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.3rem;
  color: #222;
}

/* Hero */
.hero {
  position: relative;
  color: #111;
  overflow: hidden;
  padding: 2rem 0 4rem;
}
.hero .overlay {
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(
    160deg,
    rgba(255, 245, 235, 0.6),
    rgba(255, 241, 214, 0.45)
  );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 1.5rem;
  align-items: center;
}
.hero-content h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}
.hero-content p {
  color: var(--muted);
  font-size: 1rem;
}
.tagline {
  font-weight: 600;
  margin: 0.3rem 0 1rem;
  color: #2a2a2a;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* About */
.about {
  padding: 3rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
}
.about-left h3 {
  margin-top: 0;
}
.contact-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Services */
.services {
  padding: 3rem 0;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 240, 1),
    rgba(255, 250, 240, 0.9)
  );
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.service-card h3 {
  margin: 0 0 0.5rem;
}

/* Testimonials */
.testimonials {
  padding: 2.5rem 0;
}
.testimonial-slider {
  position: relative;
  min-height: 140px;
}
.testimonial {
  display: none;
  padding: 1.2rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.testimonial.active {
  display: block;
}
.quote {
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.meta {
  color: var(--muted);
  margin: 0;
}

/* Contact */
.contact {
  padding: 2.5rem 1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
}
.card {
  background: linear-gradient(180deg, #fff, #fff);
  border-radius: 8px;
  padding: 0.7rem;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow);
}
.contact-link {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
}
.contact-form {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  margin-top: 0.6rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(16, 24, 40, 0.06);
  margin-top: 0.3rem;
}
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  align-items: center;
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  background: transparent;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.6rem 1rem;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  }
  .contact-buttons {
    display: none;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu active state */
.nav.open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: #fff;
  padding: 1rem;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: var(--shadow);
}
.nav.open ul {
  flex-direction: column;
  gap: 0.75rem;
}

/* Small touches */
.container h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.section-header p {
  color: var(--muted);
  margin-top: 0;
}

/* Accessibility high-contrast button focus */
.btn:focus {
  outline: 3px solid rgba(255, 200, 50, 0.45);
  outline-offset: 3px;
}

/* Colors & accents */
.btn-primary {
  background: var(--text);
  color: #fff;
}
.btn-wa {
  color: #fff;
  background: #25d366;
}
