/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 *
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --chinese-violet_30: hsla(304, 14%, 46%, 0.3);
  --chinese-violet: hsl(304, 14%, 46%);
  --sonic-silver: hsl(208, 7%, 46%);
  --professional-blue: #2c3e50;
  --ghost-white: hsl(233, 33%, 95%);
  --light-pink: hsl(203, 83%, 18%);
  --light-gray: hsl(0, 0%, 80%);
  --seashell: hsl(0,0%,97%);
  --charcoal: hsl(203, 30%, 26%);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-philosopher: 'Philosopher', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.2rem;
  --fs-3: 2.7rem;
  --fs-4: 2.4rem;
  --fs-5: 2.2rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;

  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 4px 6px 10px hsla(231, 94%, 7%, 0.06);
  --shadow-2: 2px 0 15px 5px hsla(231, 94%, 7%, 0.06);
  --shadow-3: 3px 3px var(--chinese-violet);
  --shadow-4: 5px 5px var(--chinese-violet);

  /**
   * radius
   */

  --radius-5: 5px;
  --radius-10: 10px;

  /**
   * clip path
   */

  --polygon: polygon(100% 29%,100% 100%,19% 99%,0 56%);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
data,
input,
button,
textarea,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
textarea { width: 100%; }

button { cursor: pointer; }

address { font-style: normal; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.8;
}

:focus-visible { outline-offset: 4px; }

::selection {
  background-color: var(--professional-blue);
  color: var(--white);
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.section:nth-child(odd) { background-color: var(--seashell); }

.section-subtitle {
  color: var(--professional-blue);
  text-transform: uppercase;
  font-weight: var(--fw-700);
  letter-spacing: 4px;
  text-align: center;
}

.h1,
.h2,
.h3,
.tab-text {
  color: var(--charcoal);
  font-family: var(--ff-philosopher);
  line-height: 1.2;
}

.h1 { font-size: var(--fs-2); }

.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-5); }

.section-text { font-size: var(--fs-7); }

.w-100 { width: 100%; }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section-title { text-align: center; }

.grid-list {
  display: grid;
  gap: 25px;
}

.btn-link {
  color: var(--professional-blue);
  font-weight: var(--fw-500);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) { color: var(--chinese-violet); }

.has-underline {
  position: relative;
  margin-block-end: 60px;
}

.has-underline .span {
  height: 2px;
  background-color: var(--old-rose_30);
  width: 200px;
  margin-inline: auto;
  margin-block-start: 30px;
}

.has-underline .has-before::before {
  width: 18px;
  height: 18px;
  top: 2px;
  left: 45%;
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--old-rose_30);
  box-shadow: 7px -7px var(--old-rose_30);
}

.btn {
  padding: 12px 30px;
  transition: var(--transition-1);
}

.btn-primary {
  background-color: var(--professional-blue);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) { background-color: var(--chinese-violet); }

.btn-secondary {
  border: 1px solid var(--professional-blue);
  color: var(--professional-blue);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--professional-blue);
  color: var(--white);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  background-color: var(--white);
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  padding-block: 12px;
  z-index: 4;
  transition: var(--transition-2);
}

.header.active {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  filter: drop-shadow(var(--shadow-1));
  transform: translateY(-100%);
  transition: none;
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--ff-philosopher);
  font-size: 4rem;
  color: var(--charcoal);
  line-height: 1;
}

.nav-toggle-btn {
  font-size: 40px;
  color: var(--charcoal);
}

.nav-toggle-btn ion-icon { --ionicon-stroke-width: 20px; }

.nav-toggle-btn.active .open,
.nav-toggle-btn .close { display: none; }

.nav-toggle-btn .open,
.nav-toggle-btn.active .close { display: block; }

.navbar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-inline: 15px;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
  max-height: 300px;
  visibility: visible;
  transition-duration: 0.5s;
}

.navbar-list { margin-block-end: 10px; }

.navbar-link {
  color: var(--charcoal);
  padding-block: 8px;
  line-height: 1.5;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--professional-blue); }





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 60px);
  text-align: center;
}

.hero .container {
  display: grid;
  gap: 60px;
}

.hero .hero-title { margin-block: 10px 25px; }

.hero-banner {
  padding-inline-start: 30px;
  padding-block-end: 30px;
  max-width: 420px;
  margin-inline: auto;
}

.hero-banner .w-100 { border-radius: 10px 30px; }

.hero-banner::before {
  top: 30px;
  right: 30px;
  bottom: 0;
  left: 0;
  background-color: var(--light-pink);
  border-radius: var(--radius-10);
  z-index: -1;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--chinese-violet);
  font-size: 22px;
  padding: 24px;
  border-radius: 50%;
  transition: var(--transition-1);
  animation: pulse 3s ease infinite;
}

.play-btn:is(:hover, :focus) { color: var(--professional-blue); }

@keyframes pulse {
  0%,
  50% { box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.5); }

  100% { box-shadow: 0 0 0 10px transparent; }
}





/*-----------------------------------*\
booking\*-----------------------------------*/


/* Modern Booking Section */
.booking-modern {
  background: hsl(203, 83%, 18%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.booking-modern .container {
  max-width: 1100px;
  margin: auto;
}

.booking-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.booking-subtitle {
  color: #d8d8d8;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-inline: auto;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.booking-card {
  background-color: #0a304d;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.booking-icon {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}


.booking-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.booking-card p {
  color: #ccc;
  margin-bottom: 20px;
}

.booking-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffffff;
  color: hsl(203, 83%, 18%);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.booking-btn:hover {
  background-color: #02274d;
  color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
  .booking-modern {
    padding: 60px 15px;
  }

  .booking-card {
    padding: 30px 20px;
  }
}


.benefits .section-text {
  text-align: center;
  margin-block: 8px 25px;
}

.benefits-card {
  padding: 25px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-5);
  overflow: hidden;
  transition: var(--transition-2);
}

.benefits-card::before,
.benefits-card::after {
  bottom: 0;
  right: 0;
  clip-path: var(--polygon);
  transition: var(--transition-2);
}

.benefits-card::before {
  width: 80px;
  height: 80px;
  background-color: var(--old-rose_30);
  transform: translateY(60px);
}

.benefits-card::after {
  width: 70px;
  height: 70px;
  background-color: var(--chinese-violet_30);
  transform: translateY(65px);
}

.benefits-card:is(:hover, :focus-within) { transform: translateY(-10px); }

.benefits-card:is(:hover, :focus-within)::before,
.benefits-card:is(:hover, :focus-within)::after { transform: translateY(0); }

.benefits-card:is(:hover, :focus-within)::after { transition-delay: 0.1s; }

.benefits-card .card-icon {
  background-color: var(--professional-blue);
  max-width: max-content;
  padding: 10px;
  box-shadow: var(--shadow-3);
  transition: var(--transition-1);
}

.benefits-card:is(:hover, :focus) .card-icon { box-shadow: none; }

.benefits-card .card-title { margin-block: 20px 15px; }

.benefits-card .btn-link { margin-block-start: 15px; }





/*-----------------------------------*\
  #CHAPTERS
\*-----------------------------------*/

.chapter-card {
  height: 100%;
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius-5);
  box-shadow: var(--shadow-2);
  transition: var(--transition-2);
}

.chapter-card:is(:hover, :focus-within) { transform: translateY(-10px); }

.chapter-card .card-title { margin-block-end: 15px; }





/*-----------------------------------*\
  #PREVIEW
\*-----------------------------------*/

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-card {
  position: relative;
  height: 60px;
  background-color: var(--seashell);
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-3);
  display: grid;
  place-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-1);
}

.tab-card .w-100 {
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-2);
}

.tab-card.active .w-100 { opacity: 1; }

.tab-card.active {
  height: 40vh;
  box-shadow: none;
}

.tab-text {
  font-size: var(--fs-4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tab-card.active .tab-text { display: none; }





/*-----------------------------------*\
  #PRICING
\*-----------------------------------*/

.pricing-card {
  padding: 40px 50px;
  background-color: var(--white);
  text-align: center;
  transition: var(--transition-2);
}

.pricing-card:is(:hover, :focus-within),
.pricing-card.bundle { box-shadow: var(--shadow-4); }

.pricing-card:is(:hover, :focus-within) { transform: translateY(-10px); }

.pricing-card .price {
  font-family: var(--ff-philosopher);
  font-size: var(--fs-1);
  color: var(--charcoal);
  font-weight: var(--fw-700);
  margin-block-start: 10px;
}

.pricing-card-list { margin-block: 20px 40px; }

.pricing-card-list .card-item:not(:last-child) { border-block-end: 1px solid var(--ghost-white); }

.pricing-card .card-text { padding-block: 10px; }

.pricing-card .btn { margin-inline: auto; }





/*-----------------------------------*\
  #about section
\*-----------------------------------*/

/* === About Section Modern === */
.about-modern {
  padding: 100px 20px;
  background-color: #ffffff;
  color: #1e293b;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  text-align: left;
}

.about-subtitle {
  color: hsl(203, 83%, 18%);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #02274d;
  margin-bottom: 10px;
}

.about-tagline {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text {
  color: #334155;
  line-height: 1.8;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-block;
  background-color: hsl(203, 83%, 18%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #02274d;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-modern {
    padding: 70px 20px;
  }
  .about-content {
    text-align: center;
  }
  .about-btn {
    margin-inline: auto;
  }
}


.book-btn {
  background-color: #ffaa00;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #003366 !important;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

form label {
  font-weight: 500;
}

form input,
form select,
form textarea,
form button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

form button {
  background-color: #003366;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0055a5;
}


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

/* === Modern Contact Section === */
/* === Contact Info Card (Right Column) === */
.contact-info {
  background: linear-gradient(135deg, #02274d, #063b6b); /* dark elegant gradient */
  color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* Ensure parent background doesn't override */
/* === Modern Contact Section === */
.contact-modern {
  background-color: #f8fafc;
  padding: 100px 20px 120px;
  text-align: center;
}

.contact-modern .container {
  max-width: 1100px;
  margin: auto;
}

/* Section Title + Subtitle */
.contact-subtitle {
  text-transform: uppercase;
  color: hsl(203, 83%, 18%);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 2.2rem;
  color: #1e293b;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.5;
}

/* === Wrapper === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Thin dividing line between columns */
.contact-wrapper::after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 60%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

/* === Contact Form === */
.contact-form {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
  justify-content: center;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: hsl(203, 83%, 18%);
  box-shadow: 0 0 0 3px rgba(2, 39, 77, 0.15);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Centered Send Button */
.contact-btn {
  background-color: hsl(203, 83%, 18%);
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  transition: all 0.3s ease;
}

.contact-btn ion-icon {
  font-size: 20px;
  color: #fff;
}

.contact-btn:hover {
  background-color: #02274d;
  transform: translateY(-2px);
}

/* === Contact Info === */
.contact-info {
  background: linear-gradient(135deg, #02274d, #063b6b);
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

/* Info items */
.info-item {
  background: transparent;
  padding: 5px 0;
}

.info-item h3 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #ffffff;
  gap: 8px;
}

.info-item h3 ion-icon {
  color: #ffffff;
  font-size: 20px;
}

/* Links */
.info-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #93c5fd;
}

/* === Social Icons === */
.centered-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-link {
  background-color: #ffffff;
  color: #02274d;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  background-color: #0ea5e9;
  color: #fff;
  transform: scale(1.1);
}

/* === Responsive === */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .contact-wrapper::after {
    display: none;
  }

  .contact-info {
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }

  .info-item h3 {
    justify-content: center;
  }

  .centered-socials {
    justify-content: center;
  }

  .contact-modern {
    padding-bottom: 80px;
  }
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--seashell);
  text-align: center;
}

.footer-top {
  padding-block: 50px;
  border-block-end: 1px solid var(--chinese-violet_30);
}

.footer .logo { margin-block-end: 15px; }

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
}

.footer-link {
  color: var(--charcoal);
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) { color: var(--professional-blue); }

.footer-bottom { padding-block: 20px; }





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4.5rem;
    --fs-3: 3.5rem;
    --fs-5: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  .header,
  .navbar {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .section-text { --fs-7: 2rem; }



  /**
   * HEADER
   */

  .header { top: 30px; }

  .header.active { max-width: unset; }

  .navbar {
    left: 50%;
    transform: translateX(-50%);
  }



  /**
   * PREVIEW
   */

  .tab-card.active { height: 50vh; }



  /**
   * ACHIEVEMENT
   */

  .achievement-card { display: flex; }

  .achievement-card > * { width: 50%; }

  .achievement-card .card-content { padding-block: 30px; }

  .achievement-card .card-title { margin-block-end: 20px; }



  /**
   * CONTACT
   */

  .social-list-title { --fs-6: 2.2rem; }

  .social-link {
    font-size: 25px;
    padding: 8px;
  }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  .header,
  .navbar { max-width: 720px; }

  .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 100px);
    text-align: left;
  }

  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  .hero .section-subtitle { text-align: left; }



  /**
   * BENEFITS
   */

  .benefits :is(.section-title, .section-text) { text-align: left; }

  .benefits-content { grid-column: 1 / 3; }



  /**
   * CHAPTERS, PRICING
   */

  :is(.chapters, .pricing) .grid-list li:last-child {
    grid-column: 1 / 3;
    max-width: calc(50% - 12.5px);
    width: 100%;
    margin-inline: auto;
  }



  /**
   * PREVIEW
   */

  .tab-card.active { height: 70vh; }



  /**
   * AUTHOR
   */

  .author .h2 { --fs-3: 4.2rem; }



  /**
   * ACHIEVEMENT
   */

  .achievement-card { flex-direction: column; }

  .achievement-card > * { width: 100%; }



  /**
   * CONTACT
   */

  .contact .wrapper { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 5.4rem;
    --fs-3: 4rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  .header,
  .navbar { max-width: 960px; }

  .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */

  .header .container { padding-inline: 20px 30px; }

  .nav-toggle-btn { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    margin-block-end: 0;
    display: flex;
    gap: 30px;
  }



  /**
   * BENEFITS
   */

  .benefits .grid-list {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }

  .benefits-content { max-width: 80%; }



  /**
   * CHAPTER, PRICING
   */

  :is(.chapters, .pricing) .grid-list li:last-child { all: unset; }



  /**
   * PREVIEW
   */

  .tab-list {
    flex-direction: row;
    gap: 20px;
  }

  .tab-text {
    text-orientation: upright;
    white-space: nowrap;
    writing-mode: vertical-lr;
  }

  .tab-card {
    height: 70vh;
    max-width: 60px;
  }

  .tab-card.active { max-width: 650px; }



  /**
   * AUTHOR
   */

  .author .container {
    grid-template-columns: 0.6fr 1fr;
    gap: 0;
  }

  .author-content {
    margin-block-start: 40px;
    margin-inline-start: -30px;
    padding-block-end: 70px;
  }



  /**
   * ACHIEVEMENT
   */

  .achievement .grid-list { grid-template-columns: 1fr 1fr; }

  .achievement-card { flex-direction: row; }

  .achievement-card > * { width: 50%; }



  /**
   * CONTACT
   */

  .contact .wrapper { grid-template-columns: 1fr 0.5fr; }

  .contact-form { padding: 40px; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 6rem;
    --fs-3: 4.5rem;
    --fs-4: 3rem;
    --fs-5: 3rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  .header,
  .navbar { max-width: 1140px; }



  /**
   * PREVIEW
   */

  .tab-card { max-width: 75px; }

  .tab-card.active { max-width: 750px; }



  /**
   * AUTHOR
   */

  .author-content { padding: 85px 60px 115px; }



  /**
   * FOOTER
   */

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer .logo { margin-block-end: 0; }

 .book-btn {
    background-color: #ffaa00;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px; /* Optional: spacing from other items */
  }

}
 /* === Language Switcher === */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0.8rem 1rem;
  margin: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

/* === Language Switcher (Minimal & Elegant) === */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0.5rem 1rem;
  margin: 0.5rem 1rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

/* Divider between languages */
.divider {
  color: #999;
  font-weight: 300;
}

/* Language buttons */
.lang-btn {
  text-decoration: none;
  color: hsl(203, 83%, 18%);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Hover & Active Styles */
.lang-btn:hover {
  background-color: hsl(203, 83%, 18%);
  color: #fff;
}

.lang-btn.active {
  background-color: hsl(203, 83%, 18%);
  color: #fff;
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .language-switcher {
    justify-content: center;
    padding: 0.5rem 0.8rem;
    margin: 0.5rem auto;
    background: rgba(255, 255, 255, 0.9);
  }

  .lang-btn {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
}


/* why choose us */
/* === How It Works Section === */
/* === How It Works - Timeline Style === */
.how-it-works-alt {
  background: linear-gradient(135deg, #02274d, #063b6b);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.how-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* Timeline container */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

/* Steps */
.timeline-step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 50px;
  text-align: left;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

/* Circle number */
.timeline-step .circle {
  position: absolute;
  left: -13px;
  top: 0;
  background-color: #ffffff;
  color: #02274d;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Step content */
.step-content {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}

.step-content p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
}

.step-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Call to action button */
.timeline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  color: #02274d;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 50px;
  transition: all 0.3s ease;
}

.timeline-btn:hover {
  background-color: #0ea5e9;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive layout */
@media (max-width: 768px) {
  .how-it-works-alt {
    padding: 70px 15px;
  }

  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline-step {
    padding-left: 0;
    text-align: center;
  }

  .timeline-step .circle {
    position: static;
    margin: 0 auto 15px;
  }

  .step-content {
    text-align: center;
  }
}



/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.2);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background-color: hsl(203, 83%, 18%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  background-color: hsl(203, 83%, 25%);
}

.call-icon {
  font-size: 22px;
  color: #fff; 
}

.logo {
  display: block;
  width: 250px;   
  height: 90px;   
  background-image: url('./images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}






.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: hsl(203, 83%, 18%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-top: 30px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  background-color: hsl(203, 83%, 25%);
}

.contact-icon {
  width: 20px;
  height: 20px;
  fill: #fff; /* White icon */
}





/* === Info Section Container === */
.info-section {
  padding: 80px 20px;
  background-color: hsl(203, 83%, 18%);
  text-align: center;
}

.section-title1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #efeded;
}

.section-subtitle1 {
  color: #f4f2f2;
  margin-bottom: 50px;
}

/* === Info Grid === */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* === Info Card === */
.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.info-card h3 {
  color: #1b1b1b;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.info-summary {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* === Read More Content === */
.info-section {
  padding: 80px 20px;
  background-color: hsl(203, 83%, 18%);
  text-align: center;
}

.section-title1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #efeded;
}

.section-subtitle1 {
  color: #f4f2f2;
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start; /* ensure cards don’t stretch */
}

.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #1b1b1b;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.info-summary {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Info content text */
.info-content {
  max-height: 0;
  overflow: hidden;
  text-align: left;
  margin-top: 15px;
  padding: 0 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid hsl(203, 83%, 18%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 1.2rem; /* Increased font size */
  line-height: 1.8;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

/* List style */
.info-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #333;
  font-weight: 500;
  font-size: 1.2rem; /* Larger list text */
}

.info-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: hsl(203, 83%, 18%);
  font-weight: bold;
  font-size: 1.2rem; /* Match list text */
}

/* Contact block */
.contact-block {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-block p {
  font-weight: 600;
  color: #1b1b1b;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: hsl(203, 83%, 18%);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.2rem;
}

.contact-link svg {
  fill: hsl(203, 83%, 18%);
  width: 22px;
  height: 22px;
}

.contact-link:hover {
  color: hsl(203, 73%, 15%);
  svg {
    fill: hsl(203, 73%, 15%);
  }
}


.read-more-btn {
  display: inline-flex; /* already set */
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: hsl(203, 83%, 18%);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin: 20px auto 0; /* auto left/right margin centers it */
  transition: background-color 0.3s ease;
}


.read-more-btn svg {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  background-color: hsl(203, 73%, 15%);
}

/* Optional: smooth scroll for expanded content */
.info-content.open {
  padding-top: 15px;
}


/* Immigration Services Section */
.immigration-services {
  background-color: hsl(203, 83%, 18%);;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.immigration-services .container {
  max-width: 1100px;
  margin: auto;
}

.section-title1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle1 {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.servicea {
  background-color: hsl(203, 83%, 18%);;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
}

.servicea:hover {
  background-color: #02274d; /* Change to your accent color */
  transform: translateY(-5px);
}

.servicea h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.servicea p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.5;
}


/* Fix overlapping sections and spacing */
.immigration-services {
  background-color: hsl(203, 83%, 18%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 80px; /* separates it from next section */
  clear: both;
}

#about, 
#contact, 
#booking, 
#legal-guides {
  margin-top: 80px;
  padding-top: 40px;
  clear: both;
}

/* Fix for conflicting section-title1 style reuse */
.immigration-services .section-title1,
.immigration-services .section-subtitle1 {
  color: #fff;
  text-align: center;
}

.immigration-services .section-title1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.immigration-services .section-subtitle1 {
  color: #d8d8d8;
  font-size: 1.1rem;
  margin-bottom: 50px;
}






/* === Cómo Funciona - Modern List Style === */
.how-list {
  background-color: #f8fafc;
  padding: 80px 20px;
  text-align: left;
}

.how-list .container {
  max-width: 950px;
  margin: auto;
}

.how-title {
  color: hsl(203, 83%, 18%);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
}

.how-subtitle {
  color: #475569;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-inline: auto;
}

/* === Steps List === */
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-steps li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.how-steps ion-icon {
  font-size: 32px;
  color: hsl(203, 83%, 18%);
  flex-shrink: 0;
  margin-top: 5px;
}

.how-steps h3 {
  color: #02274d;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.how-steps p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 768px) {
  .how-list {
    padding: 60px 15px;
  }

  .how-steps li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .how-steps ion-icon {
    margin-bottom: 10px;
  }

  .how-steps h3 {
    font-size: 1.1rem;
  }

  .how-title {
    font-size: 1.8rem;
  }
}


/* === Legal Section - Modern Minimal === */
.legal-section {
  background: linear-gradient(180deg, #f9fafb 0%, #f1f5f9 100%);
  padding: 90px 20px;
  text-align: center;
}

.legal-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.legal-heading {
  font-size: 2.2rem;
  color: #02274d;
  font-weight: 700;
  margin-bottom: 10px;
}

.legal-subheading {
  color: #475569;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* === Cards === */
.legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.legal-item {
  background: #fff;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.legal-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(2, 39, 77, 0.12);
}

/* === Icon === */
.legal-item ion-icon {
  font-size: 42px;
  color: #0a4a88;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.legal-item:hover ion-icon {
  color: #0ea5e9;
}

/* === Text === */
.legal-item h3 {
  font-size: 1.3rem;
  color: #02274d;
  font-weight: 600;
  margin-bottom: 10px;
}

.legal-item p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* === Link === */
.more-link {
  display: inline-block;
  font-weight: 600;
  color: #0a4a88;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.more-link:hover {
  color: #0ea5e9;
  transform: translateX(5px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .legal-section {
    padding: 70px 15px;
  }

  .legal-heading {
    font-size: 1.9rem;
  }

  .legal-item {
    padding: 30px 20px;
  }

  .legal-item ion-icon {
    font-size: 36px;
  }
}

