/* ===============================
   Global Styles
================================= */
:root {
  --primary: #8af3ff;
  --secondary: #f7f0f0;
  --tertiary: #fffbfa;
  --dark: #222;
  --light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--tertiary);
  color: var(--dark);
  line-height: 1.6;
}

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

/* ===============================
   Navbar
================================= */
.header {
  background: #0d1b2a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #8af3ff;
}
.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.2rem;
}
.cart-icon {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff4757;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* ===============================
   Page Header
================================= */
.page-header {
  background: var(--secondary);
  text-align: center;
  padding: 3rem 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
}

.page-header p {
  margin-top: 0.5rem;
  color: #555;
}

/* ===============================
   Contact Page
================================= */
.page-content {
  padding: 3rem 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.contact-form {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  min-height: 120px;
}

.btn {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: var(--dark);
  color: var(--light);
}

.contact-info-section {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary);
}

.chat-btn {
  background: var(--primary);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  background: var(--light);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Map Section */
.map-section {
  margin: 3rem 0;
  text-align: center;
}

.map-placeholder {
  border: 2px dashed var(--primary);
  padding: 2rem;
  border-radius: 10px;
}

/* Hours Section */
.hours-section {
  margin: 3rem 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.hours-item {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===============================
   Footer
================================= */
.footer {
  background: var(--secondary);
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.social-icons i {
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/* ===============================
   Modal
================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: var(--light);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  cursor: pointer;
}
