/* Template 1 - Original */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  background: #0077cc;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}

.btn-primary {
  background: #e63946;
}

.btn-light {
  background: #fff;
  color: #333;
}

/* Header */
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    border-top: 1px solid #ddd;
  }

  .nav a {
    margin: 15px 0;
  }

  .nav.active {
    display: flex;
  }
}

.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  color: #0077cc;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hero */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero-desktop.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  max-width: 700px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Services */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* About */
.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 10px;
}
/* Testimonials */
.testimonials {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-stars {
  color: #f4c430;
  font-size: 1.2rem;
}
/* CTA */
.cta {
  background: #0077cc;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form textarea {
  min-height: 120px;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    background:
      linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
      url("images/hero-mobile.png") center/cover no-repeat;
  }
}
