/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #f39c12;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Base Header Styles */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(34, 34, 34, 0.8);
  backdrop-filter: blur(12px);
  color: white;
  border-radius: 16px;
  margin-bottom: 10px;
  position: relative;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
}

/* Nav */
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav ul li a {
  color: white;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

/* Hero */
.hero {
  position: relative;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
  padding: 1rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background: rgba(243, 156, 18, 0.85);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.hero-btn:hover {
  background: #e67e22;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.5);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(12px);
    z-index: 10;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  }

  nav.show {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul li a {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 100%;
    max-width: 90%;
  }
}

/* Sections */
section {
  padding: 3rem 0;
}
h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #222;
}

/* Testimonials */
.testimonial-box {
  margin: 1rem auto;
  max-width: 600px;
  border-left: 4px solid #f39c12;
  padding: 1rem 1.5rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

/* Footer Styling */
footer {
  background-color: #222;
  color: #fff;
  padding: 2rem 0;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-contact,
.footer-social {
  flex: 1 1 300px;
}

.footer-contact h3,
.footer-social h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #f39c12;
}

.footer-contact p,
.footer-contact a {
  margin-bottom: 0.5rem;
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: #f39c12;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.2rem;
}

.social-icons a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  color: #aaa;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate {
  animation: fadeIn 1.2s ease both;
}

/* Bottom Nav - Mobile Only */
.bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    background-color: rgba(34, 34, 34, 0.5);
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    text-decoration: none;
  }

  .bottom-nav a i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }

  .bottom-nav a:hover {
    color: #f39c12;
  }

  body {
    padding-bottom: 60px;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  background-color: #1ebe5d;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 60px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Call-to-Action Button */
.btn-free-consultation {
  display: inline-block;
  background: rgba(0, 123, 255, 0.9);
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-free-consultation:hover {
  background: #0056b3;
  box-shadow: 0 8px 28px rgba(0,86,179,0.6);
}

.btn-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
