


/* =====================================================
   GLOBAL CSS – SUN TRAVELS
   This file controls:
   - Fonts (used across entire website)
   - Brand colors
   - Base HTML & BODY rules
   - Global typography (headings, text, links, lists)
   ===================================================== */


/* =====================================================
   1. BRAND COLORS (GLOBAL VARIABLES)
   ===================================================== */

:root {
  /* Primary Brand Color */
  --color-primary: #27247B;

  /* Secondary Brand Color */
  --color-secondary: #FFC92A;
  --color-thirdary: #FFEC01;

  /* Light Background / Accent Color */
  --color-tertiary: #F1F2FA;

  /* Text Colors */
  --color-text-black: #000000;
  --color-text-white: #ffffff;
  --color-text-muted: #666666;
  --contact-info-card: #f4f6fb;
  --paragraph: #444;
}





/* =====================================================
   3. GLOBAL RESET & BASE
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}




html,
body {
  width: 100%;
  max-width: 100%;
  /* overflow-x: hidden; */
  /* overflow-y: auto; */
}

body {
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* 
* {
  overflow: visible !important;
} */






/* =====================================================
   4. BODY DEFAULTS (GLOBAL)
   ===================================================== */

body, label, input, textarea {
  font-family: 'Mukta', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-black);
  background-color: var(--color-text-white);
}


button {
   font-family: 'Montserrat', sans-serif;
   font-size: 16px;
   font-weight: 600;
}


/* =====================================================
   5. HEADINGS (GLOBAL – MONT SERRAT)
   ===================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
  color: var(--color-text-black);
}




/* =====================================================
   6. SUB-HEADINGS & TEXT ELEMENTS (MUKTA)
   ===================================================== */

p {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: var(--color-text-black);
}

span {
  font-size: inherit;
  color: inherit;
}

small {
  font-size: 13px;
  color: var(--color-text-muted);
}


/* =====================================================
   7. LINKS (HEADER & FOOTER DEPENDS ON THIS)
   ===================================================== */

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}


/* =====================================================
   8. LISTS (USED HEAVILY IN FOOTER)
   ===================================================== */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-text-black);
}


/* =====================================================
   9. IMAGE HANDLING (GLOBAL FIX)
   ===================================================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* =====================================================
   10. TEXT COLOR UTILITIES
   (Used for dark/light backgrounds)
   ===================================================== */

.text-white {
  color: var(--color-text-white);
}

.text-black {
  color: var(--color-text-black);
}


/* =====================================================
   11. BACKGROUND UTILITIES
   ===================================================== */

/* .bg-primary {
  background-color: var(--color-primary);
} */

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-tertiary {
  background-color: var(--color-tertiary);
}





























/* =========================================
   CTA SECTION
========================================= */

.cta-section {
  padding: 0px 20px;
  padding-bottom: 120px;
  
}

.cta-container {
  max-width: 1300px;
  margin: 0 auto;
  background-color: var(--color-primary);
  border-radius: 28px;
  padding: 100px 40px;
  text-align: center;

}

/* ---------- TEXT ---------- */

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ---------- BUTTON ---------- */

.cta-btns {
  margin-top: 8px;
}


/* ---------- BUTTON ---------- */

.btn-primarys {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background-color: var(--color-thirdary);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
}


.btn-primarys::before {
  content: "";
  position: absolute;
  inset: 0;

  background-color: var(--color-secondary);

  /* Start from bottom-right */
  transform: translate(100%, 100%);
  transition: transform 0.45s ease;

  z-index: -1;
}


.btn-primarys:hover::before {
  transform: translate(0, 0);
}

.btn-primarys:hover {
  color: #000000;
}


/* =========================================
   TABLET (≤ 991px)
========================================= */

@media (max-width: 991px) {
  .cta-container {
    padding: 60px 30px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-desc {
    font-size: 15px;
  }
}

/* =========================================
   MOBILE (≤ 500px)
========================================= */

@media (max-width: 500px) {
  .cta-section {
    padding: 0px 16px;
    padding-bottom: 120px;
  }

  .cta-container {
    padding: 48px 20px;
    border-radius: 22px;
  
  }

  .cta-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .cta-btn {
    padding: 12px 24px; /* keeps touch friendly */
  }
}




















/* FAQ"S Section */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.faq-section {
  padding: 60px 20px;
  background-color: #F1F2FA;
}

/* CONTAINER */
.faq-container {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* 🔥 TWO INDEPENDENT COLUMNS */
.faq-columns {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* EACH COLUMN */
.faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ACCORDION ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

/* SUMMARY */
.faq-item summary {
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* PLUS ICON (default) */
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease, content 0.2s ease;
}

/* MINUS ICON WHEN OPEN */
.faq-item[open] summary::after {
  content: "−";
}

/* CONTENT */
.faq-item p {
  overflow: hidden;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  animation: accordionOpen 0.35s ease;
}


/* KEYFRAMES */
@keyframes accordionOpen {
  from {
    opacity: 1;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* MOBILE RESPONSIVE */
@media (max-width: 568px) {



  .faq-columns {
    flex-direction: column;
    align-items: center;
    
  }

  .faq-header h2 {
    font-size: 28px;
  }
}






























/* ===================================================== */
/* ********************** HERO SECTION ****************** */
/* ===================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   margin-top: 108px;
}

/* Banner Image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills full area */
  object-position: top;   /* ⬅️ starts from top, crops bottom only */
  z-index: -2;
}


/* Dark Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Text Content */
.hero-content {
  text-align: center;
  padding: 1rem;
}

.hero-content h1 {
  color: #ffeb3b;
  font-size: 46px;
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ===================================================== */
/* ************** EXPANDING IMAGE SECTION *************** */
/* ===================================================== */

.image-expand {
  width: 100%;
  padding: 60px 20px;
  background: #e7eaff;
}

/* Container */
.expand-container {
  display: flex;
  gap: 20px;
  height: 440px;
}

/* Cards */
.expand-card {
  flex: 2.3;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
}

/* Default Middle Active */
.expand-card.active {
  flex: 4;
}

/* Hover Expand */
.expand-card:hover {
  flex: 3;
}

/* Image */
.expand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================================================== */
/* ******************* RESPONSIVENESS ******************* */
/* ===================================================== */
/*section1*/

/* Tablet */
@media (min-width: 768px) {
  .hero {
    min-height: 50vh;
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .hero {
    min-height: 65vh;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .hero {
    min-height: 75vh;
  }
}

/*section2*/
@media (max-width: 900px) {
  .expand-container {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .expand-container {
    flex-direction: column;
    height: auto;
  }

  .expand-card {
    height: 200px;
    flex: none !important;
  }
}






















.management-image img, .top-images img, .bottom-image img, .transport-image img{
   transition: transform 0.4s ease; /* smooth zoom */
}



.management-image:hover img, .top-images:hover img, .bottom-image:hover img, .transport-image :hover img {
  transform: scale(1.04); /* zoom-in */
}







 











/* ================= SCROLL REVEAL ================= */

.reveal-section {
  /* opacity: 0; */
  transform: translateY(70px);
  transition: all 1s ease;
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}




















.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: zoomPulse 1.5s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
}

/* ✅ ZOOM IN - ZOOM OUT EFFECT */
@keyframes zoomPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

