/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
  }

  /* Body scroll lock when mobile menu is open */
.no-scroll {
    overflow: hidden;
    height: 100%;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
  }
  
  .btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-outline:hover {
    background: var(--primary-color);
    color: white;
  }
  
  /* ===== HEADER & NAVIGATION ===== */
  header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
  }
  
  .scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logo i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 80px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 30px;
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.1rem;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1563356/pexels-photo-1563356.jpeg?cs=srgb&dl=pexels-thatguycraig000-1563356.jpg&fm=jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  /* ===== DESTINATION CARDS ===== */
  .destinations-page {
    padding-top: 10rem;
    background: #f0f0f0;
    min-height: calc(100vh - 80px);
  }

  .destinations-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
  }

  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
  }
  
  .destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .destination-img {
    height: 200px;
    overflow: hidden;
  }
  
  .destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .destination-card:hover .destination-img img {
    transform: scale(1.1);
  }
  
  .destination-info {
    padding: 20px;
  }
  
  .destination-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .destination-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  /* ===== SPECIAL OFFERS ===== */
  .offers {
    background: linear-gradient(135deg, var(--primary-color), #5dade2);
    color: white;
    text-align: center;
  }
  
  .offer-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .offer-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
  }
  
  /* ===== TESTIMONIALS ===== */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
  }
  
  .testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
  }
  
  .testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
  }
  
  .rating {
    color: gold;
    font-size: 1rem;
    margin-top: 5px;
  }
  
  /* ===== BOOKING FORM ===== */
  .booking-page {
    padding-top: 10rem;
    background: #f0f0f0;
    min-height: calc(100vh - 80px);
  }

  .booking-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
  }
  
  .booking-form {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* ===== ABOUT PAGE ===== */
  .about-page {
    padding-top: 10rem;
    background: #f0f0f0;
    min-height: calc(100vh - 80px);
  }

  .about-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
  }
  
  .about-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .about-text h2 {
    color: var(--primary-color);
  }
  
  .team-section {
    margin-top: 50px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .team-member {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .team-member:hover {
    transform: translateY(-10px);
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--light-color);
  }
  
  .team-member h3 {
    margin-bottom: 5px;
  }
  
  .team-member p {
    color: var(--primary-color);
    font-weight: 500;
  }
  
  /* ===== FOOTER ===== */
  footer {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
  }
  
  .footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
  }
  
  .footer-col a:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ===== DESTINATIONS PAGE SPECIFIC ===== */
  .filter-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .filter-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
    background: white;
    cursor: pointer;
  }
  
  .filter-options select:focus {
    outline: none;
    border-color: var(--primary-color);
  }


  /* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
  }
  
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .close-modal:hover {
    color: #333;
  }
  
  .modal-body {
    padding: 20px 0;
  }
  
  .modal-body h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .modal-body p {
    margin-bottom: 10px;
  }
  
  .modal-actions {
    margin-top: 25px;
    text-align: right;
  }
  
  .modal-close-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .modal-close-btn:hover {
    background-color: #2980b9;
  }
  