/* --- Typography --- */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #121212;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em 0;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #00bfae;
  margin-bottom: 2rem;
}

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  padding: 4rem 0 3rem 0;
}

/* --- Navbar --- */
.navbar {
  background: #1e1e1e;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.7rem;
  color: #00bfae;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu li a:hover {
  color: #ff9800;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #00bfae;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}
  @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
  }

.hero-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, #121212 60%, #1e1e1e 100%);
  opacity: 0.85;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1.2s;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75em 2em;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-accent {
  background: linear-gradient(90deg, #00bfae 60%, #ff9800 100%);
  color: #121212;
  box-shadow: 0 2px 8px rgba(0,191,174,0.15);
}
.btn-accent:hover {
  background: linear-gradient(90deg, #ff9800 60%, #00bfae 100%);
  color: #fff;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.card {
  background: #1e1e1e;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-body {
  padding: 1.2rem;
}
.card h3 {
  color: #00bfae;
  margin-bottom: 0.5rem;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,191,174,0.18);
}

/* --- Services / Packages --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service {
  background: #181818;
  border-radius: 14px;
  padding: 2rem 1.2rem;
  text-align: center;
  color: #f5f5f5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service i {
  font-size: 2.2rem;
  color: #00bfae;
  margin-bottom: 1rem;
}
.service h4 {
  margin-bottom: 0.5rem;
  color: #ff9800;
}
.service:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 18px rgba(255,152,0,0.13);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: #181818;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  color: #f5f5f5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  position: relative;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #00bfae;
}

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  padding: 0.7em 1.2em;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #232323;
  color: #f5f5f5;
  width: 250px;
  transition: box-shadow 0.2s;
}
.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px #00bfae;
}
.newsletter-form .form-message {
  display: block;
  margin-top: 0.5rem;
  color: #ff9800;
  font-size: 0.98rem;
  min-height: 1.2em;
}

/* --- Scroll to Top Button --- */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #00bfae;
  color: #121212;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,191,174,0.18);
  z-index: 200;
  transition: background 0.2s, color 0.2s;
}
#scrollTopBtn:hover {
  background: #ff9800;
  color: #fff;
}

/* --- Footer --- */
.footer {
  background: #181818;
  color: #bdbdbd;
  padding: 2rem 0 0.5rem 0;
  margin-top: 3rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo {
  font-size: 1.4rem;
  color: #00bfae;
  font-weight: bold;
  text-decoration: none;
}
.footer-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.footer-nav li a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav li a:hover {
  color: #ff9800;
}
.footer-social a {
  color: #00bfae;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ff9800;
}
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #757575;
  margin-top: 1.5rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .nav-menu {
    position: absolute;
    top: 64px;
    right: 0;
    background: #232323;
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    border-radius: 0 0 0 14px;
    overflow: hidden;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    border-bottom: 1px solid #222;
    padding: 1rem 0;
    text-align: center;
    padding-right: 1.5rem;
  }
  .nav-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 2.5rem 0 2rem 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .card img {
    height: 130px;
  }
  .newsletter-form input[type="email"] {
    width: 100%;
    min-width: 0;
  }
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-toggle i {
  margin-left: 4px;
  transition: transform 0.2s;
}
.dropdown-toggle {
  pointer-events: none;
  cursor: default;
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  display: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show dropdown on hover (desktop) or when .active (mobile) */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #fff;
  display: block;
  transition: color 0.2s;
}

.dropdown-menu li a:hover {
  color: #00bfae;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background: #252525;
    box-shadow: none;
    padding-left: 20px;
  }
}

/* --- Showcase Styles --- */
.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse .showcase-content {
  direction: ltr;
}

.showcase-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.showcase-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .showcase-image {
    height: 300px;
  }
}
