
/* ===============================================
   TABLE OF CONTENTS:
   1. Variables & Root
   2. Base & Reset
   3. Typography
   4. Layout Helpers
   5. Forms
   6. Buttons
   7. Header & Navigation
   8. Hero Section
   9. Services Section
   10. Package Section
   11. Testimonials Section
   12. CTA Section
   13. Footer
   14. SEO Elements
   15. Modal
   16. Responsive Styles
   =============================================== */

/* ===============================================
   1. Variables & Root
   =============================================== */
   :root {
    /* Colors */
    --primary: #e69718;
    --primary-dark: #FF6900;
    --secondary: #f9a826;
    --secondary-dark: #e69718;
    --light: #f5f5f5;
    --white: #ffffff;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --border: #e2e8f0;
    --text: #334155;
    --text-light: #64748b;
    --transparent-white: rgba(255, 255, 255, 0.95);
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-primary: rgba(26, 93, 26, 0.2);
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* ===============================================
     2. Base & Reset
     =============================================== */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  ul, ol {
    list-style: none;
  }
  
  /* ===============================================
     3. Typography
     =============================================== */
  h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }
  
  h1 { 
    font-size: 3rem; 
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
  }
  
  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
  }
  
  h3 { 
    font-size: 1.75rem; 
  }
  
  p { 
    margin-bottom: var(--space-sm); 
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
  }
  
  .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
  }
  
  .section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* ===============================================
     4. Layout Helpers
     =============================================== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .section { 
    padding: 80px 0; 
  }
  
  .text-center { 
    text-align: center; 
  }
  
  /* ===============================================
     5. Forms
     =============================================== */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
    text-align: left;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: all var(--transition-normal);
    background-color: var(--white);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px var(--shadow-primary);
  }
  
  /* ===============================================
     6. Buttons
     =============================================== */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    
  }
  
  .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
  }
  
  .btn-secondary:hover {
    background-color: var(--secondary-dark);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .enquiry-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .enquiry-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow-primary);
  }
  
  /* ===============================================
     7. Header & Navigation
     =============================================== */
  header {
    background-color: var(--transparent-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    top: 0;
  }
  
  header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
  }
  
  .logo i { 
    margin-right: 10px; 
    color: var(--secondary); 
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li { 
    margin-left: 30px; 
  }
  
  .nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all var(--transition-normal);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width var(--transition-normal);
  }
  
  .nav-links a:hover { 
    color: var(--primary); 
  }
  
  .nav-links a:hover::after { 
    width: 100%; 
  }
  
  .hamburger { 
    display: none; 
    cursor: pointer; 
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: all var(--transition-normal);
  }
  
  /* ===============================================
     8. Hero Section
     =============================================== */
  .hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
      url('img/srinagar.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
  }
  
  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px 0;
  }
  
  .hero-text { 
    flex: 1; 
    padding-right: var(--space-lg); 
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    max-width: 600px;
  }
  
  .hero-form {
    flex: 0 0 400px;
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-md);
    padding: 30px;
    color: var(--dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out;
  }
  
  .hero-form h3 { 
    margin-bottom: 20px; 
    color: var(--primary); 
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .hero-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===============================================
     9. Services Section
     =============================================== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
  }
  
  .service-card {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: transform var(--transition-fast);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
  }
  
  .service-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .service-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray);
    margin-bottom: 0.75rem;
  }
  
  /* Badges and Tags */
  .badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .city-badge,
  .price-badge, 
  .offer-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 0.2rem;
    border-radius: 10px;
    font-size:large;
    text-shadow: #e69718;
    width: 8rem;
    font-size: medium;
  }
  
  .city-tag, 
  .feature-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    background: var(--light);
    border-radius: 20px;
    font-size: 0.8rem;
  }
  
  .package-badge, 
  .package-badge-testonomail,
  .rating-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .package-badge-testonomail {
    position: relative;
    top: 3px;
  }
  
/* ===============================================
   10. Package Section
   =============================================== */
   .packages {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9fafb 0%, var(--white) 100%);
  }
  
  .package-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
  }
  .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
  }
  
  /* Image */
  .package-image {
    height: 220px;
    position: relative;
    overflow: hidden;
  }
  .package-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    z-index: 1;
  }
  .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .package-card:hover .package-image img {
    transform: scale(1.08);
  }
  
  /* Badge */
  .package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px var(--shadow);
    z-index: 2;
  }
  .package-badge.honeymoon { background: rgba(245,158,11,0.95); color: var(--white); }
  .package-badge.adventure { background: rgba(16,185,129,0.95); color: var(--white); }
  .package-badge.budget    { background: rgba(99,102,241,0.95); color: var(--white); }
  
  /* Content */
  .package-content { padding: 24px; }
  .package-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .package-card:hover .package-title { color: var(--primary); }
  .package-location {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
  }
  .package-location i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 1rem;
  }
  .package-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  /* Features List & Custom Green Checks */
  .package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
    padding: 0;           /* reset default ul padding */
    list-style: none;     /* remove default bullets */
  }
  .package-features li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
    padding-left: 28px;   /* space for our custom icon */
  }
  
  /* inject green check on li.feature-green */
  .package-features li.feature-green::before {
    content: '✔';         /* Unicode check mark */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #10B981;       /* emerald-500 */
    line-height: 1;
  }
  .package-card:hover .package-features li.feature-green::before {
    color: #047857;       /* darker emerald on hover */
  }
  
  /* Meta & Price */
  .package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
  }
  .package-price span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2px;
  }
  
  /* Package Filters */
  .package-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
  }
  .package-filter {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .package-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
  }
  .package-filter.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
  }
  

  /* ===============================================
     11. Testimonials Section
     =============================================== */
  .testimonials {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials::before,
  .testimonials::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  
  .testimonials::before {
    width: 200px;
    height: 200px;
    background-color: rgba(26, 93, 26, 0.05);
    top: -100px;
    left: -100px;
  }
  
  .testimonials::after {
    width: 150px;
    height: 150px;
    background-color: rgba(249, 168, 38, 0.05);
    bottom: -50px;
    right: -50px;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
  }
  
  .testimonial-slide {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 20px;
    text-align: center;
    display: none;
  }
  
  .testimonial-slide.active { 
    display: block; 
  }
  
  .testimonial-content {
    position: relative;
    padding: 0 20px;
  }
  
  .testimonial-content::before,
  .testimonial-content::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: var(--light-gray);
    font-family: var(--font-heading);
    line-height: 1;
  }
  
  .testimonial-content::before { 
    top: -20px; 
    left: -10px; 
  }
  
  .testimonial-content::after { 
    bottom: -60px; 
    right: -10px; 
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    position: relative;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary);
  }
  
  .author-info h4 { 
    margin-bottom: 0; 
    font-size: 1.1rem; 
  }
  
  .author-info p {
    color: var(--primary);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-normal);
  }
  
  .testimonial-dot.active { 
    background-color: var(--primary); 
  }
  
  /*INTRO-KASHMIR*/
  .intro-kashmir {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  color: #333;
}

.intro-kashmir h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #005f73;
  text-align: center;
}

.intro-kashmir p {
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: justify;
  color: #444;
}

.intro-kashmir a {
  color: #0a9396;
  text-decoration: underline;
}

.intro-kashmir a:hover,
.intro-kashmir a:focus {
  color: #005f73;
  text-decoration: none;
}

.adsense-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .intro-kashmir {
    margin: 20px 10px;
    padding: 15px;
  }
  .adsense-container {
    margin: 20px 10px;
  }
}

  /* ===============================================
     12. CTA Section
     =============================================== */
  .cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
      url('https://images.unsplash.com/photo-1583744505095-25be3f6c1558?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
  }
  
  .cta h2 { 
    margin-bottom: 30px; 
  }
  
  .cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .cta-keywords {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Base Footer Styling */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 4rem 1rem 0;
  border-top: 3px solid var(--secondary);
}

/* Grid Layout for Desktop */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
} /* :contentReference[oaicite:0]{index=0} */

/* Brand Column */
.footer-brand {
  max-width: 400px;
}

/* Column Group (two columns) */
.footer-column-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Contact Column */
.contact-column {
  padding-left: 2rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Links & Headings */
.footer-heading {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.footer-links a {
  color: var(--light-gray);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 8px;
} /*  */

/* SEO Links */
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.seo-links a {
  color: var(--light-gray);
  font-size: 0.95rem;
  padding: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.seo-links a:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  min-width: 32px;
}
.highlight {
  color: var(--secondary);
  font-weight: 500;
}

/* Responsive Breakpoints */
/* Tablet & below: two columns */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-column-group {
    grid-template-columns: 1fr;
  }
} /* :contentReference[oaicite:1]{index=1} */

/* Mobile: single column */
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }
  .contact-column {
    padding-left: 0;
    border-left: none;
  }
  .footer-column-group {
    grid-template-columns: 1fr;
  }
  .seo-links {
    flex-direction: column;
    gap: 0.5rem;
  }
} /* :contentReference[oaicite:2]{index=2} */

  
  /* ===============================================
     14. SEO Elements
     =============================================== */
  .seo-content { 
    background: #f8fafc;
    padding: 40px;
    margin: 40px 0;
    border-radius: var(--radius-md);
  }
  
  .trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .city-keywords,
  .seo-keywords {
    position: absolute;
    left: -9999px;
    height: 1px;
    overflow: hidden;
  }
  
/* ===============================================
   15. Modal
   =============================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  transform: translateY(50px);
  transition: all var(--transition-normal);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.modal-close:hover {
  color: var(--dark);
  transform: rotate(90deg);
}

.modal-title {
  margin-bottom: 30px;
  color: var(--primary);
  text-align: center;
}



/* Medium devices (tablets, up to 991px) */
@media (max-width: 991px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero {
    padding-top: 80px;
  }
  
  .hero-content { 
    flex-direction: column; 
    text-align: center; 
    padding: 40px 0; /* Add vertical padding */
  }
  
  .hero-text { 
    padding-right: 0; 
    margin-bottom: 50px; 
  }
  
  .hero-text p { 
    margin: 0 auto 2rem; 
  }
  
  .hero-form { 
    width: 100%; 
    max-width: 500px;
    margin: 0 auto; /* Center the form */
  }
}

/* Small devices (landscape phones, up to 768px) */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  
  .hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 50px; /* Add bottom padding */
  }
  
  .hero-form {
    padding: 25px;
  }
  
  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    background-color: var(--white);
    flex-direction: column;
    width: 100%;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li { margin: 15px 0; }
  .hamburger { display: block; }
  
  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active div:nth-child(2) { 
    opacity: 0; 
  }
  
  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .package-grid { 
    grid-template-columns: 1fr; 
  }
  
  .testimonial-slide {
    padding: 2rem;
  }

  .testimonial-content p {
    font-size: 1rem;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
  

}

    /* Position container in bottom-right */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }
    
    /* Base button styling */
    .float-btn {
      display: inline-flex;
      align-items: center;
      background: var(--primary, #25d366);
      color: #fff;
      text-decoration: none;
      padding: 12px 16px;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      font-family: sans-serif;
      font-size: 1rem;
      animation: floatPulse 2.5s ease-in-out infinite; /* MDN: @keyframes usage :contentReference[oaicite:0]{index=0} */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* SVG icon spacing */
    .float-btn .icon {
      margin-right: 8px;
      width: 1.2em;
      height: 1.2em;
    }
    
    /* Individual button colors & animation delays */
    .call-btn {
      --primary: #ff6900;
      animation-delay: 0s;
    }
    .whatsapp-btn {
      --primary: #25d366;
      animation-delay: 1s;
    }
    
    /* Hover/focus lift effect */
    .float-btn:hover,
    .float-btn:focus {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
    /* Keyframes for smooth up/down pulse :contentReference[oaicite:1]{index=1} */
    @keyframes floatPulse {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }
    