/* style.css */
:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-light: #555;
  --accent: #0066cc;
  --accent-light: #e6f0ff;
  --surface: #f8f9fa;
  --border: #ddd;
}

[data-theme="dark"] {
  --bg: #0f0f0f;
  --text: #e0e0e0;
  --text-light: #a0a0a0;
  --accent: #00aaff;
  --accent-light: #1a334d;
  --surface: #1a1a1a;
  --border: #333;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }

header {
  background: var(--accent-light);
  padding: 4rem 0 2rem;
  text-align: center;
}

h1 { font-size: clamp(2.8rem, 9vw, 5rem); font-weight: 700; margin-bottom: 1rem; }

.tagline { font-size: 1.4rem; color: var(--text-light); max-width: 50ch; margin: 0 auto 2rem; }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,102,204,0.25); }

.btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: white; }

section { padding: 5rem 0; }

h2 { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: contain;
  max-height: 220px;
}

.theme-toggle {
  position: fixed;
  top: 1.2rem; right: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 100;
}

footer {
  background: var(--surface);
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-light);
}

/* New for contact page */
.contact-hero {
  background: var(--accent-light);
  padding: 6rem 0 4rem;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

form textarea { min-height: 150px; resize: vertical; }

form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

form button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,102,204,0.2); }

.map-embed {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.logo {
  max-width: 220px;          /* Feel free to tweak this number up/down */
  width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto 1rem;
}
.hero-section {
  position: relative;
  background: var(--accent-light); /* fallback color */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto 1rem;
  z-index: 2; /* above image if needed */
}

/* Hero wrapper - controls image size & shape */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 55vh;               /* Adjust this: 50vh–70vh depending on desired height */
  overflow: hidden;
  border-radius: 16px;        /* Optional: soft corners */
  margin-bottom: 3rem;        /* Space before next section */
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Fills space nicely, crops edges if needed */
  object-position: center;
  display: block;
}

/* Darker overlay only behind buttons for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: flex-end;      /* Buttons at bottom of image */
  justify-content: center;
  padding: 2rem 1rem 3rem;
}

/* Button container */
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Ensure buttons look good on the image */
.btn {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,102,204,0.35);
}


.btn-outline:hover {
  background: white;
  color: var(--accent);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-image-wrapper {
    height: 45vh;             /* Shorter on phones */
  }
  
  .hero-overlay {
    padding: 1.5rem 1rem 2.5rem;
    align-items: center;      /* Center buttons vertically on small screens if preferred */
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
}
/* Primary Button – Green to match logo left side */
.btn-primary {
  background: #27AE60;          /* Bright green – adjust to your exact logo green if different */
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #219653;          /* Darker green on hover */
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(39, 174, 96, 0.35);  /* Green-tinted shadow */
}

/* Outline/Secondary Button – Blue to match logo right side */
.btn-outline {
  background: transparent;
  border: 2px solid #0066CC;   /* Blue border */
  color: #0066CC;               /* Blue text */
}

.btn-outline:hover {
  background: #0066CC;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.25);  /* Blue-tinted shadow */
}

/* General button styles (keep rounded, etc.) */
.btn {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
}
/* FAQ Accordion Styles */
details.faq-item {
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

details.faq-item summary {
  padding: 1.2rem 1.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  background: var(--accent-light);
  color: var(--text);
  list-style: none; /* Hide default arrow */
  transition: background 0.2s;
}

details.faq-item summary::-webkit-details-marker { display: none; } /* Chrome/Safari */

details.faq-item[open] summary {
  background: var(--accent);
  color: white;
}

details.faq-item p {
  padding: 0 1.8rem 1.5rem;
  margin: 0;
  line-height: 1.6;
  color: var(--text-light);
}

/* Ensure buttons in hero look good on image */
.hero-buttons .btn-primary {
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);  /* Stronger green shadow on dark overlay */
}

.hero-buttons .btn-outline {
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}
.category-title {
  font-size: 2rem;
  margin: 4rem 0 2rem;
  text-align: center;
  color: var(--accent);
  position: relative;
}

.category-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 0;
}

.price-note {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  font-style: italic;
}
.category-title {
  margin: 3.5rem 0 2rem;
}
@media (max-width: 768px) {
  .category-title { margin: 3rem 0 1.5rem; }
}
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.8rem;
}

.blog-excerpt {
  margin: 1rem 0;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-small {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}
nav {
  text-align: center;
  margin: 1rem 0;
  font-weight: 500;
  padding: 1rem 0;
  background: var(--surface);
}
/* Base nav link styles (already present or add if missing) */
nav a {
  color: var(--accent);
  margin: 0 1.5rem;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 0.4rem 0;
}

/* Hover effect: underline animation + slight lift */
nav a:hover {
  color: var(--accent); /* stays the same color, or use a lighter/darker variant if you prefer */
  transform: translateY(-2px);
}

/* Animated underline (appears on hover) */
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

/* Optional: stronger active state (for the current page) */
nav a.active {
  font-weight: 700;
  color: var(--accent);
}

nav a.active::after {
  width: 100%;
  left: 0;
  background-color: var(--accent);
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
  right: auto;
  left: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      width: 55px;
      height: 55px;
      bottom: 40px;
  right: auto;
  left: 40px;
    }
    .whatsapp-float img {
      width: 40px;
      height: 40px;
    }
  }

