:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #666666;
  --brand: #0b7dda;
  --brand-ink: #0a68b5;
  --surface: #f6f7f9;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

/* Links */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout container */
.container {
  width: 100%;
  max-width: 1024px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Sticky header */
.site-header {
  background: var(--bg);
  color: #000000;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s linear;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

/* Prevent hero text cut-off */
body {
  padding-top: 100px; /* matches header height */
}

/* Header & footer shared */
.site-header, .site-footer {
  background: var(--bg);
  color: #000000;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Dropdown menu */
.dropdown { position: relative; display: inline-block; }

.dropbtn {
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.dropbtn i {
  margin-right: 6px;
  color: hotpink;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1;
  white-space: normal;
}

.dropdown-content a {
  color: #000000 !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 600;
}

.dropdown-content a i {
  margin-right: 8px;
  color: hotpink !important;
}

.dropdown-content a:hover { background-color: var(--surface); }
.dropdown:hover .dropdown-content { display: block; }
.dropdown:hover .dropbtn { background-color: var(--brand-ink); }

/* Brand logo */
.brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.brand i {
  margin-right: 8px;
  color: hotpink;
  font-size: 1.4rem;
}

.brand:hover { color: var(--brand); }

/* Footer nav */
.footer-nav a {
  color: #000000 !important;
  margin-left: 16px;
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a i {
  margin-right: 6px;
  color: hotpink !important;
}

.site-footer {
  background: var(--bg);
  color: #000000;
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Site nav */
.site-nav a { margin-left: 16px; color: #cbd5e1; }
.site-nav a[aria-current="page"] { color: #fff; font-weight: 600; }
.site-nav i { margin-right: 6px; color: var(--brand); }

/* Hero section */
.hero {
  background: var(--surface);
  border-bottom: 1px solid #e5e7eb;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 48px 0; /* increased spacing for balance */
}
.hero h1 { margin: 0 0 16px; font-size: 2rem; }
.hero p { color: var(--muted); font-size: 1.1rem; }
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 24px;
}

/* Card styling */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card h2 i {
  color: var(--brand);
  margin-right: 8px;
}

/* Card grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-ink); }
.btn-secondary {
  background: #fff;
  border-color: #d1d5db;
}

/* Contact form */
.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list i {
  margin-right: 8px;
}
.contact-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.contact-list a {
  color: var(--brand);
  font-weight: 600;
}
.contact-list a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .features, .card-grid { grid-template-columns: 1fr; }
  .site-nav a { margin-left: 12px; }
}

/* Global text color */
body, p, h1, h2, h3, h4, h5, h6, a, li, label, input, textarea, button, small {
  color: #000000 !important;
}

/* Global icon color */
i, .fa, .fas, .fa-solid, .fa-brands {
  color: hotpink !important;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1rem;
}

.whatsapp-button i {
  margin-right: 8px;
}

html {
  scroll-behavior: smooth;
}