/* ===================================
   CHAYA TIME INDIA PVT LTD
   Main Stylesheet
   =================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --red: #e31e24;
  --green: #1e9f4d;
  --white: #ffffff;
  --cream: #f9f6f1;
  --dark: #1a1a1a;
  --gray: #6c757d;
  --light-gray: #f0ede8;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --font: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.row {
  margin-left: 0;
  margin-right: 0;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===================================
   NAVBAR
   =================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
/* Fix navbar height */
.navbar {
  height: 70px;
  display: flex;
  align-items: center;
}

/* Increase logo size */
.navbar-brand img {
  height: 110px;
  transition: all 0.3s ease;
}

/* After scroll */
#navbar.scrolled .navbar-brand img {
  height: 75px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }
.navbar-nav .nav-link:hover { color: var(--red) !important; }

.btn-franchise-nav {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.4px;
  transition: var(--transition) !important;
}
.btn-franchise-nav:hover {
  background: #c41920 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227,30,36,0.35);
}
.btn-franchise-nav::after { display: none !important; }

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: none; width: 24px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger-line { display: block; width: 100%; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ===================================
   HERO SECTION
   =================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 40%, #0d1a0d 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-desc{
  color: white;
}
/* Animated tea-leaf particles background */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(227,30,36,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,159,77,0.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(227,30,36,0.07) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Floating tea cups */
.float-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.06;
  animation: floatAround 12s ease-in-out infinite;
}
.float-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; font-size: 4rem; }
.float-icon:nth-child(2) { top: 65%; left: 5%; animation-delay: 2s; font-size: 2.5rem; }
.float-icon:nth-child(3) { top: 30%; right: 10%; animation-delay: 4s; font-size: 3.5rem; }
.float-icon:nth-child(4) { bottom: 20%; right: 8%; animation-delay: 6s; font-size: 2rem; }
.float-icon:nth-child(5) { top: 80%; left: 40%; animation-delay: 8s; }

@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content { position: relative; z-index: 2; padding-top: 100px; }

.hero-badge {
  display: inline-block;
  background: rgba(30,159,77,0.15);
  border: 1px solid rgba(30,159,77,0.4);
  color: #4ede84;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease both;
}

.hero-logo {
  max-width: 220px;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: fadeInDown 0.9s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 25px !important;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title .highlight-red { color: var(--red); }
.hero-title .highlight-green {color: var(--red); }


.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-transform: uppercase;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-btns { animation: fadeInUp 0.9s ease 0.4s both; }
.btn-hero-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  margin-right: 14px;
  margin-bottom: 12px;
  box-shadow: 0 8px 28px rgba(227,30,36,0.4);
}
.btn-hero-primary:hover {
  background: green;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(227,30,36,0.55);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  margin-bottom: 12px;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Steam animation */
.hero-visual { position: relative; z-index: 2; text-align: center; }
.tea-cup-visual {
  font-size: 12rem;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: cupFloat 4s ease-in-out infinite;
}
@keyframes cupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.steam-container {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.steam {
  width: 3px;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
  border-radius: 50px;
  animation: steamRise 2.5s ease-in-out infinite;
}
.steam:nth-child(2) { animation-delay: 0.4s; height: 80px; }
.steam:nth-child(3) { animation-delay: 0.8s; height: 50px; }
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.5; }
  50% { transform: translateY(-30px) scaleX(1.5); opacity: 0.3; }
  100% { transform: translateY(-60px) scaleX(0.5); opacity: 0; }
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  padding-right: 30px ;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
  color: rgba(255,255,255,0.4);
  font-size: 1.8rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===================================
   SECTION COMMONS
   =================================== */
section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-dark {
  background:
    linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(26,5,5,0.92) 50%, rgba(5,13,10,0.92) 100%),
    url("../asserts/chaya-investment-bg.png");
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--red);
}
.section-title .red { color: var(--red); }
.section-title .green { color: var(--green); }
.section-title-white { color: var(--white) !important; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green));
  border-radius: 4px;
  margin: 16px 0 24px;
}
.section-divider.center { margin: 16px auto 24px; }
.section-lead {
  font-size: 15px;
  color: var(--black);
  max-width: 620px;
  line-height: 1.8;
}
.section-lead-center { margin: 0 auto; text-align: center; }

/* ===================================
   ABOUT SECTION
   =================================== */
#about { background: var(--white); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(227,30,36,0.4);
}
.about-badge-num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-badge-text { font-size: 0.78rem; font-weight: 500; opacity: 0.9; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 12px;
  transition: var(--transition);
}
.about-feature:hover {
  background: #f0ede8;
  transform: translateX(6px);
}
.about-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about-feature-icon.red { background: rgba(227,30,36,0.12); }
.about-feature-icon.green { background: rgba(30,159,77,0.12); }
.about-feature h6 { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; color: var(--dark); }
.about-feature p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ===================================
   MISSION & VISION CARDS
   =================================== */
#mission { background: var(--cream); }
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.mv-card:hover::before { transform: scaleX(1); }

.mv-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.mv-card:hover .mv-icon { transform: rotateY(360deg); }
.mv-icon.red { background: rgba(227,30,36,0.10); }
.mv-icon.green { background: rgba(30,159,77,0.10); }
.mv-icon.orange { background: rgba(255,140,0,0.10); }
.mv-icon.blue { background: rgba(30,100,200,0.10); }

.mv-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.mv-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }

/* ===================================
   FRANCHISE MODEL CARDS
   =================================== */
#franchise { background: var(--white); }
.franchise-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid #f0ede8;
  padding: 36px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: default;
}
.franchise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,30,36,0.04), rgba(30,159,77,0.04));
  opacity: 0;
  transition: var(--transition);
}
.franchise-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(227,30,36,0.12);
}
.franchise-card:hover::after { opacity: 1; }

.franchise-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}
.franchise-card:hover .franchise-icon { transform: scale(1.15) rotate(-5deg); }

.franchise-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-red { background: rgba(227,30,36,0.10); color: var(--red); }
.badge-green { background: rgba(30,159,77,0.10); color: var(--green); }

.franchise-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; color: var(--dark); }
.franchise-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.7; }
/* ===================================
   INVESTMENT & ROI
   =================================== */
#investment {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../asserts/gallery-overlay.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.inv-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,36,0.12), transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.inv-bg-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,159,77,0.10), transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

.counter-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.counter-box:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(227,30,36,0.3);
  transform: translateY(-6px);
}
.counter-icon { font-size: 2.4rem; margin-bottom: 14px; }
.counter-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-num .prefix, .counter-num .suffix { font-size: 1.6rem; color: var(--red); }
.counter-label {
  font-size: 0.82rem;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inv-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.inv-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.87rem;
}
.inv-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.inv-feature-dot.red { background: var(--red); }
.inv-feature-dot.green { background: var(--green); }

/* ===================================
   WHY CHOOSE US
   =================================== */
#why { background: var(--cream); }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.why-card h5 { font-weight: 700; font-size: 0.97rem; margin-bottom: 6px; color: var(--dark); }
.why-card p { font-size: 0.83rem; color: var(--gray); margin: 0; line-height: 1.7; }

/* ===================================
   GALLERY
   =================================== */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Gallery cards */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

/* Large cards */
.gallery-item:first-child {
  grid-column: span 2;
  height: 260px;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  height: 260px;
}

/* Normal cards */
.gallery-item:not(:first-child):not(:nth-child(4)) {
  height: 260px;
}

/* Image styling */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* keeps image proportional */
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

/* Optional smooth zoom */
.gallery-item:hover img {
  transform: scale(1.05);
}
/* ===================================
   FRANCHISE PROCESS
   =================================== */
#process { background: var(--cream); }
.process-timeline { position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.process-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(227,30,36,0.2);
  transition: var(--transition);
  position: relative;
}
.process-step:hover .process-icon-wrap {
  border-color: var(--green);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 32px rgba(30,159,77,0.25);
}
.process-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step h5 { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray); }

/* ===================================
   CONTACT SECTION
   =================================== */
#contact { background: var(--white); }
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h6 { font-weight: 600; font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--dark); margin: 0; font-weight: 500; text-decoration: none; }
.contact-item a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
}
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 2px solid #e8e3dc;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font);
  background: var(--white);
  transition: var(--transition);
  color: var(--dark);
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227,30,36,0.08);
  outline: none;
}
.btn-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}
.btn-submit:hover {
  background: #c41920;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,30,36,0.35);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}
.map-embed iframe { display: block; }

/* ===================================
   FOOTER
   =================================== */
footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  position: relative;
}
.footer-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--red));
}

footer .footer-logo { max-width: 140px; margin-bottom: 16px; }
footer .footer-desc { font-size: 0.86rem; line-height: 1.8; max-width: 260px; }

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--red); padding-left: 4px; }
/* .footer-links a::before { content: '›'; color: var(--red); font-size: 1rem; } */

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
}
.footer-contact-item span:first-child { color: var(--green); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--red); }

/* ===================================
   FLOATING BUTTONS
   =================================== */
#back-to-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(227,30,36,0.4);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
}
#back-to-top.show { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: #c41920; transform: translateY(-3px); }

#whatsapp-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  z-index: 999;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
#whatsapp-btn:hover { background: #1aab52; transform: scale(1.1); }

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* AOS overrides */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ===================================
   UTILITY
   =================================== */
.text-red { color: var(--red) !important; }
.text-green { color: var(--green) !important; }
.bg-red { background: var(--red) !important; }
.bg-green { background: var(--green) !important; }

.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.btn-red:hover {
  background: #c41920;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,30,36,0.35);
}

.btn-green {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red); /* added red border */
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-green:hover {
  background: #078e0e;
  color: var(--white);
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,159,77,0.35);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .hero-visual { margin-top: 48px; }
  .tea-cup-visual { font-size: 8rem; }
  .process-timeline::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: 1; }
}

@media (max-width: 767px) {
  .hero-stats { gap: 20px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 2; }
  .inv-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-timeline::before { display: none; }
  /* .navbar-collapse { background: var(--white); border-radius: 12px; padding: 16px; margin-top: 10px; box-shadow: var(--shadow); } */
}

@media (max-width: 480px) {
  .hero-title { font-size: 25px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
}

/* Success message */
.form-success {
  display: none;
  background: rgba(30,159,77,0.10);
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 16px;
  color: var(--green);
  font-weight: 500;
  text-align: center;
  margin-top: 14px;
}

/* Fix navbar always on mobile */
@media (max-width: 768px) {
    
.about-img-wrap img {
  height: 210px;
}

#navbar{
position: fixed !important;
top: 0;
left:0;
width:100%;
z-index:9999;
background:#fff;
}


}
@media (max-width:768px){

.navbar-brand img{
height:60px;
}

}

/* mobile menu right view  */
/* MOBILE RIGHT SIDE MENU FIX */
@media (max-width:991px){

.navbar-collapse{
position:absolute !important;
top:0px;
right:-100%;
width:75%;
max-width:360px;
height:auto;
background:#ffffff;

padding:80px 20px 25px 20px;   /* added bottom space */

transition:0.4s ease;
z-index:9999;
overflow-y:auto;

box-shadow:-5px 0 20px rgba(0,0,0,0.15);
border-radius:12px 0 0 12px;   /* optional nicer design */
}

.navbar-collapse.show{
right:0;
}

}
/* hide cancel button on desktop */
.menu-close{
display:none;
}

/* FIX NAVBAR ALIGNMENT */
.navbar .container{
display:flex;
align-items:center;
justify-content:space-between;
}

/* FIX FIRST SECTION GAP */
section:first-of-type{
padding-top:40px;
}



/* FIX MOBILE MENU SPACE */
@media (max-width:991px){

.navbar-collapse{
top:10px;
padding: 20px;
}

}
/* gap between navbar and hero only on desktop */
@media (min-width:992px){

#hero{
margin-top:80px;
}

}

/* show cancel button on tablet + mobile */
@media (max-width:991px){

.menu-close{
display:block;
position:absolute;
top:15px;
right:20px;
font-size:28px;
background:none;
border:none;
cursor:pointer;
color:#333;
}

}


.menu-close{
position:absolute;
top:15px;
right:20px;
font-size:28px;
background:none;
border:none;
cursor:pointer;
color:#333;
}

/* FIX TABLET NAVBAR ALIGNMENT */
@media (max-width:991px){

#navbar{
padding:6px 0;
}

.navbar{
height:70px;
display:flex;
align-items:center;
}

.navbar-brand img{
height:60px;   /* smaller logo for tablet */
}

#navbar.scrolled .navbar-brand img{
height:60px;   /* keep same size to avoid jump */
}

}
/* breadcrumb  */
.breadcrumb-banner{
    background-image:url('../img/breadcrumb_2.png');
    background-size:cover;
    background-position:right center;
    height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.breadcrumb-overlay{
    background:rgba(0,0,0,0.45);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.breadcrumb-container{
    text-align:center;   /* center text */
    color:white;
    padding-top:40px;    /* space from navbar */
}


.breadcrumb{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:8px;
    padding:0;
    margin-bottom:15px;
}

.breadcrumb li{
    font-size:20px;
    margin-top: -40px;
}

.breadcrumb li a{
    color:#2e7d32;
    font-weight: 800;
    text-decoration:none;
    margin-top:0px;
}

.breadcrumb li::after{
    content:"/";
    margin-left:8px;
}

.breadcrumb li:last-child::after{
    content:"";
}

.breadcrumb-title{
    padding-top: 20px;
    font-size:17px;
    font-weight:600;
}

@media (max-width:768px){

.gallery-grid{
display:grid;
grid-template-columns:1fr;   /* single column */
gap:14px;
}

/* remove wide card layout */
.gallery-item:first-child,
.gallery-item:nth-child(4){
grid-column:span 1;
}

/* make all cards same height */
.gallery-item{
width:100%;
height:220px;
overflow:hidden;
border-radius:12px;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
}

}

/* buttons  */
@media (max-width: 576px) {

  .btn-red,
  .btn-green,
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;              /* full width buttons */
    text-align: center;
    font-size: 0.9rem;        /* smaller text */
    padding: 12px 20px;       /* reduce padding */
    margin-bottom: 12px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;   /* stack buttons */
    align-items: center;
  }

  .hero-btns a {
    width: 90%;
  }

}

