html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --orange: #ff7a00;
  --yellow: #ffd60a;
  --gradient: linear-gradient(135deg, #ff7a00, #ffd60a);
  --dark: #1e1e2f;
  --light: #fef9f0;
  --white: #ffffff;
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 30px 35px -12px rgba(255, 122, 0, 0.25);
  --radius-card: 28px;
  --radius-btn: 60px;
  --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* STICKY NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: var(--transition);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.12);
  background: white;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.logo img {
  height: 80px;
  width: 80px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--orange);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--orange);
  position: relative;
  z-index: 9999;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100dvh;
    width: 280px;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 10002;
    padding: 5rem 0 2rem 0;
    display: flex;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    text-align: left;
    width: 100%;
    display: block;
    color: #1e1e2f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s;
    position: relative;
    z-index: 10003;
    box-sizing: border-box;
    letter-spacing: 0.3px;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: linear-gradient(135deg, #ff7a00, #ffd60a);
    color: #ffffff;
  }

  .nav-links a:first-child {
    border-top: 1px solid #f0f0f0;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section {
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  background: var(--gradient);
  color: white;
  box-shadow: 0 6px 14px rgba(255, 122, 0, 0.3);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  box-shadow: none;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 22px rgba(255, 122, 0, 0.45);
  background: linear-gradient(135deg, #ff6b00, #ffc300);
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 240, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.btn:hover::after {
  width: 280px;
  height: 280px;
}

/* HERO SLIDER - LIGHTER TRANSPARENT OVERLAY */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90dvh;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.35), rgba(255, 214, 10, 0.3));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 1.5rem;
  color: white;
  animation: fadeSlideUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 12;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 8px white;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
  }

  .service-card {
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-slider {
    height: 70vh;
    min-height: 400px;
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .feature-card {
    padding: 1.5rem;
  }

  .contact-wrapper {
    padding: 1.5rem;
  }

  footer .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 1rem;
  font-weight: bold;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 0.75rem;
  color: var(--orange);
}

.service-features {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "🕊️";
  font-size: 0.9rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: white;
  padding: 1.8rem;
  border-radius: var(--radius-card);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-quote {
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.3);
}

.lightbox-video {
  max-width: 90%;
  max-height: 85%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.3);
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 45px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.close-lightbox:hover {
  color: var(--orange);
  transform: scale(1.1);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: inherit;
  font-size: 16px;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

@media (max-width: 700px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

footer {
  background: var(--gradient);
  padding: 2.5rem 1.5rem;
  border-radius: 2rem 2rem 0 0;
  color: white;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.social-icons a {
  color: white;
  font-size: 1.8rem;
  margin: 0 0.7rem;
  transition: 0.2s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  color: #1e1e2f;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--orange);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
}