/* ===============================
   MOBILE-FIRST BASE STYLES - LIGHT MODE ONLY
================================ */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #ffffff !important;
  color: #111827 !important;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff !important;
  color: #111827 !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Hero Background - Mobile Optimized */
.hero-bg {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 768px) {
  .hero-bg {
    display: none; /* Hide background image on mobile */
  }
  /* White background for mobile hero */
  section.relative.min-h-screen {
    background: #ffffff !important;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  /* Make text dark on mobile since background is white */
  section.relative.min-h-screen .hero-title {
    color: #1f2937 !important;
  }
  section.relative.min-h-screen .relative.text-center {
    color: #1f2937 !important;
  }
  /* Hide the dark overlay on mobile */
  section.relative.min-h-screen .absolute.bg-gradient-to-b {
    display: none;
  }
}
}
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #e11d48;
  width: 0%;
  z-index: 1000;
}
.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  border: 1px solid #e5e7eb;
  color: #111827;
}
@media (min-width: 640px) {
  .card {
    padding: 2rem;
  }
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.modal-content {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 15px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 640px) {
  .modal-content {
    padding: 2rem;
  }
}
.input {
  width: 100%;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s;
}
.input:focus {
  outline: none;
  border-color: #e11d48;
}
.close {
  cursor: pointer;
  float: right;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-primary);
}
/* WhatsApp Button - Mobile Optimized */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-float:active {
  transform: scale(0.95);
}
@media (max-width: 640px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 16px;
    right: 16px;
  }
}
/* Testimonial Swiper */
.testimonialSwiper .swiper-pagination-bullet {
  background: #e11d48;
}
/* Success/Error Messages */
.success-message {
  color: #10b981;
  font-weight: 600;
  padding: 12px;
  background: #d1fae5;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
}
.error-message {
  color: #ef4444;
  font-weight: 600;
  padding: 12px;
  background: #fee2e2;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
}
/* Counter Animation */
.counter {
  transition: all 0.5s ease;
}
/* ===============================
   EXPERIENCE GALLERY (UNIQUE)
================================ */
.experience-gallery {
  background: linear-gradient(180deg, #ffffff, #fef2f2);
}
.gallery-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: -10px;
  margin-bottom: 50px;
}
@media (min-width: 640px) {
  .gallery-subtitle {
    font-size: 16px;
  }
}
.experience-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  perspective: 1200px;
}
@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Card */
.experience-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
  height: 300px;
}
@media (min-width: 640px) {
  .experience-card {
    height: 350px;
  }
}
/* Image */
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
/* Info overlay */
.experience-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (min-width: 640px) {
  .experience-info {
    padding: 25px;
  }
}
.experience-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
@media (min-width: 640px) {
  .experience-info h3 {
    font-size: 20px;
  }
}
.experience-info span {
  font-size: 13px;
  opacity: 0.85;
}
@media (min-width: 640px) {
  .experience-info span {
    font-size: 14px;
  }
}
/* Hover Interaction */
@media (min-width: 768px) {
  .experience-card:hover {
    transform: rotateY(-6deg) rotateX(4deg) scale(1.04);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  }
  .experience-card:hover img {
    transform: scale(1.1);
  }
}
.experience-card:hover .experience-info,
.experience-card:active .experience-info {
  opacity: 1;
}
/* Mobile - Always show info */
@media (max-width: 767px) {
  .experience-info {
    opacity: 1;
    background: rgba(0,0,0,0.5);
  }
}
/* ===============================
   MOBILE RESPONSIVE UTILITIES
================================ */
/* Touch-friendly buttons */
button, .btn, a.btn {
  min-height: 48px;
  min-width: 48px;
  touch-action: manipulation;
}
/* Prevent text size adjustment on mobile */
@media (max-width: 768px) {
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}
/* Safe area for notched devices */
@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}
/* Smooth scrolling for mobile */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

