* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

#header.scrolled {
  background: transparent;
}

/* Avoid double dark layers: when scrolled, let header background show and keep top bar transparent */
#header.scrolled .top-bar {
  background: transparent;
}

.top-bar {
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.top-bar .contact-info .phone,
.top-bar .contact-info .email {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar .social-links {
  display: flex;
  gap: 10px;
}

.top-bar .social-link {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.top-bar .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.main-nav {
  background: transparent;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand .logo {
  height: 40px;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 30px;
}

.desktop-nav .nav-item {
  position: relative;
  margin-bottom: 0;
}

.desktop-nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.desktop-nav .nav-link:hover {
  color: #ff6b35;
  background: none;
}

.desktop-nav .dropdown-toggle::after {
  content: none;
}

.desktop-nav .dropdown-toggle i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.desktop-nav .dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.desktop-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 20px;
  min-width: 500px;
  display: none;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.desktop-nav .dropdown:hover .desktop-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-dropdown-menu .dropdown-section h4 {
  color: #ff6b35;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 5px;
}

.desktop-dropdown-menu .dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-dropdown-menu .dropdown-section li {
  margin-bottom: 8px;
}

.desktop-dropdown-menu .dropdown-section a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  display: block;
  transition: all 0.3s ease;
}

.desktop-dropdown-menu .dropdown-section a:hover {
  color: #ff6b35;
  padding-left: 10px;
}

/* Hotel dropdown specific styling */
.hotel-dropdown {
  min-width: 200px;
  grid-template-columns: 1fr;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1003;
  padding: 10px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  border: none;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

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

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

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

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 1002;
  display: none;
  justify-content: flex-start;
  padding: 60px 20px 20px;
  overflow-y: auto;
  backdrop-filter: blur(5px);
}

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

.nav-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 107, 53, 0.2);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 1004;
  transition: all 0.3s ease;
}

.nav-close-btn:hover {
  background: rgba(255, 107, 53, 0.4);
  transform: scale(1.1);
}

.nav-close-btn:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

.nav-menu {
  width: 100%;
}

.nav-list {
  list-style: none;
  padding: 0;
}

.nav-item {
  margin-bottom: 15px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  transition: background 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 107, 53, 0.3);
  border-radius: 6px;
}

.dropdown .dropdown-menu {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 10px;
  padding: 15px;
  width: 100%;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-section {
  margin-bottom: 15px;
}

.dropdown-section h4 {
  color: #ff6b35;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ff6b35;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
}

.dropdown-section ul li {
  margin-bottom: 8px;
}

.dropdown-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-section ul li a:hover {
  background: rgba(255, 107, 53, 0.2);
  border-radius: 4px;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 100%;
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff6b35;
  transform: scale(1.2);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: #ff6b35;
  transform: scale(1.1);
}

/* Experience Section */
.experience-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-header {
  flex: 0 0 300px;
  background: #2c3e50;
  padding: 30px 25px;
  color: #fff;
  text-align: center;
}

.experience-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.experience-features {
  flex: 1;
  display: flex;
  gap: 30px;
}

.feature-box {
  flex: 1;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.feature-box:hover .feature-icon {
  background: #e55a2b;
  transform: scale(1.05);
}

.feature-content h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content p {
  color: #666;
  line-height: 1.4;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  min-height: 500px;
  background: url("../images/Awesome Gallery/BACKGROUND-ag.jpg") center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.gallery-left {
  flex: 0 0 400px;
  color: #fff;
}

.gallery-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.gallery-right {
  flex: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 500px;
  margin-left: auto;
}

.gallery-button {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.gallery-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Display control for mobile/desktop buttons */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-block !important;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Itinerary Section */
.itinerary-section {
  min-height: 500px;
  background: url("../images/Check Our Itinerary/Check Our Itinerary Background.jpg")
    center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.itinerary-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.itinerary-left {
  flex: 0 0 400px;
  color: #fff;
}

.itinerary-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.itinerary-right {
  flex: 1;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 500px;
  margin-left: auto;
}

.itinerary-button {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.itinerary-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.itinerary-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.itinerary-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.itinerary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.itinerary-item:hover img {
  transform: scale(1.1);
}

.itinerary-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.itinerary-overlay i {
  font-size: 2rem;
  color: #fff;
}

.itinerary-item:hover .itinerary-overlay {
  opacity: 1;
}

.itinerary-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 107, 53, 0.8);
  transform: scale(1.1);
}

#lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.lightbox-caption {
  padding: 20px;
  background: #fff;
  text-align: center;
}

.lightbox-caption h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 107, 53, 0.8);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.testimonials-slider {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  min-height: 260px; /* ensure space reserved when items absolutely positioned */
}

.testimonial-track {
  display: flex; /* initial layout before JS enhancement */
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-item {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  opacity: 1;
}

/* Testimonial slider fix: layer items instead of shifting oversized track */
.testimonial-track {
  position: relative;
  display: flex;
}
.testimonial-item {
  position: relative;
  min-width: 100%;
  display: block;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
  flex: 0 0 100px;
}

.testimonial-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff6b35;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-text h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

/* Services Section */
.services-section {
  padding: 30px 0;
  background: #fff;
}

.services-title {
  text-align: center;
  font-size: 1.8rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
  padding: 20px 15px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.6rem;
  color: #fff;
}

.service-item:hover .service-icon {
  background: #e55a2b;
  transform: scale(1.05);
}

.service-item h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-item p {
  color: #666;
  line-height: 1.4;
  font-size: 0.9rem;
}

#footer {
  background: #2c3e50;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #ff6b35;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  line-height: 1.8;
  color: #bdc3c7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.contact-item i {
  color: #ff6b35;
  width: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #ff6b35;
  padding-left: 5px;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-media .social-link {
  background: #34495e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-media .social-link:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.google-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #34495e;
  padding: 15px;
  border-radius: 8px;
}

.google-logo {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.stars {
  color: #ffd700;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
}

.environmental-message {
  background: #27ae60;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.environmental-message p {
  margin: 0;
  font-size: 16px;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #bdc3c7;
  font-size: 14px;
}

.footer-copyright a {
  color: #ff6b35;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

.google-reviews-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.google-reviews-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

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

.hero-title,
.hero-subtitle,
.cta-button {
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  animation-delay: 0.2s;
}

.cta-button {
  animation-delay: 0.4s;
}
