/* ===========================
   MOBILE STYLESHEET
   =========================== */

/* Global adjustments */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}


/* ===== HEADER with Hamburger ===== */
header {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  position: relative;
}

.logo img {
  height: 40px;
}

/* Hide desktop nav by default */
nav ul {
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background-color: rgba(0,0,0,0.9);
  position: absolute;
  top: 60px;
  right: 15px;
  border-radius: 8px;
  z-index: 999;
}

nav ul.show {
  display: flex;
}

/* Burger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: white;
  width: 100%;
  border-radius: 2px;
}

/* CTA Button */
.cta-container {
  display: none; /* Hide on mobile for cleaner nav */
}

/* ===== HERO SECTION ===== */
.hero {
  height: 500px;
  max-width: 100%;
  padding: 40px 15px;
}

.intro-text {
  padding-left: 0;
  text-align: center;
  margin: 20px auto;
}

.intro-text h1 {
  font-size: 36px;
}

.intro-text h2 {
  font-size: 24px;
}

/* ===== GROWTH SECTION ===== */
.growth-section h2 {
  font-size: 36px;
}

.growth-container {
  flex-direction: column;
  align-items: center;
}

.growth-image img {
  width: 100%;
  max-width: 100%;
}

.growth-steps {
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 0;
}

/* ===== ICONS SECTION ===== */
.icons-container {
  flex-direction: column;
  gap: 40px;
}

.icon-item img {
  width: 80px;
  height: auto;
}

.icon-item p {
  font-size: 18px;
}

/* ===== CLIENTS SECTION - horizontal scroll ===== */
.clients-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding: 10px;
  justify-content: flex-start;
}

.client-item {
  flex: 0 0 50%;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.client-item img {
  width: 100%;
  height: auto;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
  font-size: 28px;
}

.booking-section p {
  font-size: 16px;
}

/* ===== ABOUT PAGE ===== */
.mission-vision {
  flex-direction: column;
  gap: 20px;
}

.mission h2,
.vision h2,
.about-section h2 {
  font-size: 36px;
}

.mission p,
.vision p,
.about-section p {
  font-size: 16px;
}

.founders {
  flex-direction: column;
  gap: 30px;
}

.founder img {
  max-width: 200px;
}

/* ===== IMPACT SECTION ===== */
.impact-container h2 {
  font-size: 36px;
  text-align: center;
}

.impact-container img {
  width: 100%;
  margin: 0;
}

/* ===== SERVICES on index - horizontal scroll 2 per view ===== */
.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding: 10px;
}

.service-item {
  flex: 0 0 50%;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.service-item img {
  width: 100%;
  height: auto;
}

/* ===== APPROACH SECTION ===== */
.approach {
  margin: 20px;
}

.approach-item h2 {
  font-size: 18px;
}

.approach-item p {
  font-size: 14px;
}

/* ===== ACHIEVEMENT MAP ===== */
.achievement-map {
  flex-direction: column;
  margin-left: 0;
}

.text-container,
.image-container {
  width: 100%;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-container {
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.contact-left,
.contact-right {
  max-width: 100%;
}

.contact-left h1 {
  font-size: 32px;
}

.contact-left h2 {
  font-size: 24px;
}

.contact-left .subtext {
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer-container {
  flex-direction: column;
  text-align: center;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section img {
  max-width: 80%;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  width: 50px;
  height: 50px;
}

.whatsapp-float img {
  width: 25px;
}
