/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
  --primary-blue: #0d6cf9;
  --primary-blue-hover: #0b5ed7;
  --dark-bg: #1a1a1a;
  --darker-bg: #141414;
  --light-bg: #f5f6f8;
  --text-color: #666;
  --text-dark: #222;
  --text-light: #f5f5f5;
  --border-color: #e5e5e5;

  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utils */
.text-blue {
  color: var(--primary-blue);
}

.text-white {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
}

.subtitle {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.subtitle::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-blue);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.divider {
  width: 40px;
  height: 3px;
  background-color: var(--primary-blue);
  margin-bottom: 25px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  color: var(--primary-blue);
}

.read-more i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
     Header & Navbar
     ========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  /* Overlay on hero */
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  gap: 25px;
}

.nav-list a {
  color: #ddd;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
}

/* ==========================================================================
     Hero Section
     ========================================================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('./assets/imgs/1.jpg');
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
  color: #fff;
}

.hero-content .subtitle {
  color: #fff;
}

.hero-title {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-desc {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.emergency-call {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.emergency-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 1px;
}

.phone-link {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link i {
  color: var(--primary-blue);
}

/* Form Card */
.hero-form-card {
  background-color: #fff;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-form-card h3 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background-color: #fcfcfc;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* ==========================================================================
     About Section
     ========================================================================== */
.about {
  padding: 100px 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content p {
  margin-bottom: 20px;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ==========================================================================
     Services Section
     ========================================================================== */
.services {
  background-color: var(--dark-bg);
  padding: 100px 0;
}

.services .section-title {
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 10px;
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ==========================================================================
     Testimonials Section
     ========================================================================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.testimo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.testimo-title-col {
  flex: 1;
}

.testimo-desc-col {
  flex: 1;
  max-width: 400px;
}

.testimo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimo-card {
  background-color: transparent;
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ==========================================================================
     Clients Section
     ========================================================================== */
.clients {
  padding: 60px 0;
  background-color: #edf1f7;
  text-align: center;
}

.clients-title {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.logos-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-box {
  background: #fff;
  padding: 15px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffc107;
  letter-spacing: 2px;
}

/* ==========================================================================
     CTA Section
     ========================================================================== */
.cta {
  display: flex;
}

.cta-img-col {
  flex: 1;
  min-height: 400px;
}

.cta-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-text-col {
  flex: 1;
  background-color: var(--primary-blue);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text-col h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.cta-text-col p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 450px;
}

.cta-phone {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ==========================================================================
     Footer
     ========================================================================== */
.footer {
  background-color: var(--darker-bg);
  color: #aaa;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1rem;
  text-transform: uppercase;
}

.contact-list li {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  background-color: var(--primary-blue);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-blue-hover);
}

/* ==========================================================================
     Responsive / Mobile
     ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-container {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimo-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta {
    flex-direction: column;
  }

  .cta-img-col {
    order: 2;
    min-height: 250px;
  }

  .cta-text-col {
    order: 1;
    padding: 60px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .header {
    background-color: var(--dark-bg);
    padding: 15px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimo-grid {
    grid-template-columns: 1fr;
  }

  .bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
     Custom Additions (Badges & Floating Buttons)
     ========================================================================== */
.bg-blue {
  background-color: var(--primary-blue);
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0 15px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Floating Action Buttons */
.floating-btn-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-whatsapp {
  background-color: #25D366;
}

.float-phone {
  background-color: var(--primary-blue);
}