/* =====================
   CONTACTS PAGE LIGHT/SOCIAL
===================== */

/* VARIABLES */
:root {
  --primary-blue: #0a7cff;
  --dark-blue: #064a9f;
  --light-blue: #f2f9ff;
}

/* GLOBAL STYLING */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #ec7e3a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 124, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.logo img {
  height: 60px;
  border-radius: 70%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-links a.active {
  text-decoration: underline;
}

.navbar.scrolled .nav-links a {
  color: white;
}

.navbar.scrolled .nav-links a:hover {
  color: #eaf3ff;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1001;
}

.dropdown-menu li {
  background: white;
  border: 1px solid #ddd;
  margin-bottom: 2px;
}

.dropdown-menu li:first-child {
  border-top: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #eaf3ff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* HERO SECTION */
.hero {
  height: 40vh;
  background: linear-gradient(135deg, #0a7cffcc, #064a9fcc), url("images/shop1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.hero-overlay {
  background: rgba(10,124,255,0.8);
  padding: 25px 35px;
  border-radius: 10px;
}
.hero-overlay h1 {
  margin: 0 0 10px 0;
  font-size: 36px;
}
.hero-overlay p {
  font-size: 16px;
}

/* SOCIAL GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 40px;
  justify-items: center;
}
.social-item {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}
.social-item h3 {
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-size: 16px;
}
.social-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 500;
}
.social-item a:hover {
  color: var(--primary-blue);
}
.social-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

/* FORM + MAP */
.contact-section {
  padding: 50px 30px;
}
.form-map {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
form {
  flex: 1 1 350px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
form h2 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 20px;
}
form input, form textarea {
  padding: 12px 14px;
  border: 1px solid #c4d9ff;
  border-radius: 8px;
}
form button.cta {
  background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}
form button.cta:hover {
  background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
}

/* MAP */
.map {
  flex: 1 1 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
  background: #ec7e3a;
  color: white;
  padding: 40px 30px 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 20px;
}
.footer-content h3 {
  margin-bottom: 10px;
}
.footer-content a {
  color: white;
  text-decoration: none;
}
.footer-content a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {
  .hero {
    height: 30vh;
  }
  .hero-overlay {
    width: 90%;
    padding: 15px;
  }
  .form-map {
    flex-direction: column;
    gap: 20px;
  }
}
