/* ====================================
   Hikayat Al Sahra Tourism LLC
   Custom Stylesheet
   ==================================== */

/* CSS Variables */
:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --accent-orange: #f97316;
  --text-dark: #1f2937;
  --text-light: #6b7280;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Body */
body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* Logo Text Gradient */
.logo-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section with Dubai Tourism Background */
.hero-gradient {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(59, 130, 246, 0.45) 50%, rgba(249, 115, 22, 0.4) 100%),
              url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
  background-color: #25D366;
  bottom: 80px;
}

.call-btn {
  background-color: var(--secondary-blue);
  bottom: 150px;
  display: none; /* Hidden by default, shown on mobile */
}

/* Show Call Button on Mobile Only */
@media (max-width: 768px) {
  .call-btn {
    display: flex;
  }
}

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

/* Card Hover Effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image Hover Zoom Effect */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.5s ease;
}

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

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-orange));
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  color: white;
}

/* Section Title Underline */
.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-blue), var(--accent-orange));
  border-radius: 2px;
}

/* Counter Animation */
.counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: 'Poppins', sans-serif;
}

/* Service Icon Background */
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-icon:hover {
  transform: rotate(360deg);
}

.service-icon i {
  font-size: 30px;
  color: white;
}

/* Footer Links */
.footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-orange);
}

/* Breadcrumb Styling */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--accent-orange);
}

.breadcrumb-item.active {
  color: white;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 80px 0 60px;
  margin-bottom: 60px;
}

/* Contact Card Icon */
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-icon i {
  font-size: 24px;
  color: white;
}

/* Map Container */
.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Menu Animation */
.mobile-menu {
  transition: max-height 0.3s ease-in-out;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation for Images */
img {
  loading: lazy;
}

/* Ensure proper spacing */
section {
  padding: 60px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .counter {
    font-size: 2rem;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
  }

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

  section {
    padding: 40px 0;
  }

  .page-banner {
    padding: 60px 0 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .logo-text {
    font-size: 1.2rem;
  }
}
