* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1f2937;
  line-height: 1.65;
  background: #ffffff;
}


/* HEADER */
header {
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
}



.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

/* HERO */
.hero {
  background: #f8fafc;
  padding: 80px 20px;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 18px;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section.alt {
  background: #f5f7fb;
}

.cards {
  max-width: 1000px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* BUTTONS */
.btn {
  display: block;
  margin: 12px auto;
  padding: 14px 26px;
  max-width: 320px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.primary {
  background: #0b5ed7;
  color: #fff;
}

.secondary {
  border: 2px solid #0b5ed7;
  color: #0b5ed7;
}

/* CTA */
.cta {
  background: #0b5ed7;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #f3f4f6;
  padding: 40px 20px;
  text-align: center;
}

.social-icon img {
  width: 28px;
  height: 28px;
  margin-top: 12px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  nav.show {
    display: flex;
  }
}

/* ===== LOGO WITH TEXT ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 26px;
  font-weight: 700;
}

.logo img {
  width: 42px;
  height: auto;
}
/* CONTACT FORM */
.contact-form {
  max-width: 520px;
  margin: 30px auto;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #111827;
  letter-spacing: 0.2px;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}
.card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
}


















