/* Base Styles */
:root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #ffd700;
  --accent-hover: #ffc000;
  --text-color: #f3f4f6;
  --light-gray: #1e1e1e;
  --white: #121212;
  --shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 5rem 0;
}

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

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Header */
.header {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  padding: 8px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  flex-wrap: nowrap; /* Prevent wrapping */
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
  height: 65px; /* Increased from 50px */
}
.logo-img {
  height: 100%;
  width: auto;
  max-height: 65px; /* Increased from 50px */
  object-fit: contain;
  transition: all 0.3s ease;
}
.logo-text {
  background: linear-gradient(90deg, #8550b8, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem; /* Increased from 1.6rem */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  transition: all 0.3s ease;
}
.logo:hover {
  transform: translateY(-2px);
}
.logo:hover .logo-text {
  background: linear-gradient(90deg, #9B30FF, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  transform: scale(1.02);
}
/* Remove old logo icon styles */
.logo-icon,
.logo-plane,
.logo-ring {
  display: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta .call-now-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-cta .call-now-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 8px;
  gap: 5px;
  z-index: 1002;
  margin: 0;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Responsive Navbar */
@media (max-width: 992px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding-right: 80px; /* Space for hamburger menu */
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 100px); /* Prevent overlap with hamburger */
    padding-right: 10px;
    gap: 0; /* Remove gap since text is hidden */
  }

  .logo-text {
    display: none; /* Hide logo text on mobile, show only logo image */
  }

  .hamburger {
    display: flex !important;
    order: 3;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 1002;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 8px;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--accent-color);
  }

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

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--accent-color);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 20px 0;
    margin: 0;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 18px 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .nav-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--accent-color);
    padding-left: 35px;
  }

  .nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-cta .call-now-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Animation for logo ring */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.floating-call-btn {
  animation: pulse 2s infinite;
}

.floating-call-btn:hover {
  animation: none;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  color: white;
  overflow: hidden;
  background-color: #000;
  margin: 0 !important;
  padding: 0;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden; /* Fix for webkit rendering */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  font-size: 3.5rem;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
}

.hero .subheadline {
  font-size: 1.4rem;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  max-width: 800px;
  font-weight: 400;
}

.cta-buttons {
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px 0;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
  margin-right: 10px;
}

.cta-note {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
  margin-right: 8px;
  color: var(--accent-color);
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 0;
  margin: 0;
  display: block;
}

.dot:hover,
.dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero .subheadline {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }

  .trust-badges {
    gap: 10px;
  }

  .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    height: auto;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero .subheadline {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .subheadline {
    font-size: 1rem;
  }

  .slider-dots {
    bottom: 20px;
  }

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

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 5px auto;
  }
}

/* CTA Buttons */
.cta-buttons {
  margin: 30px 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: var(--accent-color);
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.cta-button i {
  margin-right: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.cta-button.accent {
  background: #e74c3c;
  color: white;
}

.cta-note {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
  margin-right: 8px;
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero .subheadline {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .slider-dots {
    bottom: 20px;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.badge i {
  margin-right: 8px;
  color: var(--accent-color);
}

/* Destinations Section */
.destinations-section {
  padding: 100px 0;
  background-color: #0a0a0a;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.destination-card {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.destination-flag {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.destination-card h3 {
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  color: var(--accent-color);
  font-weight: 700;
}

.destination-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destination-list li {
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.destination-list li:last-child {
  border-bottom: none;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.destinations-section .container {
  position: relative;
  z-index: 2;
}

.destinations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.destination-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--accent-color);
}

.destination-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
}

.destination-flag {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destination-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  font-size: 1rem;
}

.destination-list li:last-child {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }
}

.destinations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  animation: slideIn 3s infinite;
}

.destinations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.destination-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
  border-color: var(--accent-color);
}

.destination-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
}

.destination-flag {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.destination-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.destination-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destination-list li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
}

.destination-list li:last-child {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--accent-color);
  }
  50% {
    box-shadow: 0 0 20px var(--accent-color);
  }
  100% {
    box-shadow: 0 0 5px var(--accent-color);
  }
}

.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
 
  width: 100%;
  z-index: 1;
  background-color: #000; /* Fallback background */
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity, visibility;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  margin: 40px 0;
}

.cta-note {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
  color: var(--accent-color);
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

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

.dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .subheadline {
    font-size: 1.2rem;
  }

  .badge {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .subheadline {
    font-size: 1.1rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .slider-dots {
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .subheadline {
    font-size: 1rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
    width: auto;
    text-align: center;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.9) 0%,
    rgba(0, 64, 128, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subheadline {
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: var(--black);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--black);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-color)
  );
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 215, 0, 0.4);
  color: var(--black);
}

.cta-button:hover::before {
  opacity: 1;
  transform: scale(1);
  animation: glow 2s infinite;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: #f8f8f8;
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* Services Section Heading */
.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #ffd700 !important; /* Ensures yellow color is applied */
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.service-card {
  background: #333; /* Darker background for better contrast with white text */
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  color: #fff; /* Ensures all text in the card is white by default */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  z-index: -1;
  transition: var(--transition);
  transform: scaleX(0);
  transform-origin: right;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
  border-color: var(--accent-color);
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-color);
  transition: var(--transition);
}

.service-card:hover .icon {
  background: var(--accent-color);
  color: #000;
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  /* Added to ensure visibility */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card p {
  color: #eee; /* Lightened for better contrast */
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.service-btn:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Why Call Section */
.why-call {
  padding: 100px 0;
  background-color: #333;
  position: relative;
  overflow: visible;
  z-index: 2;
  color: #fff;
}

.why-call h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #ffd700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.benefit {
  text-align: center;
  padding: 40px 25px;
  background: #444;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  color: #fff;
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: right;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
  border-color: var(--accent-color);
}

.benefit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.benefit i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.benefit:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #fff;
}

.benefit h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.benefit h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit:hover h3::after {
  width: 80px;
  background: #fff;
}

.benefit p {
  color: #eee;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}

.benefit:hover p {
  color: #333;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Add a subtle pattern overlay to the section */
.why-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.02) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  z-index: 1;
  pointer-events: none;
}

/* Animation for sections */
.animate-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Ensure sections remain visible after animation */
.destinations-section.animate-section {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  animation: none !important;
}

/* Keyframes for fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in animation to destination cards */
.destinations-grid {
  perspective: 1000px;
}

.destination-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Stagger the animation for each card */
.destination-card:nth-child(1) {
  animation-delay: 0.1s;
}
.destination-card:nth-child(2) {
  animation-delay: 0.2s;
}
.destination-card:nth-child(3) {
  animation-delay: 0.3s;
}
.destination-card:nth-child(4) {
  animation-delay: 0.4s;
}
.destination-card:nth-child(5) {
  animation-delay: 0.5s;
}
.destination-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Ensure all service cards are visible by default */
.service-card,
.benefit {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Airlines Section */
.airlines-showcase {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.airlines-showcase .container {
  position: relative;
  z-index: 2;
}

.airlines-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.airline-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
  align-items: center;
  justify-items: center;
}

.airline-logo-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: auto;
  min-height: 80px;
  border: 1px solid #eee;
  width: 110%;
  box-sizing: border-box;
}

.airline-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.airline-name {
  font-size: 1.05rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 0;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .airline-logos {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
  }

  .airline-logo-item {
    padding: 15px 20px;
  }

  .airline-name {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .airline-logos {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 30px auto 0;
  }

  .airline-logo-item {
    padding: 15px 20px;
    min-height: 70px;
  }

  .airline-logo-item img {
    width: 40px;
    height: 28px;
    margin-right: 15px;
  }

  .airline-name {
    font-size: 0.95rem;
  }
}

/* Ensure text is always visible and properly aligned */
.airline-name {
  color: #333 !important;
  font-weight: 600 !important;
  white-space: normal !important;
  text-overflow: unset !important;
  overflow: visible !important;
  text-align: center !important;
}
.airlines-showcase {
  padding: 100px 0;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.airlines-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.airline-card {
  background: #111;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.airline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
  border-color: var(--accent-color);
}

.airline-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(100%) brightness(0.8);
  transition: var(--transition);
}

.airline-card:hover .airline-logo {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.airline-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.airline-phone {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.airline-phone:hover {
  color: #fff;
  text-decoration: underline;
}

.airline-phone i {
  font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .services-grid,
  .benefits,
  .airlines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services h2,
  .why-call h2,
  .airlines-showcase h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services,
  .why-call,
  .airlines-showcase {
    padding: 60px 0;
  }

  .services-grid,
  .benefits,
  .airlines-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .services h2,
  .why-call h2,
  .airlines-showcase h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .service-card,
  .benefit,
  .airline-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .services h2,
  .why-call h2,
  .airlines-showcase h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
}
.services {
  padding: var(--section-padding);
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  animation: slideIn 3s infinite;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #ffd700 !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Floating Call Button */
/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #4b4b4b);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.floating-call-btn i {
  font-size: 24px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.floating-call-btn span {
  font-size: 9px;
  font-weight: 600;
  display: block;
  line-height: 1.1;
  text-align: center;
}

.floating-call-btn:hover {
  transform: scale(1.1) translateZ(0);
  background: linear-gradient(135deg, #ffd700, #ffd700);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: none;
}

.floating-call-btn:active {
  transform: scale(0.95) translateZ(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(153, 175, 76, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-call-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .floating-call-btn i {
    font-size: 20px;
  }

  .floating-call-btn span {
    font-size: 8px;
  }
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.contact-section p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
  transition: opacity 0.3s ease;
}

.cta-button.primary {
  color: white;
}

.cta-button.secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary::before {
  background: white;
}

.cta-button.secondary:hover {
  color: white;
  border-color: var(--secondary-color);
}

.cta-button.secondary:hover::before {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.cta-button i {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(3px);
}

.or-divider {
  position: relative;
  margin: 0 15px;
  color: #777;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Navigation Link Hover Effects */
.nav-link {
  position: relative;
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .subheadline {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .benefits {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .floating-call-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .floating-call-btn i {
    font-size: 20px;
  }

  .floating-call-btn span {
    font-size: 8px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .subheadline {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 14px 28px;
  }

  .call-now-btn span {
    display: none;
  }

  .call-now-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .call-now-btn i {
    margin: 0;
  }
}

/* ===== Footer Styles ===== */
footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  padding: 0 15px;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
  font-size: 0.95rem;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  color: var(--accent-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #ddd;
  font-size: 0.95rem;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
    padding: 0 10px;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .social-links {
    justify-content: center;
  }
}
