/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fffdf5;
  color: #333;
  line-height: 1.7;
}

/* ===== NAVBAR (Updated to match About Page) ===== */
.navbar {
  background: #F1C338;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .main-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text .tagline {
  font-size: 0.9rem;
  color: #444;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: #222;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ===== HERO ===== */
.header-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #fef9e8, #fff5d4);
}

.header-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.header-section p {
  font-size: 1.2rem;
  color: #555;
}

/* ===== SERVICES ===== */
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 100px 10%;
}

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card i {
  font-size: 3rem;
  color: #F1C338;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card p {
  color: #555;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 100px 20px;
  background: #F1C338;
  color: #222;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 14px 30px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #007bff;
}

/* ===== FOOTER ===== */
.footer-grid {
  background: #F1C338;
  padding: 60px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
}

.footer-column a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #007bff;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #e2b92e;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 20px;
    background: #F1C338;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}
