:root {
  --bg-midnight: #004033;
  --bg-midnight-dark: #00221A;
  --text-gold: #C5A035;
  --accent-emerald: #006A4E;
  --accent-copper: #A56C42;
  --light-ivory: #FDFCF5;
  --light-custard: #F7E07E;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gold-gradient: linear-gradient(135deg, #F7E07E 0%, #C5A035 100%);
  --gold-glow: 0 0 20px rgba(197, 160, 53, 0.2);
}

html {
  scroll-behavior: smooth;
}

#experience,
#roots,
#craft,
#partner,
#home {
  scroll-margin-top: 110px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-midnight-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 53, 0.4);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-gold);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left {
  transform: translateX(-50px) translateY(0);
}

.reveal.right {
  transform: translateX(50px) translateY(0);
}

.reveal.scale {
  transform: scale(0.95) translateY(0);
}

.reveal.active.left,
.reveal.active.right {
  transform: translateX(0);
}

.reveal.active.scale {
  transform: scale(1);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-midnight);
  color: var(--text-gold);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 1px;
}

/* Typography & General */
.gold-text {
  color: var(--text-gold);
}

.ivory-text {
  color: var(--light-ivory);
}

.bg-midnight {
  background-color: var(--bg-midnight);
}

.bg-emerald {
  background-color: var(--accent-emerald);
}

.bg-ivory {
  background-color: var(--light-ivory);
  color: var(--bg-midnight);
}

/* Layout */
#app {
  display: flex;
  flex-direction: column;
}

main {
  width: 100%;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(0, 64, 51, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 252, 245, 0.05);
}

nav.scrolled {
  padding: 1.2rem 5%;
  background: rgba(0, 34, 26, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(197, 160, 53, 0.15);
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 60px;
  /* Reduced slightly */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  /* Premium drop shadow on the logo */
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--light-ivory);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 4px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-midnight-dark);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(197, 160, 53, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 53, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-gold);
  border: 1px solid var(--text-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold-gradient);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline:hover {
  color: var(--bg-midnight-dark);
  border-color: transparent;
  font-weight: 600;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 64, 51, 0.2) 0%, rgba(0, 64, 51, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-headline {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--light-ivory);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* The Proposition Section */
.proposition {
  padding: 4rem 5%;
  text-align: center;
  background-color: var(--bg-midnight);
  position: relative;
}

.proposition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/art_of_crunch.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-ivory);
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prop-card {
  padding: 3.5rem 2.5rem;
  background: rgba(0, 106, 78, 0.05);
  border: 1px solid rgba(197, 160, 53, 0.15);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.prop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.prop-card:hover::before {
  transform: scaleX(1);
}

.prop-card:hover {
  transform: translateY(-12px);
  background: rgba(0, 106, 78, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(197, 160, 53, 0.4);
}

.prop-icon {
  font-size: 3rem;
  /* Phosphor icons are inline-block SVGs, nice to be big */
  color: var(--accent-copper);
  margin-bottom: 1.5rem;
}

.prop-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light-ivory);
}

.prop-text {
  font-size: 0.95rem;
  color: rgba(253, 252, 245, 0.8);
}

/* Destination Icons Section */
.destinations {
  padding: 4rem 5%;
  background-color: var(--bg-midnight-dark);
  background-image: radial-gradient(rgba(0, 106, 78, 0.2) 2px, transparent 2px), radial-gradient(rgba(0, 106, 78, 0.15) 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  text-align: center;
  position: relative;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.dest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background: rgba(0, 64, 51, 0.4);
  border: 1px solid rgba(197, 160, 53, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(197, 160, 53, 0.5);
  background: rgba(0, 64, 51, 0.7);
}

.dest-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(197, 160, 53, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-gold);
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.dest-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(197, 160, 53, 0.3);
  animation: rotateSpin 20s linear infinite;
  transition: all 0.4s ease;
}

.dest-item:hover .dest-icon {
  background: var(--gold-gradient);
  color: var(--bg-midnight-dark);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(197, 160, 53, 0.5);
}

.dest-item:hover .dest-icon::after {
  border: 2px solid rgba(197, 160, 53, 0.9);
  animation: pulseGlow 1.5s infinite alternate;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}

@keyframes rotateSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Product Profile */
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.product-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--accent-emerald) 0%, var(--bg-midnight) 100%);
  padding: 4rem;
}

.product-image {
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center bottom;
}

.product-image:hover {
  transform: scale(1.08) translateY(-10px);
}

.product-details {
  padding: 6rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tasting-notes {
  margin: 3rem 0;
}

.note-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197, 160, 53, 0.3);
  padding-bottom: 1rem;
}

.note-title {
  color: var(--text-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pairings {
  background: rgba(253, 252, 245, 0.05);
  padding: 2rem;
  border-left: 3px solid var(--accent-copper);
}

.pairings-title {
  color: var(--accent-copper);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Our Roots */
.roots-hero {
  height: 60vh;
  background-image: url('assets/kerala_dancers.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roots-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 64, 51, 0.7);
}

.roots-title {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  text-align: center;
}

.roots-content {
  padding: 3rem 5%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.roots-content p {
  color: var(--light-ivory);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.parent-brand {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(197, 160, 53, 0.2);
}

.parent-brand h3 {
  color: var(--text-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* The Directory */
.directory-section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.directory-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.map-placeholder {
  background: rgba(253, 252, 245, 0.03);
  border: 1px solid rgba(197, 160, 53, 0.3);
  border-radius: 12px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-copper);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.map-placeholder::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(197, 160, 53, 0.1) 0%, transparent 60%);
  animation: pulseRotate 15s linear infinite;
  pointer-events: none;
}

@keyframes pulseRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item h4 {
  color: var(--text-gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.location-item p {
  color: var(--light-ivory);
  font-size: 0.9rem;
}

.testimonial-slider {
  margin-top: 6rem;
  padding: 4rem;
  background: var(--bg-ivory);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--bg-midnight);
}

.testimonial-author {
  font-family: var(--font-heading);
  color: var(--accent-emerald);
  font-weight: 600;
}

/* Partner With Us */
.partner-section {
  padding: 5rem 5%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.partner-container-trendy {
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: 0;
  border-radius: 30px;
  background: rgba(0, 64, 51, 0.2);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(197, 160, 53, 0.15);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
}

/* Add a glowing accent line on top of the container */
.partner-container-trendy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--text-gold), transparent);
}

.partner-pitch {
  flex: 1;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(0, 106, 78, 0.4), transparent);
}

.partner-pitch h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.partner-pitch p {
  color: rgba(250, 245, 235, 0.9);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.partner-form-container {
  flex: 1;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: .5rem;
}

.contact-form {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;


  .form-group {
    margin-bottom: 2rem;
    padding: 1rem;

  }
}

.form-group label {
  display: block;
  color: var(--text-gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 1.2rem 0.8rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(197, 160, 53, 0.3);
  color: var(--light-ivory);
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--text-gold);
  background: rgba(197, 160, 53, 0.05);
  padding-left: 1.2rem;
}

/* Custom Select Dropdowns */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A035' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control:focus {
  background-color: rgba(197, 160, 53, 0.05);
}

select.form-control option {
  background-color: var(--bg-midnight-dark);
  color: var(--light-ivory);
  padding: 15px;
  font-family: var(--font-body);
}

/* Custom Checkbox */
.custom-checkbox-group {
  display: flex;
  align-items: center;
}

.form-group label.custom-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  margin-bottom: 0 !important;
}

.custom-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  background-color: transparent;
  border: 2px solid rgba(197, 160, 53, 0.5);
  border-radius: 6px;
  margin-right: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.custom-checkbox-box::after {
  content: "";
  display: none;
  width: 6px;
  height: 12px;
  border: solid var(--bg-midnight-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.custom-checkbox-label:hover .custom-checkbox-input~.custom-checkbox-box {
  border-color: var(--text-gold);
  background-color: rgba(197, 160, 53, 0.1);
}

.custom-checkbox-input:checked~.custom-checkbox-box {
  background-color: var(--text-gold);
  border-color: var(--text-gold);
  box-shadow: 0 0 15px rgba(197, 160, 53, 0.4);
}

.custom-checkbox-input:checked~.custom-checkbox-box::after {
  display: block;
}

.custom-checkbox-text {
  color: var(--light-ivory);
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  font-family: var(--font-body);
}

/* Footer */
footer {
  background-color: #00221A;
  /* Darker midnight */
  padding: 4rem 5%;
  text-align: center;
  border-top: 1px solid rgba(197, 160, 53, 0.2);
}

.footer-logo {
  font-family: var(--font-heading);
  color: var(--text-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.footer-text {
  color: rgba(253, 252, 245, 0.5);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {

  .prop-grid,
  .dest-grid {
    grid-template-columns: 1fr;
  }

  .experience-layout,
  .directory-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .partner-container-trendy {
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  .partner-pitch {
    padding: 3rem 1.5rem !important;
    width: 100% !important;
  }

  .partner-form-container {
    padding: 3rem 1.5rem !important;
    width: 100% !important;
    border-radius: 0 !important;
  }

  .product-image-container {
    padding: 2rem;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & FOOTER ALIGNMENT
   ========================================================================== */

@media screen and (max-width: 900px) {

.btn{
    padding :.1rem .5rem ;
}
  /* Typography Adjustments */
  .hero-headline {
    font-size: clamp(3rem, 10vw, 5rem) !important;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
  }

  /* Layout Spacing Adjustments */
  main {
    width: auto !important;
  }

  main,
  section {
    padding: 0 !important;
  }

  /* Set small top/bottom margin for all sections, and left/right margins for all except the form section and full-bleed hero */
  #experience,
  #roots,
  #craft,
  .destinations,
  .proposition {
    margin: 1.5rem 1rem !important;
    scroll-margin-top: 85px !important;
  }

  #partner,
  .partner-section {
    margin: 1.5rem 0 !important;
    scroll-margin-top: 85px !important;
  }

  #home,
  .hero {
    margin: 0 !important;
    padding-top: 20px !important;
    height: auto !important;
    min-height: 100vh;
    scroll-margin-top: 85px !important;
  }

  /* Navbar Spacing & Size Adjustments */
  nav {
    padding: 1rem 5% !important;
  }

  nav.scrolled {
    padding: 0.8rem 5% !important;
  }

  .nav-logo {
    height: 45px !important;
  }

  /* Overrides for inline element min-widths that cause horizontal scroll */
  .flavor-card,
  .product-center {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  /* Disable reveal animations on mobile to ensure all content is immediately visible and correctly positioned */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Remove top layer borders on mobile (navbar bottom border, mobile menu border, footer top border, partner container glowing accent line, and other internal section top borders) */
  nav,
  nav.scrolled {
    border-bottom: none !important;
  }

  .nav-links {
    border-left: none !important;
  }

  footer {
    border-top: none !important;
  }

  .partner-container-trendy::before {
    display: none !important;
  }

  .roots-text-wrapper div div,
  .parent-brand {
    border-top: none !important;
  }

  /* Our Roots Layout */
  .roots-trendy-layout {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .roots-image-wrapper {
    height: auto !important;
    min-height: auto !important;
    width: 100% !important;
    flex: none !important;
    display: flex;
    flex-direction: column;
    gap: 1.5rem !important;
    min-width: 100% !important;
  }

  .roots-image-wrapper > div:nth-child(1) {
    min-height: 300px !important;
    flex: none !important;
  }

  .roots-image-wrapper > div:nth-child(2) {
    min-height: 180px !important;
    flex: none !important;
  }

  .roots-text-wrapper {
    width: 100% !important;
    flex: none !important;
    min-width: 100% !important;
  }

  .roots-text-wrapper > div {
    padding: 2.5rem 1.5rem !important;
    background: rgba(0, 34, 26, 0.95) !important;
    border-radius: 16px !important;
  }

  /* The Craft Section & Testimonial Overflows */
  .craft-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .craft-line {
    display: none !important;
  }

  .testimonial-slider {
    padding: 2.5rem 1.5rem !important;
    margin-top: 3rem !important;
  }

  .testimonial-quote {
    font-size: 1.2rem !important;
  }

  /* Footer Alignment for Mobile/Tablet */
  .footer-top {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }

  .footer-logo {
    text-align: center !important;
  }

  .footer-contact {
    text-align: center !important;
    min-width: 100% !important;
  }

  .footer-contact p {
    justify-content: center !important;
  }
}

@media screen and (max-width: 600px) {

  /* Mobile specific overrides */
  .roots-image-wrapper {
    height: auto !important;
  }

  .roots-image-wrapper > div:nth-child(1) {
    min-height: 250px !important;
  }

  .roots-image-wrapper > div:nth-child(2) {
    min-height: 150px !important;
  }

  /* Partner With Us layout */
  .partner-container-trendy {
    padding: 2.5rem 0 !important;
  }

  .partner-form-col {
    padding-left: 0 !important;
  }

  .roots-text-wrapper > div {
    padding: 1.5rem 1rem !important;
  }

  .roots-text-wrapper h2 {
    font-size: 2rem !important;
  }

  .roots-text-wrapper h3 {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .roots-text-wrapper h4 {
    font-size: 1.15rem !important;
  }

  .roots-text-wrapper p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .roots-contact {
    padding: 1rem 0.75rem !important;
    margin-top: 1.5rem !important;
  }

  .roots-contact p {
    font-size: 0.82rem !important;
  }

  .roots-image-wrapper h2 {
    font-size: 2rem !important;
  }

  .roots-image-wrapper h3 {
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
  }

  /* Destinations & Craft */
  .dest-grid {
    gap: 1.5rem !important;
  }

  .craft-grid {
    gap: 1.5rem !important;
  }
}

/* ==========================================================================
   MOBILE HEADER AND CURSOR FIXES
   ========================================================================== */

/* Add pointer to all text elements as requested */
p, h1, h2, h3, h4, h5, h6, span, label, li, a {
  cursor: pointer !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2000;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--text-gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(0, 34, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    border-left: 1px solid rgba(197, 160, 53, 0.2);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
}

/* Tablet / Medium Screens styling overrides for Our Roots layout (901px to 1200px) */
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .roots-trendy-layout {
    gap: 2rem !important;
  }

  .roots-text-wrapper > div {
    padding: 2.5rem 1.75rem !important;
  }

  .roots-contact {
    padding: 1.2rem 1rem !important;
  }
}