/* =====================
   THEME VARIABLES
===================== */
:root {
    --primary-red: #DC2626;
    --primary-red-hover: #B91C1C;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-pink: #FEF2F2;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

/* =====================
   BUTTON
===================== */
.btn-primary {
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
}

/* =====================
   SECTION TITLES
===================== */
.section-title {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem; /* 36px */
    }
}

.section-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* =====================
   NAVIGATION LINK
===================== */
.nav-link {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

/* =====================
   CARD
===================== */
.card-shadow {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}





/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container--1 {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    
}


/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
}

.logo-text span:first-child {
    font-weight: bold;
    font-size: 18px;
    color: #1f2937;
}

.logo-text span:last-child {
    font-size: 10px;
    letter-spacing: 1px;
    color: #6b7280;
}

/* Navigation */
nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-red);
}

/* Button */
.btn-primary {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    nav,
    .desktop-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}




/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 1200px;
}

/* Heading */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero-content h1 span {
    display: block;
}

/* Paragraph */
.hero-content p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 32px;
    color: #f3f4f6;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Search Box */
.search-box {
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 1rem;
    color: #374151;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-box button {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: var(--primary-red-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
    }

    .search-box button {
        width: 100%;
    }
}




/* About Section */
.about-section {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

/* Container */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Heading */
.about-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-container h2 span {
    color: var(--primary-red);
}

/* Subtitle */
.subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Description */
.description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 32px;
}

/* Button */
.read-more-btn {
    background: var(--primary-red);
    color: #ffffff;
    padding: 10px 32px;
    border-radius: 999px;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #b91c1c;
}

/* Background Illustration */
.about-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.about-illustration img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.about-illustration img:nth-child(1),
.about-illustration img:nth-child(3) {
    height: 160px;
}

.about-illustration img:nth-child(2) {
    height: 240px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container h2 {
        font-size: 2rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .about-illustration {
        height: 160px;
        gap: 16px;
    }

    .about-illustration img:nth-child(2) {
        height: 180px;
    }
}




/* Section */
.destinations {
    padding: 80px 20px;
    background: var(--light-gray);
   
}



/* Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 48px;
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.categories button {
    padding: 8px 24px;
    border-radius: 999px;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    background: #ffffff;
    color: #6b7280;
    transition: all 0.3s ease;
}

.categories button:hover {
    background: #f3f4f6;
}

.categories button.active {
    background: var(--primary-red);
    color: #ffffff;
}

/* Grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Cards */
.dest-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.25),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
}

.dest-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Featured card */
.dest-card.featured {
    margin-top: -32px;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.dest-card.featured p {
    font-size: 0.875rem;
    color: #e5e7eb;
    margin-bottom: 16px;
}

.dest-card.featured button {
    background: var(--primary-red);
    border: none;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    width: fit-content;
    cursor: pointer;
}

/* View all */
.view-all {
    text-align: center;
    margin-top: 48px;
}

.view-all a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all a:hover {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 900px) {
    .dest-grid {
        grid-template-columns: 1fr;
    }

    .dest-card.featured {
        margin-top: 0;
    }
}





/* Section */
.packages {
 padding: 80px 20px;
    background: #d5d5d538;
  
}


/* Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.package-card {
    display: flex;
    flex-direction: column;
}

.image-box {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

/* Duration */
.duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Title */
.package-card h3 {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    transition: color 0.3s ease;
}

.package-card:hover h3 {
    color: var(--primary-red);
}

/* Featured Overlay */
.featured .featured-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
}

.featured .featured-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.featured .badge {
    background: var(--primary-red);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.featured .featured-overlay p {
    color: #e5e7eb;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.featured .featured-overlay button {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.featured .featured-overlay button:hover {
    background: #b91c1c;
}

/* View all */
.view-all {
    text-align: center;
    margin-top: 48px;
}

.view-all a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all a:hover {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}




/* Section */
.day-tours {
    padding: 80px 20px;
    background: #fff;
    
}



/* Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.tour-card:hover {
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

/* Image */
.tour-img {
    height: 192px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover img {
    transform: scale(1.1);
}

/* Content */
.tour-content {
    padding: 20px;
    text-align: center;
}

.tour-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.tour-content p {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Buttons */
.tour-content button {
    background: var(--dark-gray);
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tour-content button:hover {
    background: #374151;
}

.tour-content button.highlight {
    background: var(--primary-red);
}

.tour-content button.highlight:hover {
    background: #b91c1c;
}

/* View All */
.view-all {
    text-align: center;
    margin-top: 48px;
}

.view-all a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all a:hover {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}






/* Section */
.about-pick {
    padding: 80px 20px;
    background: #fef2f2;

}


/* Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
}

/* Text */
.about-text {
    max-width: 900px;
    margin: 0 auto 64px;
    color: #4b5563;
    line-height: 1.8;
    text-align: center;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.feature:hover .icon-circle {
    transform: translateY(-8px);
}

/* Highlight */
.highlight-bg {
    background: var(--primary-red);
    color: #ffffff;
}

.highlight-text {
    color: var(--primary-red);
}







.activities-section {
    padding: 80px 0;
    background: #ffffff;
}



.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Slider */
.activity-slider {
    margin-top: 40px;
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.activity-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: none;
    padding: 14px 18px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.nav-btn.left {
    left: 16px;
}

.nav-btn.right {
    right: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .activity-slider {
        height: 350px;
    }
}

/* Titles */
.feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

/* Button */
.about-btn {
    margin-top: 64px;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 10px 32px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #b91c1c;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}




.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}



.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

.section-title span {
  color: var(--primary-red);
}

.section-subtitle {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 16px;
}

.testimonials-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.quote {
  font-size: 48px;
  color: var(--primary-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  flex-grow: 1;
}

.reviewer {
  margin-top: 20px;
}

.reviewer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer .location {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.reviewer .date {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}






.section-title {
  font-size: 36px;
  font-weight: 700;
}

.section-title span {
  color: var(--primary-red);
}

.section-subtitle {
  color: var(--gray);
  margin-top: 8px;
}

/* BLOG */
.blog {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: .5s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
}

.blog-content p {
  font-size: 13px;
  color: var(--gray);
}

.blog-content button {
  margin-top: 15px;
  background: var(--dark);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  background: var(--light);
}

.contact-box {
  margin-top: 40px;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.contact-info {
  width: 40%;
  padding: 40px;
  text-align: left;
}

.contact-form {
  width: 60%;
  background: #f3f4f6;
  padding: 40px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-form button {
  width: 100%;
  background: var(--primary-red);
  color: white;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
}

/* FOOTER */
.footer {
  background: var(--primary-red);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer a {
  display: block;
  color: #fee2e2;
  font-size: 14px;
  margin: 6px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.3);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}
