@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0bc6eb;
  --secondary: #134872;
  --background-grad: linear-gradient(135deg, #4faaff 0%, #88e0fa 100%);
  --text-dark: #1a2940;
  --white: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  min-height: 100vh;
  background: var(--background-grad);
  color: var(--text-dark);
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  height: 48px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-btn {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-btn:hover,
.nav-btn.active {
  color: var(--primary);
  background: rgba(11, 198, 235, 0.08); /* Light cyan tint */
}

/* ================= CONTACT MAIN ================= */
.contact-main {
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.contact-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  animation: fadein 1s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.text {
  flex: 1;
  min-width: 300px;
  color: #fff;
  text-align: left;
}

.text h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

.contact-form {
  flex: 0 0 400px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px -10px rgba(0, 80, 120, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
}

.contact-form label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  border-radius: 12px;
  border: 2px solid #eef2f6;
  background: #f8fbfe;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 198, 235, 0.1);
}

.cta-button {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 198, 235, 0.3);
  margin-top: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 198, 235, 0.4);
}

@media (max-width: 900px) {
  .contact-content { flex-direction: column; gap: 30px; text-align: center; }
  .text { text-align: center; }
  .contact-form { width: 100%; max-width: 500px; }
  .text h1 { font-size: 36px; }
}

@media (max-width: 600px) {
  .header-inner { flex-direction: column; gap: 10px; }
  .nav { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .contact-form { padding: 30px 20px; }
}

#cart-count {
  background: #fff;
  color: var(--primary);
  border-radius: 10px;
  padding: 2px 8px;
  font-size: 14px;
  margin-left: 8px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  min-width: 10px;
  text-align: center;
}
