/* ============================================================
   GLOBAL THEME
============================================================ */
:root {
  --bg-main: #050909;
  --bg-card: #0f1613;
  --accent: #f5c453;
  --accent-soft: rgba(245, 196, 83, 0.4);
  --text-main: #e6e9ea;
  --text-muted: #9ca3af;
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.25);
}

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

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  padding-bottom: 80px;
}

h1, h2, h3 {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--accent);
}

img {
  max-width: 100%;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--accent-soft);
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 70px;
  width: 70px;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.4rem;
}

.main-nav a {
  margin-left: 16px;
  font-weight: 500;
  color: var(--text-main);
}

.main-nav a:hover {
  color: var(--accent);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  width: 92%;
  max-width: 1200px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 380px;
}

.hero-content h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.badge {
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 8px;
}

.hero-actions {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: 0.2s;
}

.btn.primary {
  background: var(--accent);
  color: black;
}

.btn.primary:hover {
  background: #ffdd89;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.outline:hover {
  background: var(--accent);
  color: black;
}

.btn.small {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Owner Card */
.hero-owner-card {
  flex: 1 1 320px;
}

.owner-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-soft);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.owner-photo {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
  width: 92%;
  max-width: 1200px;
  margin: 40px auto;
}

.section-alt {
  background: #0a0f0d;
  padding: 40px 0;
  border-top: 1px solid var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 22px;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

/* ============================================================
   CARDS
============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--accent-soft);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card ul {
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================
   PILLS
============================================================ */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--accent-soft);
  border-radius: 20px;
  font-size: 0.85rem;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-soft);
  padding: 18px;
  border-radius: 14px;
  font-style: italic;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: none;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--accent-soft);
  color: var(--text-muted);
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 16px;
  background: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
}

/* ============================================================
   RESPONSIVE FIXES
============================================================ */
@media (max-width: 768px) {
  .main-nav {
    margin-top: 12px;
    width: 100%;
  }

  .main-nav a {
    margin-left: 10px;
    font-size: 0.85rem;
  }

  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .brand-logo {
    height: 60px;
    width: 60px;
  }
}
