/* ===== EnviroHome Water Solutions Theme ===== */

/* Brand colors */
:root {
    --aqua: #3EC9D6;
    --mint: #87D6A7;
    --dark: #2A3440;
    --light: #ffffff;
}

/* Global styling */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
}

header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light);
    border-bottom: 2px solid var(--mint);
}

header img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}

.hero {
    padding: 90px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--aqua), var(--mint));
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
}

.section {
    padding: 60px 40px;
}

.section h2 {
    color: var(--aqua);
    font-size: 34px;
    margin-bottom: 20px;
}

/* Card layout */
.card-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    padding: 25px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #ffffff;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--aqua);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    background: var(--aqua);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.btn:hover {
    background: var(--mint);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #f4f4f4;
    border-top: 2px solid var(--mint);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section {
    padding: 60px 40px;
    width: 100%;
}

/* -----------------------------
   Header / Logo sizing (ensure logo scales)
------------------------------ */
.site-logo {
  height: 100px;   /* try 100–120 if you want bigger */
  width: auto;
}

/* Optional active nav styling */
nav a.active {
  color: var(--aqua);
}

/* -----------------------------
   Contact Page Layout
------------------------------ */
.contact-box {
  max-width: 760px;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-box h2 {
  margin-top: 0;
}

/* Soft divider line */
.soft {
  border: 0;
  border-top: 1px solid #e9eef2;
  margin: 24px 0;
}

/* Form */
.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #dfe7ec;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(62, 201, 214, 0.15);
}

.contact-form .btn {
  width: 180px;
}

/* -----------------------------
   Floating WhatsApp Button
   (If you already have this, keep one copy)
------------------------------ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 22px;
  right: 22px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.hp {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}