/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --light-steel-blue: hsl(218, 33%, 77%);
  --royal-blue-light: hsl(225, 68%, 53%);
  --flickr-blue_30: hsla(225, 68%, 53%, 0.3);
  --carolina-blue: hsl(201, 92%, 47%);
  --oxford-blue-1: hsl(218, 70%, 18%);
  --oxford-blue-2: hsl(217, 100%, 12%);
  --oxford-blue-3: hsl(218, 71%, 11%);
  --gainsboro_50: hsla(0, 0%, 85%, 0.5);
  --lavender-web: hsl(225, 67%, 91%);
  --sonic-silver: hsl(0, 0%, 47%);
  --light-gray: hsl(0, 0%, 84%);
  --cultured: hsl(0, 0%, 97%);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_8: hsla(0, 0%, 0%, 0.08);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 20%);

  /**
   * gradient color
   */

  --gradient: linear-gradient( 90deg, var(--carolina-blue) 0%, var(--royal-blue-light) 100%);

  /**
   * typography
   */

  --ff-roboto: "Roboto", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.6rem;
  --fs-3: 3.2rem;
  --fs-4: 2.4rem;
  --fs-5: 2.2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.6rem;

  --fw-800: 800;
  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * shadow
   */

  --shadow-1: 4px 4px 15px var(--black_10);
  --shadow-2: 0 10px 15px var(--black_10);
  --shadow-3: 0px 20px 60px var(--black_8);
  --shadow-4: 0px 10px 30px var(--flickr-blue_30);
  --shadow-5: 0px 2px 60px 0px var(--black_10);

  /**
   * border radius
   */

  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition: 0.25s 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 {
  text-decoration: none;
  color: inherit;
}

a,
img,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.5rem;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 25px; }

.section { padding-block: var(--section-padding); }

.section-subtitle {
  color: var(--royal-blue-light);
  font-family: var(--ff-poppins);
  font-size: 5rem;
  font-weight: var(--fw-700);
  text-transform: uppercase;
  margin-block-end: 10px;
}

.hero-welcome {
  font-size: 5rem !important;
}

.cta-subtitle {
  font-size: 3rem !important;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-poppins);
  line-height: 1.2;
}

.h1 {
  color: var(--oxford-blue-1);
  font-size: var(--fs-2);
}

.h2,
.h3 { color: var(--oxford-blue-2); }

.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-5); }

.btn {
  background-image: linear-gradient( var(--deg, 90deg), var(--carolina-blue) 0%, var(--royal-blue-light) 100%);
  color: var(--white);
  font-size: var(--fs-7);
  text-transform: uppercase;
  padding: 20px 30px;
  text-align: center;
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-4);
}

.btn:is(:hover, :focus) { --deg: -90deg; }

.w-100 { width: 100%; }

.text-center { text-align: center; }

.card-text,
.section-text { line-height: 1.7; }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEDER
\*-----------------------------------*/

.header-bottom .btn { display: none; }

.header-bottom {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 15px;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-2);
}

@keyframes slideIn {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header-bottom > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
}

.logo {
  color: var(--oxford-blue-1);
  font-family: var(--ff-poppins);
  font-size: 3.4rem;
  font-weight: var(--fw-800);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.nav-toggle-btn {
  color: var(--black);
  font-size: 30px;
  border: 1px solid var(--black);
  padding: 5px;
}

.nav-toggle-btn.active .menu-icon,
.nav-toggle-btn .close-icon { display: none; }

.nav-toggle-btn .menu-icon,
.nav-toggle-btn.active .close-icon { display: block; }

.navbar {
  position: absolute;
  top: calc(100% + 5px);
  left: 25px;
  right: 25px;
  background-color: var(--white);
  padding-inline: 0;
  box-shadow: var(--shadow-1);
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
  visibility: visible;
  max-height: 244px;
  transition-duration: 0.5s;
}

.navbar-list > li:not(:last-child) { border-block-end: 1px solid var(--gainsboro_50); }

.navbar-link {
  color: var(--jet);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  padding: 15px;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block-end: calc(var(--section-padding) / 2);
}

.hero-content { margin-block-end: 50px; }

.hero-title { margin-block: 15px 30px; }

.hero-text {
  font-size: var(--fs-6);
  line-height: 1.45;
  margin-block-end: 40px;
}

.hero-form {
  background-color: var(--white);
  max-width: 95%;
  padding: 15px;
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-3);
}

.hero-form .email-field {
  background-color: var(--cultured);
  color: var(--black);
  min-height: 70px;
  padding-inline: 15px;
  border-radius: var(--radius-4);
  margin-block-end: 15px;
}

.hero-form .btn { width: 100%; }





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-banner-section {
  background: linear-gradient(135deg, var(--cultured) 0%, var(--lavender-web) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="50" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="30" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.service-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 1;
}

.banner-content .banner-title {
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  color: var(--oxford-blue-2);
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-content .banner-text {
  font-size: var(--fs-6);
  color: var(--sonic-silver);
  line-height: 1.7;
  margin-bottom: 30px;
}

.banner-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.banner-stats .stat {
  text-align: center;
}

.banner-stats .stat-number {
  display: block;
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  color: var(--royal-blue-light);
  margin-bottom: 5px;
}

.banner-stats .stat-label {
  font-size: var(--fs-7);
  color: var(--sonic-silver);
  font-weight: var(--fw-500);
}

.banner-image {
  position: relative;
}

.banner-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-3);
}

.service { padding-block-end: 0; }

.service .section-title { margin-block-end: 50px; }

.service-carousel {
  display: flex;
  gap: 15px;
}

.service-carousel .service-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  min-height: 100%;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-4);
  padding: 30px;
  flex-shrink: 0;
  width: 100%;
  max-width: 350px;
  background-color: var(--white);
}

.service-carousel .card-icon {
  width: 50px;
  flex-shrink: 0;
}

.service-carousel .card-title { margin-block-end: 8px; }

.service-carousel .card-btn {
  background-color: var(--royal-blue-light);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-4);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.service-carousel .card-btn:hover {
  background-color: var(--carolina-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-4);
}

.service-carousel .card-details {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--cultured);
  border-radius: var(--radius-4);
  border-left: 4px solid var(--royal-blue-light);
  transition: all 0.3s ease;
}

.service-carousel .card-details p {
  margin: 0;
  font-size: var(--fs-7);
  line-height: 1.6;
  color: var(--sonic-silver);
}

/* Enhanced service card hover effects */
.service-carousel .service-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-carousel .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.05), transparent);
  transition: left 0.5s;
}

.service-carousel .service-card:hover::before {
  left: 100%;
}

.service-carousel .service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-3);
  border-color: var(--royal-blue-light);
}

.service-carousel .service-card:hover .card-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.service-carousel .service-card:hover .card-title {
  color: var(--royal-blue-light);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about { padding-block-end: 0; }

.about-banner { margin-block-end: 50px; }

.about .section-text-1 { margin-block: 25px 15px; }

.about .btn {
  font-size: unset;
  max-width: max-content;
  margin-block-start: 30px;
  padding-inline: 15px;
}





/*-----------------------------------*\
  #TRUST
\*-----------------------------------*/

.trust .section-title { margin-block-end: 50px; }

.trust .section-text { margin-block-end: 50px; }

.core-values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  padding: 30px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-4);
  text-align: center;
  min-height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
  transition: left 0.5s;
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-5px);
  border-color: var(--royal-blue-light);
}

.value-icon {
  font-size: 3rem;
  color: var(--royal-blue-light);
  margin-bottom: 15px;
  transition: var(--transition);
}

.value-item:hover .value-icon {
  transform: scale(1.1);
  color: var(--carolina-blue);
}

.value-title {
  font-size: var(--fs-4);
  margin-block-end: 10px;
  transition: var(--transition);
}

.value-item:hover .value-title { color: var(--royal-blue-light); }

.value-text { line-height: 1.7; }

/*-----------------------------------*\
  #CORE VALUES
\*-----------------------------------*/

.core-values { background-color: var(--cultured); }

/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats {
  background-image: var(--gradient);
  color: var(--white);
  text-align: center;
}

.stats .section-subtitle,
.stats .section-title { color: var(--white); }

.stats-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-4);
}

.stat-number {
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}

.stat-title {
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  color: var(--white);
  opacity: 0.9;
}

/*-----------------------------------*\
  #TEAM
\*-----------------------------------*/

.team { background-color: var(--white); }

.team-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3);
}

.team-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 102, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  color: var(--royal-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--royal-blue-light);
  color: var(--white);
  transform: translateY(-3px);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  color: var(--oxford-blue-2);
  margin-bottom: 5px;
}

.team-role {
  font-size: var(--fs-7);
  color: var(--royal-blue-light);
  margin-bottom: 10px;
  font-weight: var(--fw-500);
}

.team-bio {
  font-size: var(--fs-7);
  color: var(--sonic-silver);
  line-height: 1.6;
}

/*-----------------------------------*\
  #READ MORE
\*-----------------------------------*/

.read-more-container {
  margin-top: 20px;
}

.hidden-text {
  display: none;
  margin-top: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hidden-text.show {
  display: block;
  opacity: 1;
}

.read-more-btn {
  margin-top: 15px;
  background-color: transparent;
  color: var(--royal-blue-light);
  border: 2px solid var(--royal-blue-light);
  padding: 10px 20px;
  border-radius: var(--radius-4);
  font-weight: var(--fw-600);
  transition: var(--transition);
}

.read-more-btn:hover {
  background-color: var(--royal-blue-light);
  color: var(--white);
}





/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta { background-color: var(--oxford-blue-1); }


.cta-banner { margin-block-end: 50px; }

.cta .section-subtitle { text-transform: capitalize; }

.cta .section-title {
  color: var(--white);
  font-size: var(--fs-3);
  margin-block-end: 30px;
}

.cta .btn { max-width: max-content; }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-title { margin-block-end: 50px; }

.blog-list {
  display: grid;
  gap: 30px;
}

.blog-card {
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-5);
}

.blog-card .card-banner {
  position: relative;
  border-radius: var(--radius-4);
  overflow: hidden;
}

.blog-card .card-banner img { transition: var(--transition); }

.blog-card:is(:hover, :focus-within) .card-banner img { transform: scale(1.1); }

.blog-card .card-badge {
  background-color: var(--royal-blue-light);
  color: var(--white);
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 5px;
  padding: 10px 15px;
  border-radius: var(--radius-6);
}

.blog-card .card-content { padding: 30px; }

.blog-card .card-title { transition: var(--transition); }

.blog-card .card-title:is(:hover, :focus) { color: var(--royal-blue-light); }

.blog-card .card-text { margin-block: 15px; }

.blog-card .card-link {
  position: relative;
  color: var(--royal-blue-light);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  width: max-content;
  transition: var(--transition);
}

.blog-card .card-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--royal-blue-light);
  transition: var(--transition);
}

.blog-card .card-link:is(:hover, :focus) { color: var(--oxford-blue-1); }

.blog-card .card-link:is(:hover, :focus)::after { background-color: var(--oxford-blue-1); }





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  background-color: var(--oxford-blue-2);
  color: var(--light-steel-blue);
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.footer-brand .logo { color: var(--white); }

.footer-text {
  line-height: 1.6;
  margin-block: 15px;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-icon,
.footer-item .item-icon {
  background-image: var(--gradient);
  color: var(--white);
  font-size: 18px;
  padding: 11px;
  border-radius: 50%;
}

.schedule .span,
.footer-item .item-text { line-height: 1.6; }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-block: 10px;
  transition: var(--transition);
}

.footer-link ion-icon {
  color: var(--royal-blue-light);
  --ionicon-stroke-width: 50px;
}

.footer-link:is(:hover, :focus) { color: var(--white); }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item:not(:first-child) { margin-block-start: 20px; }

.footer-bottom {
  background-color: var(--oxford-blue-3);
  padding-block: 50px;
  text-align: center;
}

.copyright {
  color: var(--white);
  line-height: 1.6;
  margin-block-end: 25px;
}

.footer .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer .social-link {
  padding: 11px;
  background-color: hsla(0, 0%, 100%, 0.2);
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
}

.footer .social-link:is(:hover, :focus) { background-image: var(--gradient); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--royal-blue-light);
  font-size: 18px;
  color: var(--white);
  padding: 14px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.back-top-btn.active {
  transform: translateY(-10px);
  visibility: visible;
  opacity: 1;
}





/*-----------------------------------*\
  #BOOKING FORM
\*-----------------------------------*/

.booking-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 25px #e0e0e0;
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--oxford-blue-2);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.booking-form-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9fafc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.input-group {
  display: flex;
  align-items: center;
}

.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 52px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #666;
  transition: border-color 0.3s ease;
  padding: 0;
}

.input-group-text ion-icon {
  font-size: 10px;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.input-group .form-control:focus + .input-group-text,
.input-group:focus-within .input-group-text {
  border-color: var(--royal-blue-light);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select.form-control:hover {
  border-color: #bbb;
}

select.form-control:focus {
  border-color: var(--royal-blue-light);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.btn-book-now {
  background: #001122;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

.btn-book-now:hover {
  background: #002244;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-book-now:active {
  transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .booking-form {
    padding: 20px;
    margin: 0 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .form-column {
    gap: 30px;
  }

  .booking-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .form-control {
    padding: 14px 16px;
    font-size: 17px;
  }

  .input-group-text {
    height: 52px;
  }

  .btn-book-now {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/* Service banner responsive */
@media (max-width: 992px) {
  .service-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .banner-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-banner-section {
    padding: 60px 0;
  }

  .banner-stats {
    flex-direction: column;
    gap: 20px;
  }

  .banner-content .banner-title {
    font-size: var(--fs-3);
  }
}

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.2rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * BLOG
   */

  .blog-card .h3 { --fs-5: 2.6rem; }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4.8rem;

  }



  /**
   * RESET
   */

  body { font-size: 1.6rem; }



  /**
   * REUSED STYLE
   */

  .container { max-width: 750px; }

  .section-subtitle { --fs-6: 2.2rem; }



  /**
   * HERO
   */

  .hero { overflow: hidden; }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 20px;
  }

  .hero-content { margin-block-end: 0; }

  .hero-form { position: relative; }

  .hero-form .email-field {
    margin-block-end: 0;
    padding-inline-end: 190px;
  }

  .hero-form .btn {
    width: auto;
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
  }

  .hero-banner { margin-inline-end: -60px; }



  /**
   * SERVICE
   */

  .service-carousel {
    gap: 30px;
  }



  /**
   * TRUST
   */



  /**
   * CTA
   */

  .cta { padding-block: 0; }

  .cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 60px;
  }

  .cta-banner { margin-block-end: 0; }

  .cta-content { padding-block: 60px; }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }



  /**
   * FOOTER
   */

  .footer-bottom { padding-block: 30px; }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright { margin-block-end: 0; }



  /**
   * BACK TO TOP
   */

  .back-top-btn {
    bottom: 70px;
    right: 50px;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 6rem;
    --fs-1: 4.6rem;
    --fs-3: 4.6rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 980px; }



  /**
   * HEADER
   */

  .header-bottom {
    top: 0;
    padding-block: 20px;
  }

  .header-bottom.active { top: -81px; }

  .nav-toggle-btn { display: none; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    align-items: center;
  }

  .navbar-list > li:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--oxford-blue-1);
    font-family: var(--ff-poppins);
    text-transform: capitalize;
    transition: var(--transition);
  }

  .navbar-link:is(:hover, :focus) { color: var(--royal-blue-light); }

  .header-bottom .btn {
    display: block;
    padding: 15px 20px;
  }



  /**
   * SERVICE
   */

  .service-carousel {
    gap: 20px;
  }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner { margin-block-end: 0; }



  /**
   * TRUST
   */



  /**
   * CTA
   */

  .cta-content { padding-block: 80px; }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 8rem;
    --fs-1: 5.5rem;
    --fs-3: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }



  /**
   * HEADER
   */

  .contact-list { gap: 30px; }

  .header-bottom .btn { padding: 18px 30px; }

  .header-bottom > .container { gap: 40px; }

  .navbar-list { gap: 15px; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.85fr 1fr;
    gap: 100px;
  }



  /**
   * TRUST
   */

  .trust { padding-block-end: 180px; }



  /**
   * CTA
   */

  .cta .container { align-items: center; }

  .cta-banner { margin-block-start: -120px; }

}/*-----------------------------------*  #MODAL POP-UP
\*-----------------------------------*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-6);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.modal-icon.success {
  background-color: #d4edda;
  color: #155724;
}

.modal-icon.error {
  background-color: #f8d7da;
  color: #721c24;
}

.modal-title {
  font-family: var(--ff-poppins);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  color: var(--oxford-blue-2);
  margin-bottom: 15px;
}

.modal-message {
  font-size: var(--fs-7);
  color: var(--sonic-silver);
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-close-btn {
  background-image: var(--gradient);
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  padding: 12px 30px;
  border: none;
  border-radius: var(--radius-4);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  --deg: -90deg;
  transform: translateY(-2px);
}

/* Mobile responsiveness for modal */
@media (max-width: 575px) {
  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .modal-title {
    font-size: var(--fs-6);
  }

  .modal-message {
    font-size: var(--fs-7);
  }
}
