/* ========================================================= GLOBAL STYLE ========================================================= */

/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Variables */
:root {
  --primary-color: #006d67;    /* Premium Teal */
  --secondary-color: #D4AF37;  /* Metallic Gold */
  --text-color: #2C2C2C;       /* Charcoal Text */
  --light-bg: #FAF8F0;         /* Soft Cream Background */
  --dark-bg: #4E342E;          /* Deep Brown (Navbar/Footer) */
}

/* Base Typography & Layout */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--light-bg);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section.light {
  background-color: var(--light-bg);
}

/* ========================================================= SECTION TITLES ========================================================= */

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* ========================================================= NAVBAR ========================================================= */

header {
  background: var(--dark-bg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Navbar Layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* ---------- LOGO ---------- */
.logo {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 70%, #f7f7f7 100%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);  /* Soft Gold Glow */
  overflow: hidden;
}

.logo img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(1) contrast(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.2);
}

/* ---------- NAV LINKS ---------- */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  font-size: large;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--secondary-color);
}

/* ---------- HAMBURGER MENU (Mobile) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  margin-left: auto;
  margin-right: 15px;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger "X" animation */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- RESPONSIVE STYLES ---------- */

@media (max-width: 768px) {

  /* Collapse Navbar into Dropdown */
  nav ul {
    flex-direction: column;
    gap: 15px;
    background: var(--dark-bg);
    position: absolute;
    top: 70px;
    /* below navbar */
    right: 0;
    width: 200px;
    padding: 20px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  nav ul.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ========================================================= HERO SECTION ========================================================= */

#hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* Background Gradient — Layered Teal Shades */
  background: linear-gradient(180deg,
      #007C75 0%,   /* Light Teal (top) */
      #005A55 60%,  /* Mid Teal */
      #004743 100%  /* Deep Teal (bottom) */
    );
}

/* Subtle radial dark overlay */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.3) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ---------- HERO CONTENT CONTAINER ---------- */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);  /* Soft glassy overlay */
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  animation: fadeInUp 1.2s ease-out;
}

/* ---------- MAIN HEADING ---------- */
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #FFD700;  /* Bright Gold */

  /* ✨ Premium Gold Glow Effect */
  text-shadow:
    0 0 8px rgba(255, 215, 0, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 0 15px rgba(212, 175, 55, 0.5);
}

/* ---------- TAGLINE ---------- */
.hero-content .tagline {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #F8F5E1;
  margin-bottom: 8px;
}

/* ---------- SUBTEXT ---------- */
.hero-content .subtext {
  font-size: 1rem;
  font-weight: 100;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ---------- BUTTON ---------- */
.hero-content .btn {
  background: var(--secondary-color);
  color: var(--dark-bg);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content .btn:hover {
  background: #b8952c;
  transform: translateY(-2px);
}

/* ---------- ANIMATIONS ---------- */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================= ABOUT SECTION ========================================================= */

/* Layout container for text + image */
.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;  /* ensures responsiveness */
  gap: 40px;  /* spacing between text & image */
  text-align: justify;
}

/* Text and image each take equal width */
.about-text,
.about-image {
  flex: 1;
}

/* ---------- ABOUT IMAGE ---------- */
.about-image img {
  border: 3px solid var(--secondary-color);  /* Elegant gold border */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect — slight zoom and deeper shadow */
.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .about-container {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: center;
    gap: 25px;
    padding: 20px 12px;
  }

  /* Move image ABOVE text */
  .about-image {
    order: -1;                 
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 12px;
  }

  .about-text {
    width: 100%;
    text-align: justify;
  }

  .about-text h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 8px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 8px;
  }
}

@media (max-width: 400px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 15px 10px;
  }

  /* Move image ABOVE text */
  .about-image {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
  }

  .about-text {
    width: 100%;
    text-align: justify;
  }

  .about-text h2 {
    font-size: 1.45rem;
    text-align: center;
    margin-bottom: 6px;
  }

  .about-text p {
    font-size: 0.92rem;
    line-height: 1.45;
    padding: 0 6px;
  }
}

/* ========================================================= PRODUCTS & PACKAGING SECTION ========================================================= */

/* ---------- Product Grid Layout ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: stretch;
  margin-top: 20px;
}

/* ---------- Shared Card Base ---------- */
.product-card,
.packing-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 300px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Product card hover */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ---------- Product Image ---------- */
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Smooth hover zoom */
.product-card img:hover {
  transform: scale(1.05);
}

/* ---------- Product Text ---------- */
.product-card h3 {
  font-size: 1rem;
  color: #222;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

/* ---------- Pricing ---------- */
.product-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e67e22; /* warm orange */
  background: rgba(230, 126, 34, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  margin: 8px 0;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(230, 126, 34, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Price hover / emphasis */
.product-card .price:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.4);
}

.product-card:hover .price {
  transform: scale(1.08);
  box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

.product-card .price .amount {
  color: #d35400; /* darker ₹ number */
}

/* ---------- Discounted Price (old/new) ---------- */
.price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f6f6f9, #e3e0d7);
  box-shadow: 0 2px 8px rgba(70, 100, 200, 0.15);
}

.old-price {
  font-size: 1rem;
  font-weight: 500;
  color: #707070;
  text-decoration: line-through;
  opacity: 0.85;
}

.new-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0057a3; /* Royal Blue */
  text-shadow: 0 0 5px rgba(0, 87, 163, 0.3);
}

.note {
  font-size: 1.5rem;
  color: #555;
  font-style: italic;
  letter-spacing: 0.3px;
  text-align: center;
  align-items: center;
  margin-top: 40px;
}

/* ---------- Buttons / Card Actions ---------- */
.card-actions {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #25D366;
  /* WhatsApp green */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 600;
  cursor: pointer;

  transition: opacity 0.15s ease, transform 0.12s ease;
}

/* Button hover */
.order-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* WhatsApp icon */
.order-btn::before {
  content: "\f232";  /* Font Awesome WhatsApp code */
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: normal;
  margin-right: 6px;
}

/* Whatsapp popup for quantity*/
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup.hidden {
  display: none;
}

.popup-content {
  width: 90%;
  max-width: 360px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.popup-content select,
.popup-content input {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

.closePopup {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}

.popup-btn-group {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.popup-btn-group button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.confirmBtn {
  background: #25D366; /* WhatsApp green */
  color: white;
  font-weight: 600;
}

.cancelBtn {
  background: #dddddd;
  color: #333;
  font-weight: 600;
}

/* ---------- Ribbon (Wrapped Corner) ---------- */
.product-card {
  position: relative;
  overflow: hidden;
}

/* Ribbon container */
.ribbon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

/* Ribbon body */
.ribbon span {
  position: absolute;
  top: 32px;
  left: -70px;
  display: block;
  width: 260px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

/* Ribbon folded edges */
.ribbon span::before,
.ribbon span::after {
  content: "";
  position: absolute;
  top: 100%;
  border-top: 3px solid #b03a2e;
  border-bottom: 3px solid transparent;
}

.ribbon span::before {
  left: 0;
  border-left: 3px solid #b03a2e;
  border-right: 3px solid transparent;
}

.ribbon span::after {
  right: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid #b03a2e;
}

/* ---------- Packaging Image Slider ---------- */
.image-slider {
  position: relative;
  width: 100%;
  height: 230px;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.4s ease;
}

/* Active image */
.image-slider img.active {
  opacity: 1;
  transform: scale(1.02);
  z-index: 1;
}

/* Toggle button */
.toggle-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Toggle hover */
.toggle-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .product-card {
    height: auto;
  }

  .product-card img {
    height: 200px;
  }
}

/* ========================================================= Oil Comparison Section ========================================================= */

#comparison .section-title {
  margin-bottom: 20px;
}

#comparison .compare-intro {
  font-size: 1.15rem;
  text-align: center;
  margin: 0 auto 45px auto;
  color: #555;
  line-height: 1.6;
}

.compare-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 35px auto;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #ffd8b3; /* soft pastel peach border */
  box-shadow: 0 0 20px rgba(255, 200, 150, 0.3); /* gentle glow */
  transition: all 0.3s ease;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.compare-table th {
  background: linear-gradient(135deg, #ffd9b3, #ffc299); /* subtle gradient */
  color: #333;
  font-weight: 700;
  font-size: 1.15rem;
  border-bottom: 2px solid #ffb366;
}

.compare-table td {
  color: #4a4a4a;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:nth-child(even) {
  background-color: #fff7f0;
}

.compare-table td strong {
  color: #d35400;
  font-weight: 600;
}

.compare-table tr:hover {
  background-color: #ffe8d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

#comparison .compare-summary {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 40px auto 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .compare-table th, .compare-table td {
    padding: 12px 10px;
    font-size: 0.95rem;
  }
  #comparison .section-title {
    font-size: 1.6rem;
  }
}

/* ========================================================= FROM SEED TO BOTTLE SECTION ========================================================= */

/* ---------- Section Wrapper ---------- */
.journey-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.journey-section p {
  text-align: center;
}

/* ---------- Vertical Timeline Layout ---------- */
.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}

/* Central connecting line (hidden for now) */
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #ffce56, #f6a623);
  z-index: 0;
  display: none;
}

/* ---------- Each Step ---------- */
.journey-step {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Connector line between steps */
.journey-step::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  width: 3px;
  height: 70px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #ffecb3, #fbc02d);
  opacity: 0.6;
  z-index: 0;
}

/* Hide top connector on first step */
.journey-step:first-child::before {
  display: none;
}

/* Visible state for scroll animation */
.journey-step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.journey-step.visible:nth-child(1) {
  transition-delay: 0.1s;
}

.journey-step.visible:nth-child(2) {
  transition-delay: 0.2s;
}

.journey-step.visible:nth-child(3) {
  transition-delay: 0.3s;
}

.journey-step.visible:nth-child(4) {
  transition-delay: 0.4s;
}

/* ---------- Journey Icon (Circle) ---------- */
.journey-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff8e1;
  border: 3px solid #ffd54f;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.journey-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 1s ease-in-out, transform 0.4s ease, box-shadow 0.4s ease;
}

/* ---------- Image Slider Inside Icon ---------- */
.journey-icon.slider {
  position: relative;
  overflow: hidden;
}

.journey-icon.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease-in-out, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Active image visible */
.journey-icon.slider img.active {
  opacity: 1;
}

/* Hover zoom for step images */
.journey-step:hover .journey-icon img {
  transform: scale(1.1);
}

/* ---------- Hover Zoom Effect (Popup Style) ---------- */
.journey-icon.slider:hover {
  z-index: 10;  /* ensure it’s above nearby steps */
}

.journey-icon.slider:hover img.active {
  transform: scale(1.5);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-icon.slider img {
  cursor: pointer;
}

/* ---------- Text Content ---------- */
.journey-content h3 {
  text-align: center;
  color: #d66a00;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.journey-content p {
  max-width: 550px;
  margin: 0 auto;
  color: #333;
  line-height: 1.7;
  font-family: 'Lora', serif;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  .journey-timeline::before {
    left: 8%;
  }

  .journey-step {
    align-items: center;
    text-align: center;
  }

  .journey-content p {
    max-width: 100%;
  }

  .journey-icon {
    width: 150px;
    height: 150px;
  }
}

/* ========================================================= WHY CHOOSE US SECTION ========================================================= */

.why-wrapper {
  position: relative !important;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 520px;
  min-height: 420px;
  display: block;
}

/* ---------- Bottle ---------- */
.why-bottle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  z-index: 30;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

/* ---------- Points (badges) ---------- */
.why-point {
  position: absolute;
  width: 220px;
  background: #fff;
  border: 2px solid rgba(212, 175, 55, 0.95);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.08);
  color: #222;
  z-index: 20;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
  font-family: "Lora", serif;
  text-align: left;
}

.why-point h3 {
  font-family: "Poppins", sans-serif;
  color: #b8860b;
  margin: 0 0 6px 0;
  font-size: 0.98rem;
}

.why-point p {
  margin: 0;
  font-size: 0.86rem;
  color: #444;
  line-height: 1.4;
}

.why-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
  background: #fff9ee;
}

/* ---------- Static "lines" toward bottle using pseudo-elements ---------- */
.why-point::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, #f6a623, #ffd76b);
  opacity: .9;
}

/* ---------- Positioning (desktop) ---------- */
.point1 {
  top: 5%;
  left: 6%;
}

.point1::after {
  right: -70px;
  top: 50%;
  transform: rotate(20deg);
}

.point2 {
  top: 5%;
  right: 6%;
}

.point2::after {
  left: -70px;
  top: 50%;
  transform: rotate(-20deg);
}

.point3 {
  top: 38%;
  left: -2%;
}

.point3::after {
  right: -75px;
  top: 55%;
  transform: rotate(8deg);
}

.point4 {
  top: 38%;
  right: -2%;
}

.point4::after {
  left: -75px;
  top: 55%;
  transform: rotate(-8deg);
}

.point5 {
  bottom: 6%;
  left: 8%;
}

.point5::after {
  right: -70px;
  top: 40%;
  transform: rotate(-25deg);
}

.point6 {
  bottom: 6%;
  right: 8%;
}

.point6::after {
  left: -70px;
  top: 40%;
  transform: rotate(25deg);
}

/* ---------- Responsive layout for Mobile ---------- */
@media (max-width: 900px) {

    /* STOP all absolute positions from desktop */
  .why-point,
  .why-track .why-point {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .why-wrapper {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 30px; /* space for swipe text */
    overflow: visible !important;
    max-width: 400px;
    position: relative;
  }

  /* move swipe text closer */
  .why-wrapper::after {
    bottom: 0px !important;
  }

  .why-bottle {
    display: none;
  }

  /* "Swipe" hint */
  .why-wrapper::after {
    content: "⇠ Swipe ⇢";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #b8860b;
    opacity: 0.7;
    animation: fadeHint 2s ease-in-out infinite;
  }

  @keyframes fadeHint {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
  }

  /* proper slider behavior */
  .why-track {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
  }

  /* slider */
  .why-slider {
    display: flex;
    overflow-x: scroll;
    gap: 24px;
    flex-wrap: nowrap;
    padding: 0 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-top: 35px !important;
    overflow-y: visible !important;
  }

  .why-slider::-webkit-scrollbar { display: none; }

  /* each card */
  .why-point {
    width: 75% !important;        /* narrower, vertical look */
    min-width: 75% !important;    /* keeps the vertical shape */
    height: 300px !important;     /* taller → portrait shape */
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    box-shadow: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .why-slider.paused {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
  }

 /* Hover effect → card pops out */
  .why-point:hover,
  .why-point:active {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0px 6px 14x rgba(0,0,0,0.14);
  }

  .why-point.is-lifted {
    transform: scale(1.035) translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.18);
    z-index: 10;
  }

  .why-point::after {
    display: none !important;
  }

  .why-point h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .why-point p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* Smaller screens */
@media (max-width: 600px) {
  .why-wrapper { max-width: 360px; }
  .why-point { padding: 16px; }
}

@media (max-width: 450px) {
  .why-wrapper { max-width: 320px; }
  .why-point { padding: 14px; }
}

/* ========================================================= MEET OUR TEAM SECTION ========================================================= */

/* ---------- Grid Layout ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  justify-items: center;
  align-items: stretch;
  margin-top: 40px;
}

/* ---------- Team Card ---------- */
.team-card {
  background: linear-gradient(145deg, #fff8f9, #fef6f7);  /* muted rose */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(34, 34, 34, 0.12);
  text-align: center;
  padding: 30px 20px;
  max-width: 300px;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}

/* Visible state (on scroll reveal) */
.team-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: fadeUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Hover effect — elegant lift and brighter rose tint */
.team-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(145deg, #fef6f7, #ffeef0);
  box-shadow: 0 15px 35px rgba(34, 34, 34, 0.25),
    0 0 20px rgba(214, 106, 120, 0.15);
}

/* ---------- Profile Image ---------- */
.team-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #d4a5a5;  /* soft rose */
  box-shadow: 0 6px 15px rgba(34, 34, 34, 0.12);
  margin-bottom: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image hover / card hover zoom effect */
.team-card img:hover,
.team-card:hover img {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 10px 25px rgba(34, 34, 34, 0.18);
}

/* ---------- Name & Role ---------- */
.team-card h3 {
  font-family: 'DM Serif Display', serif;
  color: #000080;  /* navy */
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.6px;
}

/* Decorative underline for name */
.team-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #d66a78, #c94c72);
  opacity: 0.7;
  transition: width 0.3s ease;
}

.team-card:hover h3::after {
  width: 60px;
}

/* Role text */
.team-card .role {
  font-family: 'Poppins', sans-serif;
  color: #d66a78;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

/* ---------- Bio ---------- */
.team-card p {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: #4a4a4a;  /* charcoal */
  line-height: 1.7;
}

/* ---------- Fade-Up Animation ---------- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .team-grid {
    gap: 30px;
  }

  .team-card {
    max-width: 90%;
    padding: 25px 18px;
  }

  .team-card img {
    width: 120px;
    height: 120px;
  }
}

/* ========================================================= REVIEWS SECTION ========================================================= */

/* ---------- Review Form ---------- */
.review-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  align-items: flex-end;
}

/* ---------- STAR RATING ---------- */
.star-rating {
  display: flex;
  gap: 5px;
  font-size: 30px;
  cursor: pointer;
}

.star {
  color: #ccc;
  transition: 0.2s ease;
}

.star.active {
  color: gold;
  transform: scale(1.2);
}

/* ---------- Edit/Delete/Save/Cancel Buttons ---------- */
.save-edit-btn,
.cancel-edit-btn,
.edit-review-btn,
.delete-review-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 0.9rem;
}

.save-edit-btn {
  background-color: #3b82f6;
  color: white;
  border-color: #2563eb;
}

.save-edit-btn:hover {
  background-color: #2563eb;
}

.cancel-edit-btn {
  background-color: #f3f4f6;
  color: #111;
}

.cancel-edit-btn:hover {
  background-color: #e5e7eb;
}

.edit-review-btn {
  background-color: #f59e0b;
  color: white;
  border-color: #b45309;
}

.edit-review-btn:hover {
  background-color: #b45309;
}

.delete-review-btn {
  background-color: #ef4444;
  color: white;
  border-color: #b91c1c;
}

.delete-review-btn:hover {
  background-color: #b91c1c;
}

/* ---------- Star Rating Dropdown (Fallback) ---------- */
.edit-rating,
#review-rating {
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  color: #111;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 8px; /* some spacing from above */
}

/* Hover / focus effect */
.edit-rating:hover,
.edit-rating:focus,
#review-rating:hover,
#review-rating:focus {
  border-color: #3b82f6; /* blue outline on hover/focus */
  box-shadow: 0 0 4px rgba(59, 130, 246, 0.5);
  outline: none;
}

/* ---------- Textarea ---------- */
#review-message {
  width: 100%;
  padding: 10px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

#review-message:focus {
  border-color: #3c8dbc;
  box-shadow: 0 0 6px rgba(60, 141, 188, 0.3);
  outline: none;
}

/* ---------- Submit Review Button ---------- */
.submit-review-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-review-btn:hover {
  background: #005a55;  /* darker teal on hover */
  transform: translateY(-2px);
}

/* ---------- Reviews Grid ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Review Card */
.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Review Text Styling */
.review-user {
  font-weight: bold;
  margin-bottom: 8px;
}

.review-text {
  font-style: italic;
  color: #555;
}

/* ---------- LOADER ---------- */
.review-loader {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-size: 1rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #ddd;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* ---------- Load More Button ---------- */
.load-more-btn {
  padding: 10px 15px;
  background: var(--primary-color);
  border-radius: 8px;
  border: none;
  color: #fff;
  margin: 20px auto;
  display: block;
  cursor: pointer;
}

/* ========================================================= AUTH BUTTONS ========================================================= */

/* Container */
.review-auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* ---------- Google Sign-In Button ---------- */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 240px;

  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;

  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.google-btn img {
  width: 20px;
  height: 20px;
}

.google-btn:hover {
  background: #f7f8f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.google-btn:active {
  background: #eeeeee;
}

/* ---------- Sign-Out Button ---------- */
.signout-btn {
  width: 240px;
  background: var(--secondary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 6px;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.signout-btn:hover {
  background: #c7a335;  /* darker gold */
  transform: translateY(-2px);
}

/* ---------- Media Upload Button ---------- */
.media-upload-btn {
  display: inline-block;
  background: #f1f1f1;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.media-upload-btn:hover {
  background: #e0e0e0;
}

/* ========================================================= CONTACT SECTION ========================================================= */

/* ---------- Layout ---------- */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

/* ---------- Form Styling ---------- */
.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 280px;
}

.fa-file-invoice {
  color: #ffc107;  /* warm mustard tone */
  margin-right: 6px;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.contact-container input:focus,
.contact-container textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 8px rgba(184, 149, 44, 0.25);
  outline: none;
}

/* ---------- Submit Button ---------- */
.contact-container button {
  background: var(--secondary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-container button:hover {
  background: #b8952c;
  transform: translateY(-2px);
}

/* ========================================================= WHATSAPP TOOLTIP ========================================================= */

/* Tooltip Bubble */
.whatsapp-tooltip {
  position: fixed;
  bottom: 95px;  /* above WhatsApp icon */
  right: 25px;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  z-index: 998;
  animation: floatIn 0.4s ease forwards;
}

/* Small Pointer */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
}

/* ---------- Tooltip Animation ---------- */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-container form {
    width: 100%;
  }
}

/* ========================================================= WHATSApp FLOATING ACTION BUTTON ========================================================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;  /* WhatsApp Green */
  color: #fff;
  font-size: 28px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  z-index: 999;
  cursor: pointer;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* ========================================================= FOOTER SECTION ========================================================= */
footer {
  background: var(--dark-bg);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

/* ---------- Footer Container ---------- */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-top: 1.5px solid var(--secondary-color);
}

/* ---------- Brand / Logo Area ---------- */
.footer-brand h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin: 0;
}

/* ---------- Middle Row: Address | Links | Hours ---------- */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 10px 0 25px;
}

.footer-content>div {
  flex: 1 1 250px;
  min-width: 200px;
}

/* Section Titles */
.footer-content h2 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.footer-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* ---------- Footer Links ---------- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  align-items: center;
}

.footer-links ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 0;
  padding-left: 1.5rem;  /* replaced hard 150px with relative padding */
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* ---------- Social Icons ---------- */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer-social a {
  color: #f0f0f0;
  font-size: 1.5rem;
  padding: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

/* ---------- Bottom Copyright Bar ---------- */
.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 10px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #dcdcdc;
  margin: 0;
}

.footer-bottom span {
  color: var(--secondary-color);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    flex-wrap: nowrap;  /* ensure they stay in one row */
  }

  .footer-content > div {
    flex: 1 1 33.33%;           /* 3 equal columns */
    min-width: 0;               /* allow shrinking */
    line-height: 1.25;
  }

  .footer-links {
    align-items: flex-start;
    text-align: center;
  }

  .footer-links ul {
    padding-left: 1rem;
    list-style: disc;
    list-style-position: inside;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 10px;             /* smaller gap */
  }

  .footer-content > div {
    flex: 1 1 33%;         /* equal width */
    line-height: 1.25;
  }

  footer {
    font-size: 0.85rem;    /* reduce footer text size */
  }

  .footer-links ul {
    font-size: 0.85rem;
  }

  .footer-social a {
    font-size: 1.1rem;
    margin-right: 6px;
  }
}

@media (max-width: 400px) {
  .footer-content {
    gap: 6px;               /* reduce gap so all fit */
  }

  .footer-content > div {
    font-size: 0.75rem;     /* smaller font but still readable */
    line-height: 1.25;
  }

  .footer-links ul {
    font-size: 0.75rem;
    padding-left: 0.8rem;
  }

  .footer-social a {
    font-size: 1rem;
    margin-right: 6px;
  }

  footer {
    padding: 10px 6px;
  }
}

/* ========================================================= JOURNEY SECTION — FULLSCREEN IMAGE POPUP ========================================================= */

/* ----- Popup Container ----- */
.journey-image-popup {
  position: fixed;
  inset: 0;  /* shorthand for top:0; left:0; width:100vw; height:100vh */
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Active state (visible popup) */
.journey-image-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* ----- Popup Image ----- */
.journey-image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  animation: journeyZoom 0.3s ease forwards;
}

/* ----- Navigation Arrows ----- */
.journey-image-popup .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  user-select: none;
  z-index: 10000;
  transition: background 0.3s ease;
}

.journey-image-popup .nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.journey-image-popup .nav-arrow.left {
  left: 25px;
}

.journey-image-popup .nav-arrow.right {
  right: 25px;
}

/* ----- Image Caption / Alt Text (if used) ----- */
#journeyPopupImg {
  color: #fff;
  background: transparent;
  font-size: 18px;
  text-align: center;
}

/* ----- Close Button ----- */
.journey-image-popup .close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 45px;
  height: 45px;
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.journey-image-popup .close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ----- Zoom-In Animation ----- */
@keyframes journeyZoom {
  from {
    transform: scale(0.9);
    opacity: 0.5;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================================================= RESPONSIVE ADJUSTMENTS ========================================================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    background: var(--dark-bg);
    position: absolute;
    top: 100%;
    right: 0;
    display: none;  /* placeholder for mobile nav toggle */
  }
}