/* GLOBAL STYLES */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
}
a { text-decoration: none; }
.section-padding { padding: 60px 0; }

/* NAVBAR */
.site-navbar {
  background: #f8f9fa;
  border-bottom: 2px solid #eaeaea;
}
.site-navbar .logo img {
  height: 50px;
}
.site-navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-navbar ul li {
  position: relative;
}
.site-navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-navbar a:hover {
  color: #007bff;
}
.site-navbar .dropdown-toggle {
  cursor: pointer;
}
/* Dropdown Menu */
.nav-links .dropdown {
  position: relative; /* ensure submenu is absolute inside parent */
}

.nav-links .dropdown-menu {
  display: none; /* hide by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  z-index: 999;
  flex-direction: column; /* make it vertical */
  padding: 0;
}

.nav-links .dropdown-menu li {
  width: 100%;
}

.nav-links .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
}

.nav-links .dropdown-menu li a:hover {
  background: #e63946;
  color: #fff;
}

/* Show on hover (desktop) */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

/* HERO */
.hero {
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .btn-primary { background: #e63946; border: none; }

/* ABOUT */
.about img { width: 100%; }

/* SERVICES */
.services h2 { color: #e63946; margin-bottom: 40px; }
.card { border: none; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.card h4 { color: #e63946; margin-top: 15px; }

/* CONTACT */
.contact-form .form-control {
  border-radius: 5px;
  padding: 10px;
}
.contact-form button { background: #e63946; border: none; padding: 12px 30px; }

/* FOOTER */
footer { background: #111; color: #fff; text-align: center; padding: 20px 0; }
footer a { color: #e63946; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}


/* NAVBAR */
.site-navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-navbar .logo img {
  height: 50px;
}
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-links ul li {
  position: relative;
}
.nav-links ul li a {
  color: #333;
  padding: 10px 15px;
  font-weight: 500;
  display: block;
}
.nav-links ul li a:hover {
  color: #e63946;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  z-index: 999;
}
.dropdown-menu li a {
  padding: 10px 15px;
  white-space: nowrap;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* BURGER MENU (MOBILE) */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.burger-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .burger-menu { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid #ddd;
  }
  .nav-links.active { display: block; }
  .nav-links ul {
    flex-direction: column;
    text-align: center;
  }
  .nav-links ul li a {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
  }
}
