/* ===== CONTACT PAGE PREMIUM UI ===== */

body {
  background: linear-gradient(135deg, #eef2f7, #dfe9f3);
}

/* SECTION */
.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-section p {
  color: #6b7280;
  margin-top: 10px;
  font-size: 16px;
}

/* GLASS CONTAINER */
.contact-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD BASE */
.contact-form,
.contact-info {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  width: 380px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
}

/* HOVER FLOAT EFFECT */
.contact-form:hover,
.contact-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* FORM INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: rgba(255,255,255,0.8);
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255,102,0,0.15);
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,102,0,0.4);
}

/* INFO BOX */
.contact-info {
  text-align: left;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

.contact-info p {
  margin-bottom: 12px;
  color: #444;
  font-size: 15px;
}

/* ICON STYLE (optional if you add icons later) */
.contact-info p::before {
  content: "• ";
  color: #ff6600;
  font-weight: bold;
}

/* ACTIVE NAV FIX */
.nav-links {
  display: flex !important;
}

.nav-links .active {
  color: #ff6600;
  font-weight: 600;
}

/* FIX NAVBAR ISSUE */
.navbar {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

/* REMOVE BULLETS */
.nav-links {
  list-style: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 90%;
  }
}
/* ===== NAVBAR FIX (PREMIUM) ===== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* LOGO FIX */
.logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* NAV LINKS FIX */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333 !important;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

/* REMOVE DEFAULT LINK COLORS */
a:visited {
  color: #333;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff6600;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff6600;
}

/* ACTIVE LINK */
.nav-links .active {
  color: #ff6600 !important;
}

/* CART */
.cart-icon {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* ===== HERO SPACING FIX ===== */

.contact-section {
  margin-top: 40px;
}