/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   FONT FAMILY
========================= */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* =========================
   LINKS
========================= */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #0ea5e9;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* =========================
   HEADER / NAVBAR
========================= */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 2rem;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0ea5e9;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav-links li a:hover {
  color: #2563eb;
}

/* =========================
   HAMBURGER MENU
========================= */
#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background-color: #0ea5e9;
  transition: all 0.3s ease;
}

#hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   MOBILE NAV FIX (IMPORTANT)
========================= */
@media (max-width: 768px) {
  #hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   HERO SECTION
========================= */
.hero-bright {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: #0ea5e9;
  background-size: cover;
  background-position: center;
}

.hero-bright::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0ea5e9;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #1f2937;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background-color: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
}

/* =========================
   INTRO SECTION
========================= */
.intro-flex {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.intro-text,
.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   SERVICES
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-title {
  color: #0ea5e9;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  color: #475569;
  font-size: 0.95rem;
}

/* =========================
   CTA / GET IN TOUCH (FIXED)
========================= */
.cta {
  margin: 4rem 0;
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: #f3f4f6;
  border-radius: 16px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.cta p {
  margin-bottom: 2rem;
  color: #475569;
}

/* =========================
   CONTACT + MAP
========================= */
.map-section iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 14px;
  margin-top: 2rem;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 2.5rem 1rem;
  text-align: center;
}

footer .socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

footer .socials a {
  color: #0ea5e9;
}

footer .socials a:hover {
  color: #2563eb;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .intro-flex {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}
/* =========================
   CONTACT FORM
========================= */
.contact-form-section {
  background-color: #f3f4f6;
  padding: 3rem 1rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.contact-form-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #0f172a;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.3);
  outline: none;
}

.contact-form button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0ea5e9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* =========================
   CONTACT INFO LIST
========================= */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.contact-info ul li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #334155;
}

.contact-info ul li strong {
  color: #0ea5e9;
}

.contact-info .interactive-link {
  color: #0ea5e9;
  transition: color 0.3s ease;
}

.contact-info .interactive-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* =========================
   MAP
========================= */
.map-section iframe {
  width: 100%;
  max-height: 400px;
  border: none;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 2rem 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    width: 100%;
  }

  .map-section iframe {
    max-height: 300px;
  }
}
/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #f3f4f6;
  padding: 1.5rem;
  border-radius: 10px;
  font-style: italic;
  color: #334155;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  text-align: right;
  color: #0ea5e9;
}
