/* Global Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f9f9f9;
  line-height: 1.2;
}

/* Header (Hidden on Mobile) */
header {
  display: none;
}

/* Navigation */
nav {
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #444;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

nav ul li:hover {
  background: #333;
}

nav ul li ul {
  display: block;
  position: absolute;
  background: #444;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

nav ul li ul li {
  width: 100%;
}

nav ul li ul li a {
  padding: 0.8rem 1rem;
  color: #fff;
  background: #444;
}

nav ul li ul li a:hover {
  background: #333;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  z-index: 2000;
}

.hamburger div {
  width: 30px;
  height: 4px;
  background-color: #ffcc00; /* bright yellow for attention */
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #111;
    width: 100%;
    position: absolute;
    top: 3.5rem;
    left: 0;
    z-index: 999;
    padding: 1rem 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  nav ul li a {
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.1rem;
  }

  nav ul li:hover {
    background-color: #222;
  }
}

/* Hero Section */
.hero {
  background: #eee;
  padding: 2rem 1rem;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
}

/* Section */
.section {
  padding: 2rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.section ul {
  padding: 0;
  list-style: none;
}

.section ul li {
  padding: 0.5rem 0;
}

/* Buttons */
.button {
  display: inline-block;
  background: #444;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #222;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* === Mobile Overflow Fixes === */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, .section, .container, header, footer {
  max-width: 100%;
  width: 100%;
  display: block;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}


.email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.email-link::after {
  content: " (Send Email)";
  color: var(--accent-color);
  font-weight: normal;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.email-link:hover::after {
  opacity: 1;
}


.call-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.call-link::after {
  content: " (Call)";
  color: var(--accent-color);
  font-weight: normal;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.call-link:hover::after {
  opacity: 1;
}
