/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===================== HEADER ===================== */
.main-header {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu > div {
  position: relative;
}

.nav-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #ffcc00;
}

/* Dropdown Menu */
.dropdown span {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #000;
}

.dropdown-content a:hover {
  background: #f4f4f4;
  color: #ffcc00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.btn-filled {
  background: #ffcc00;
  color: #000;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-filled:hover {
  background: #d99a00;
  transform: translateY(-2px);
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  background: #f8f8f8;
  padding: 50px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left: Address (No Box) */
.contact-info h2 {
  margin-bottom: 15px;
  color: #333;
}

.contact-info p {
  margin-bottom: 12px;
  color: #555;
  font-size: 16px;
}

.contact-info i {
  color: #ffcc00;
  margin-right: 8px;
}

/* Map Styling */
.map-container {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Right: Contact Form (With Box) */
.contact-form-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.btn-contact {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ffcc00;
  color: #000;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #e6b800;
}

/* ===================== FOOTER ===================== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-logo p {
  line-height: 1.5;
  color: #ccc;
}

.footer-contact p {
  color: #ccc;
  margin: 8px 0;
}

.footer-contact i {
  color: #ffcc00;
  margin-right: 8px;
}

/* Quick Links */
.footer-links h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 20px;
}

.footer-links ul li {
  margin: 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  /* Footer quick links mobile: 1 column */
  .footer-links ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none; /* Desktop pe hide */
  }
}
