/* University Website CSS - Complete Responsive Styles */

/* CSS Variables */
:root {
  --primary-color: #2c5aa0;
  --secondary-color: #f39c12;
  --accent-color: #e74c3c;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles - Mobile First */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  padding: 2px;
}

.logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* Navigation - Desktop */
.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-hover);
  border-radius: var(--border-radius);
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--bg-white);
  transform: translateX(100%);
  transition: var(--transition);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.mobile-nav-overlay.active .mobile-nav {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--primary-color);
  color: white;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  padding: 1rem 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  margin: 0;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-list a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-nav-list a i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.mobile-dropdown {
  display: none;
  list-style: none;
  background: var(--bg-light);
  margin: 0;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown li {
  margin: 0;
}

.mobile-dropdown a {
  padding-left: 3rem;
  font-weight: 400;
  border-bottom: none;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3d6f 100%);
  color: white;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Section Styles */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Enhanced Slider Styles */
.slider-section {
  position: relative;
  margin: 40px 0;
}

.slider-container {
  position: relative;
  margin: 30px 0;
  padding: 0 40px;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
  padding: 10px 5px;
  scroll-behavior: smooth;
}

.slider-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 15px 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

/* Mobile Slider Configuration */
.slide {
  flex: 0 0 calc(100% - 20px);
  min-width: 0;
  scroll-snap-align: start;
}

/* Tablet Slider Configuration */
@media (min-width: 768px) {
  .slide {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Desktop Slider Configuration */
@media (min-width: 1024px) {
  .slide {
    flex: 0 0 calc(33.333% - 20px);
  }
}

/* Large Desktop Slider Configuration */
@media (min-width: 1200px) {
  .slide {
    flex: 0 0 calc(25% - 20px);
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 14px;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* Card Styles */
.card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

.card-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* Destination Card */
.destination-card {
  position: relative;
  cursor: pointer;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.destination-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.1);
}

.destination-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

.destination-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.destination-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.destination-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.destination-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.btn-text {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.destination-action i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-action i {
  transform: translateX(4px);
}

/* University Card */
.university-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.university-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.university-logo {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 1rem;
}

.university-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.university-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.university-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.university-ranking {
  margin-bottom: 1rem;
}

.ranking-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.university-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* Course Card */
.course-card {
  height: 100%;
}

.course-card .card-image {
  height: 160px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.destination-name, .course-duration {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
  justify-content: center;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-color);
  flex-shrink: 0;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-details {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Service Card */
.service-card {
  padding: 2rem;
  text-align: left;
  height: 100%;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon-container {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features i {
  color: var(--secondary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Blog Card */
.blog-card .card-image {
  height: 180px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.blog-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: #1e3d6f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background: #d68910;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Footer Styles */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  text-align: center;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bg-white);
}

.faq-question {
  padding: 1.5rem;
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h4 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1.5rem 0;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0;
}

.newsletter-section .section-title {
  color: white;
}

.newsletter-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

#newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

#newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  min-width: 0;
}

#newsletter-message {
  text-align: center;
  margin-top: 1rem;
  display: none;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

.bg-light {
  background: var(--bg-light);
}

/* Responsive Design */
/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    padding: 1rem 0;
  }

  .nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .hero {
    padding: 140px 0 80px;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-column {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  #newsletter-form {
    flex-direction: row;
  }

  .slider-container {
    padding: 0 50px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero {
    padding: 160px 0 100px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .logo-img {
    height: 50px;
    width: 50px;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .slider-btn {
    display: none;
  }

  .slider-container {
    padding: 0 20px;
  }

  .slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
  }

  .destination-card {
    min-height: 280px;
  }

  .destination-image-container {
    height: 160px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .service-icon-container {
    align-self: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card-content {
    padding: 1.25rem;
  }

  .destination-info {
    padding: 1.25rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
}

/* Animation for slider items */
.slide {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Prevent horizontal scroll on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Performance optimizations */
.slider {
  will-change: transform;
}

.card {
  will-change: transform;
  backface-visibility: hidden;
}

/* Loading optimization */
img {
  max-width: 100%;
  height: auto;
}
/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.6);
    animation: none;
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(243, 156, 18, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}