/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #00a8e8;
  --accent-color: #00d4ff;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --text-color: #333333;
  --border-radius: 12px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Image responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive typography */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

/* ===== NAVBAR / HEADER ===== */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  padding: 0.8rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white) !important;
  padding: clamp(0.5rem, 1.5vw, 0.7rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: clamp(600px, 80vh, 800px);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.6);
}

.slide-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  animation: slideInUp 0.8s ease;
  padding: clamp(1rem, 5vw, 2rem);
}

.slide-content h2 {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  margin-bottom: clamp(0.5rem, 3vw, 1rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: clamp(0.85rem, 3vw, 1.3rem);
  margin-bottom: clamp(1rem, 4vw, 2rem);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: clamp(0.55rem, 2vw, 0.9rem) clamp(1rem, 3vw, 2rem);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SERVICES SECTION ===== */
.services-section,
.why-choose-section,
.reviews-section,
.contact-section {
  padding: clamp(2rem, 8vw, 5rem) clamp(0.8rem, 2vw, 2rem);
  background: var(--light-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  text-align: center;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: #666;
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 30vw, 320px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.service-image {
  width: 100%;
  height: clamp(120px, 20vw, 150px);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 6vw, 3rem);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.learn-more-btn {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.learn-more-btn:hover {
  color: var(--secondary-color);
  gap: 1rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 25vw, 280px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.why-choose-card {
  background: var(--light-color);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.why-choose-card:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.why-choose-icon {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.why-choose-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 0.8rem;
}

.why-choose-card p {
  font-size: clamp(0.85rem, 2vw, 1rem);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: linear-gradient(135deg, var(--light-color), #e8f4ff);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}

.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
}

.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--dark-color);
}

.review-title {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--dark-color);
}

.contact-item p {
  color: #666;
  text-decoration: none;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.submit-btn {
  flex: 1;
  min-width: 150px;
}

.whatsapp-btn,
.call-btn {
  flex: 1;
  min-width: 150px;
  background: var(--secondary-color);
  padding: 0.9rem 2rem;
}

.whatsapp-btn:hover,
.call-btn:hover {
  background: #0088cc;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

/* ===== FOOTER CONTACT SECTION ===== */
.footer-contact-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-contact-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 0.7rem;
}

.footer-contact-section a,
.footer-contact-section a:link,
.footer-contact-section a:visited,
.footer-contact-section a:active {
  color: #ccc !important;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-section a:hover {
  color: var(--accent-color) !important;
  text-decoration: underline;
}

/* Style ALL footer links */
.footer-section a {
  color: #ccc !important;
  text-decoration: none;
  transition: var(--transition);
}

/* Hover effect */
.footer-section a:hover {
  color: var(--accent-color) !important;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--secondary-color);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #ccc;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.mv-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.mv-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.team-member {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.3rem;
}

.member-role {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.trust-badge {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.trust-badge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trust-badge h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.trust-badge p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== SERVICES PAGE ===== */
.services-detail {
  padding: 3rem 2rem;
  background: var(--light-color);
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-detail-image {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  padding: 2rem;
}

.service-detail-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-detail-content h4 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 1rem;
}

.service-detail-content li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #666;
}

.service-detail-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.pricing-info {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.pricing-info p {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.faq-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #eee;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  background: var(--light-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
}

.faq-question:hover {
  background: #e0e8f5;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  color: #666;
  line-height: 1.8;
}

/* ===== BOOKING PAGE ===== */
.booking-container {
  max-width: 700px;
  margin: 3rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.booking-container h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.success-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2000;
}

.success-popup.show {
  display: block;
  animation: popupIn 0.3s ease;
}

.success-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

.success-popup-overlay.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.success-popup h2 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.success-popup p {
  color: #666;
  margin-bottom: 1.5rem;
}

.close-popup-btn {
  background: var(--primary-color);
  color: var(--white);
}

@keyframes popupIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* ===== JOIN US PAGE ===== */
.join-us-container {
  max-width: 900px;
  margin: 3rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.join-us-container h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.join-us-description {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.join-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-item {
  background: var(--light-color);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
}

.noc-note {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  color: #856404;
}

.join-us-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.file-upload-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-upload-input {
  padding: 1rem;
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  background: #f0f7ff;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.file-upload-input:hover {
  background: #e0f0ff;
}

.file-upload-input input {
  display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
  .navbar-container,
  .container {
    max-width: 1400px;
  }

  .section-title {
    font-size: 3rem;
  }

  .slide-content h2 {
    font-size: 4rem;
  }

  .slide-content p {
    font-size: 1.5rem;
  }

  .service-card {
    margin: 0 10px;
  }
}

/* Large Screens (1200px - 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
  .services-grid,
  .why-choose-grid,
  .footer-content,
  .team-grid,
  .trust-badges {
    gap: 2.5rem;
  }
}

/* Tablets & Medium Devices (769px - 1199px) */
@media (max-width: 1199px) {
  .navbar-container {
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .service-card {
    margin: 0;
  }

  .slide-content h2 {
    font-size: 3rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-detail-image {
    height: 250px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .hero-section {
    height: 500px;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* Small Tablets & Large Phones (600px - 768px) */
@media (max-width: 768px) {
  /* Navbar */
  .hamburger {
    display: flex;
  }

  .navbar-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem 2rem;
    gap: 0.8rem;
    box-shadow: var(--box-shadow);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 0.7rem 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Hero Section */
  .hero-section {
    height: 400px;
  }

  .slide-content {
    padding: 0 1rem;
  }

  .slide-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .slide-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .slide-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .slide-buttons .btn {
    width: 100%;
  }

  /* Sections */
  .services-section,
  .why-choose-section,
  .reviews-section,
  .contact-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .why-choose-card {
    padding: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  /* Service Cards */
  .service-card {
    margin: 0;
  }

  .service-image {
    height: 180px;
    font-size: 2.5rem;
  }

  .service-content {
    padding: 1.2rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  /* Service Detail */
  .service-detail-card {
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
  }

  .service-detail-image {
    height: 200px;
    font-size: 2rem;
  }

  .service-detail-content {
    padding: 1.5rem;
  }

  .service-detail-content h3 {
    font-size: 1.5rem;
  }

  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* About Page */
  .about-hero {
    padding: 3rem 1rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .mv-card {
    padding: 1.5rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  /* Buttons */
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Forms */
  .booking-container,
  .join-us-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .join-categories {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .category-item {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  /* Testimonials */
  .testimonials-slider {
    margin: 1rem 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto 0.8rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 1.2rem;
  }
}

/* Small Phones (481px - 599px) */
@media (max-width: 599px) {
  .navbar-container {
    padding: 0 0.8rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .nav-menu {
    padding: 0.8rem 1.5rem;
  }

  .nav-menu a {
    font-size: 0.95rem;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  /* Hero */
  .hero-section {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .slide-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .slide-buttons {
    gap: 0.6rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .slider-dots {
    bottom: 15px;
    gap: 6px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* Sections */
  .services-section,
  .why-choose-section,
  .reviews-section,
  .contact-section {
    padding: 2rem 0.8rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  /* Cards */
  .service-image {
    height: 150px;
    font-size: 2rem;
  }

  .service-content {
    padding: 1rem;
  }

  .service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .service-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .why-choose-card {
    padding: 1.2rem;
  }

  .why-choose-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .why-choose-card h3 {
    font-size: 1rem;
  }

  .why-choose-card p {
    font-size: 0.85rem;
  }

  /* Forms */
  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.7rem 0.8rem;
    font-size: 0.95rem;
  }

  .booking-container,
  .join-us-container {
    margin: 1.5rem 0.8rem;
    padding: 1.2rem;
  }

  .booking-container h1,
  .join-us-container h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Contact */
  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contact-item h4 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* About Page */
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .about-content {
    padding: 1.5rem 0.8rem;
  }

  .about-section h2 {
    font-size: 1.3rem;
  }

  /* Testimonials */
  .review-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  /* FAQ */
  .faq-section h2 {
    font-size: 1.4rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 1rem;
    font-size: 0.85rem;
  }
}

/* Extra Small Phones (320px - 480px) */
@media (max-width: 480px) {
  /* Navbar */
  .navbar-container {
    padding: 0 0.8rem;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .logo-icon {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }

  .hamburger {
    gap: 4px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  /* Hero */
  .hero-section {
    height: 300px;
  }

  .slide-content {
    padding: 0 0.8rem;
  }

  .slide-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .slide-content p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .slide-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .slider-dots {
    bottom: 10px;
    gap: 5px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  /* Sections */
  .services-section,
  .why-choose-section,
  .reviews-section,
  .contact-section {
    padding: 1.5rem 0.8rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 0 0.3rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  /* Cards */
  .services-grid {
    gap: 1rem;
  }

  .service-image {
    height: 140px;
    font-size: 1.8rem;
  }

  .service-content {
    padding: 0.9rem;
  }

  .service-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .service-content p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .learn-more-btn {
    font-size: 0.8rem;
  }

  .why-choose-grid {
    gap: 1rem;
  }

  .why-choose-card {
    padding: 1rem;
  }

  .why-choose-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .why-choose-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .why-choose-card p {
    font-size: 0.8rem;
  }

  /* Forms */
  .form-group {
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.6rem 0.7rem;
    font-size: 0.9rem;
  }

  .form-row {
    gap: 0.7rem;
  }

  /* Containers */
  .booking-container,
  .join-us-container {
    margin: 1rem 0.5rem;
    padding: 1rem;
  }

  .booking-container h1,
  .join-us-container h1 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  /* Contact */
  .contact-info {
    gap: 1rem;
  }

  .contact-item {
    gap: 0.8rem;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .contact-item p {
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-container {
    padding: 0 0.5rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-section h3 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .footer-section p {
    font-size: 0.8rem;
  }

  .footer-section ul li {
    margin-bottom: 0.4rem;
  }

  .social-icons {
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.75rem;
  }

  /* About Page */
  .about-hero h1 {
    font-size: 1.4rem;
  }

  .about-content {
    padding: 1.2rem 0.8rem;
  }

  .about-section h2 {
    font-size: 1.1rem;
  }

  .about-section p {
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.2rem;
  }

  .review-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin: 0 auto 0.6rem;
  }

  .review-stars {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .review-text {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .review-author {
    font-size: 0.9rem;
  }

  .review-title {
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq-section {
    margin-top: 2rem;
  }

  .faq-section h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .faq-item {
    margin-bottom: 0.8rem;
  }

  .faq-question {
    padding: 0.9rem;
    font-size: 0.85rem;
  }

  .faq-answer p {
    padding: 0.9rem;
    font-size: 0.8rem;
  }

  /* Service Detail */
  .service-detail-image {
    height: 150px;
    font-size: 1.5rem;
  }

  .service-detail-content {
    padding: 1rem;
  }

  .service-detail-content h3 {
    font-size: 1.2rem;
  }

  .service-detail-content h4 {
    font-size: 1.05rem;
  }

  /* Join Categories */
  .join-categories {
    gap: 0.6rem;
  }

  .category-item {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

  .join-us-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.py-3 {
  padding: 3rem 0;
}

.hidden {
  display: none;
}

.error-message {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.success-message {
  color: #4caf50;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.checkbox-group {
    display: inline;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    display: inline-block;
    padding-left: 10px;
    width: auto;
}