/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #14213d;
}

/* ================= HEADER ================= */
.hero-wrapper {
  min-height: 380px;
  position: relative;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  overflow: hidden;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 24, 56, 0.9) 0%,
    rgba(7, 24, 56, 0.56) 50%,
    rgba(7, 24, 56, 0.28) 100%
  );
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.hero-text {
  max-width: 720px;
  padding: 30px 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 10px;
}

.hero-text p {
  color: #f2f6ff;
  font-size: 16px;
}
.bg-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.bg-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-slider img.active {
  opacity: 1;
}
.bg-slider img {
  transform: scale(1.1);
}

.bg-slider img.active {
  transform: scale(1);
  transition:
    opacity 1s ease,
    transform 5s ease;
}

/* HEADER FIX */

/* WHITE NAV (VISIBLE ON IMAGE) */
.nav a {
  color: #fff;
}

.nav a::after {
  background: #fff;
}

/* HERO TEXT WHITE */
.hero-text h1,
.hero-text p {
  color: #fff;
}

/* SEARCH STYLE */
.header-right input {
  padding: 0px 40px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2); /* transparent */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 220px;
  outline: none;
  transition: all 0.3s ease;
}

.header-right input::placeholder {
  color: #ddd;
}

/* CART FIX */
.cart {
  position: relative;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}
.contact-section {
  display: flex;
  gap: 40px;
  padding: 70px 8%;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.small-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: gray;
  margin-bottom: 10px;
}

.contact-left h2 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #0b2c5f;
}

.contact-left h3 {
  margin-bottom: 15px;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-info p {
  margin: 0;
  font-size: 16px;
  color: #56627a;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e7ecf5;
}

.contact-info i {
  margin-right: 10px;
  color: #0b2c5f;
}

/* RIGHT */
.contact-right {
  flex: 1;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(7, 24, 56, 0.12);
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 8% 70px;
}

.instagram-section h2 {
  margin-bottom: 22px;
  color: #0b2c5f;
}

.instagram-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.instagram-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e7ecf5;
  color: #0b2c5f;
  font-weight: 600;
  text-decoration: none;
}

.instagram-links i {
  font-size: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 15px;
  color: inherit;
  text-decoration: none;
}

.social-icons a i {
  margin-right: 0;
}

.social-icons a span {
  font-size: 12px;
}

/* FULL SCREEN POPUP BACKGROUND */
.popup {
  position: fixed; /* VERY IMPORTANT */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

/* POPUP BOX */
.popup-content {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  width: 300px;
}

/* ICON */
.popup-content i {
  font-size: 40px;
  color: #0a7b6c;
  margin-bottom: 10px;
}

/* BUTTON */
.popup-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #0a7b6c;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.message-section {
  display: flex;
  gap: 50px;
  padding: 40px 8%;
  max-width: 1240px;
  margin: 16px auto 50px;
  border: 1px solid #e7ecf5;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(7, 24, 56, 0.08);
}

/* LEFT SIDE */
.message-left {
  flex: 2;
}

.message-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0b2c5f;
}

.message-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message-left input,
.message-left textarea {
  padding: 14px 15px;
  border: 1px solid #dce6f7;
  font-size: 15px;
  border-radius: 14px;
  width: 100%;
  background: #fcfdff;
}

.message-left textarea {
  height: 150px;
  resize: none;
}

.message-left button {
  width: 160px;
  padding: 12px;
  background: linear-gradient(135deg, #0b2c5f 0%, #3a6fd8 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.message-left button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 44, 95, 0.14);
}

/* RIGHT SIDE */
.message-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-member {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e7ecf5;
}

.team-member img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member h4 {
  margin: 0;
  color: #0b2c5f;
}

.team-member p {
  margin: 3px 0;
  font-size: 14px;
  color: #64748b;
}

.team-member span {
  font-size: 13px;
  color: #56627a;
}
.social-icons a {
  color: inherit;
  text-decoration: none;
}

.social-icons a:hover i {
  transform: scale(1.2);
  color: #0b2c5f;
}

/* RESPONSIVE MOBILE FIXES */
@media (max-width: 768px) {
  .contact-section,
  .message-section {
    flex-direction: column;
    padding: 30px 20px;
    margin: 15px;
    gap: 30px;
  }

  .contact-left,
  .contact-right,
  .message-left,
  .message-right {
    flex: auto;
    width: 100%;
  }

  .contact-left h2,
  .message-left h2 {
    font-size: 26px;
  }

  .contact-right {
    height: 300px;
  }

  .message-left input,
  .message-left textarea {
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .message-left button {
    width: 100%;
  }

  .team-member {
    align-items: flex-start;
  }

  .team-member img {
    width: 60px;
    height: 60px;
    margin-top: 5px;
  }
}
