:root {
    --primary-color: #007bff; /* Blue */
    --secondary-color: #ff6b6b; /* Soft Red/Orange for CTA */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(29, 101, 173, 0.8); /* 80% opacity only on background */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
	color: orange;
}


.nav-menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
	  margin: 0px;
}

.nav-menu a {
    font-weight: 500;
    transition: var(--transition);
	  color: white;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #ff6b6b;
}

.btn-nav {
    background: #ff6b6b;
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: blue;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    margin-top: 0px; /* offset fixed header */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	  color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #e65555;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1ebc59;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.sub-heading {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* About Section */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 00px;
    right: 00px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

.experience-badge span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.why-list {
    margin: 20px 0;
}

.why-list li {
    margin-bottom: 10px;
}

.why-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Services */
.bg-light { background: var(--light-bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Packages Grid */
.filter-tabs {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}


.package-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.package-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pkg-image {
    position: relative;
    height: 200px;
}

.pkg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 3px;
    font-weight: 600;
}

.pkg-details {
    padding: 20px;
}

.pkg-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pkg-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.places {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.inclusions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pkg-inclusions {
    display: flex;
    gap: 14px;
    margin: 8px 0 14px;
    flex-wrap: wrap;
}

.pkg-inclusions i {
    color: #0d3b66; /* Navy Blue */
    font-size: 17px;
    background: rgba(13, 59, 102, 0.1);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pkg-inclusions i:hover {
    background: #0d3b66;
    color: #fff;
    transform: translateY(-2px);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    display: block;
}

.new-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.per-person {
    font-size: 0.8rem;
    color: #777;
}

.btn-book {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--primary-color);
}

.center-btn { text-align: center; }



/* Reviews */


/* ===========================
   Base (Mobile First)
   =========================== */
#reviews {
  padding: 60px 20px;
  background-color: #f8f9fa; /* light background */
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card .stars {
  color: #f4c150; /* gold stars */
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: navy; /* already set inline, but reinforcing */
}

.review-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
  background: #666;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #222;
  opacity: 1;
}

/* ===========================
   Tablet (≥750px)
   =========================== */
@media (min-width: 750px) {
  .section-heading {
    font-size: 2rem;
  }
	
	.nav-menu ul {
		gap: 15px
	}
	
  .review-card {
    padding: 25px;
    margin: 10px;
  }

  .review-card p {
    font-size: 1rem;
  }

  .review-card h4 {
    font-size: 1.1rem;
  }
}

/* ===========================
   Desktop (≥1024px)
   =========================== */
@media (min-width: 1024px) {
  #reviews {
    padding: 40px 20px;
  }

  .section-heading {
    font-size: 1.2rem;
  }

  .review-card {
    padding: 15px;
    margin: 8px;
		height: 15vh;
  }

  .review-card p {
    font-size: 0.7rem;
  }

  .review-card h4 {
    font-size: 0.8rem;
  }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://sampooranholiday.com/wp-content/uploads/2025/12/Manali.webp');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover {
    background: #e2e2e2;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li i {
    width: 20px;
    margin-right: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-wa, .float-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.float-wa { background: #25D366; }
.float-call { background: var(--primary-color); }

.float-wa:hover, .float-call:hover { transform: scale(1.1); }

.powered-by {
color: #ff6b6b;
	font-weight: 500;
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeInDown 0.4s;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
}

.modal-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group.row {
    display: flex;
    gap: 15px;
}

.form-group.row .col {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit:hover { background: #e65555; }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: -100%;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
    }
	
    .nav-menu.active { right: 0; }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
			  
    }
	.nav-menu a {
		color: #1D65AD;
	}
    .hamburger { display: block; }

    .hero-content h2 { font-size: 2rem; }
    
    .row { flex-direction: column; }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-book { width: 100%; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}