/*--------------------- Google fonts ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Geist:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* --------------------- CSS Global variables ------------*/
:root
{
	/*------------ Colors -------------*/
	--primary-color: #4fb1ff;     /*---- Light Blue ----*/
	--secondary-color: #80c1ff;   /*---- Light Blue ------*/
	--third-color: #000000;       /*----- Black ------*/
	--fourth-color: #ffffff;      /*---- White ------*/
	--blue-color: #3399ff;    /*---- Button Light Blue -----*/
	--yellow-color: #fcb900;  /*---- Button Yello ----*/

	/*------------ Theme Colors -------------*/
	--bg-color: #ffffff;
	--text-color: #333333;
	--heading-color: #000000;
	--top-bar-bg: linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
	--top-bar-text: #1a1a1a;
	--nav-bg: #ffffff;
	--card-bg: #ffffff;
	--border-color: #e0e8f0;
	--dropdown-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);


	/*------------ Font Size --------------*/
	--heading-font-size: 1.5rem;
	--paragraph-font-size: 1rem;
}

[data-theme="dark"]
{
	--bg-color: #121212;
	--text-color: #e0e0e0;
	--heading-color: #ffffff;
	--top-bar-bg: linear-gradient(135deg, #1e1e1e 0%, #121212 100%);
	--top-bar-text: #ffffff;
	--nav-bg: #1e1e1e;
	--card-bg: #1e1e1e;
	--border-color: #333333;
	--dropdown-bg: linear-gradient(135deg, #1e1e1e 0%, #121212 100%);

	--third-color: #ffffff;
	--fourth-color: #121212;
}

[data-theme="dark"] .why-us {
	background-image: none !important;
	background-color: var(--bg-color) !important;
}

[data-theme="dark"] .lead-form {
	background-color: #1e1e1e;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .input-field input,
[data-theme="dark"] .input-field select,
[data-theme="dark"] .input-field textarea,
[data-theme="dark"] .dropdown-checkbox-toggle {
	background-color: #2a2a2a;
	color: var(--text-color);
	border: 1px solid #333;
}

[data-theme="dark"] .dropdown-checkbox-menu {
	background-color: #1e1e1e;
	border-color: #333;
}

[data-theme="dark"] .checkbox-option:hover {
	background-color: #333;
}

[data-theme="dark"] .checkbox-option .checkbox-label {
	color: var(--text-color);
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html
{
	font-size: 16px;
}

body
{
	font-family: 'Geist', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.container
{
	padding: 0.5rem 1.5rem;
}

.heading
{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.5rem 0;
	letter-spacing: -0.3px;
	color: var(--heading-color);
}

.sub-heading
{
	color: var(--secondary-color);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}

img
{
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Outfit', sans-serif;
}

p
{
	font-family: 'Geist', sans-serif;
}

.white
{
	color: #ffffff;
}

.para-line
{
	font-size: 1rem;
	line-height: 1.5;
}

.btn
{
	display: inline-block;
	text-decoration: none;
	padding: 0.5rem 1.2rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
}

.btn:hover
{
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn a
{
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	display: inline-block;
}

.btn-small
{
	padding: 0.25rem 0.5rem !important;
	font-size: 0.55rem !important;
}

.btn-small a
{
	font-size: 0.6rem !important;
	letter-spacing: 0.2px !important;
}


/*-------------------------- Top Bar style -------------------------*/
.top-bar
{
  background: var(--top-bar-bg);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.top-bar-content
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.top-bar-text
{
  font-size: 1rem;
  font-weight: 600;
  color: var(--top-bar-text);
  margin: 0;
  letter-spacing: -0.5px;
}

.top-bar-message
{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-bar-subtext
{
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--top-bar-text);
  margin: 0;
  letter-spacing: -0.3px;
}

.top-bar-buttons
{
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
}

.theme-toggle
{
  background: var(--blue-color);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.15);
  margin-left: auto;
}

.theme-toggle:hover
{
  background: var(--yellow-color);
  color: var(--third-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(252, 185, 0, 0.25);
}

.theme-toggle ion-icon
{
  font-size: 1.2rem;
}

[data-theme="dark"] .sun-icon {
	display: block;
}

[data-theme="dark"] .moon-icon {
	display: none;
}

.sun-icon {
	display: none;
}

.moon-icon {
	display: block;
}

.top-bar-btn
{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--blue-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.15);
}

.top-bar-btn:hover
{
  background: var(--yellow-color);
  color: var(--third-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(252, 185, 0, 0.25);
}

.top-bar-btn:active
{
  transform: translateY(-1px);
}

.top-bar-btn ion-icon
{
  font-size: 1rem;
}

/*-------------------------- Menu style -------------------------*/
nav
{
  position: sticky;
  top: 54px;
  background: var(--nav-bg);
  z-index: 10000;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  transition: all 0.3s ease;
}

.menu-container
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
}

.nav-wrapper
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper ul.nav-list
{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-wrapper ul.nav-list li 
{
  margin-left: 12px;
  padding: 14px 0;
  position: relative;
}

.nav-wrapper ul.nav-list li a
{
  color: var(--third-color);
  text-decoration: none;
  letter-spacing: 0.25px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
}

.nav-wrapper ul.nav-list li a ion-icon
{
  font-size: 1.3rem;
}

.nav-wrapper ul.nav-list li a.dropdown-toggle
{
  cursor: pointer;
}

.nav-wrapper ul.nav-list li a::after
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--blue-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 4px;
}

.nav-wrapper ul.nav-list li a:hover::after
{
  width: 100%;
}

.nav-wrapper ul.nav-list li a .dropdown-icon
{
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.nav-wrapper ul.nav-list li:hover a .dropdown-icon
{
  transform: rotate(180deg);
}

.nav-wrapper ul.nav-list li a:hover
{
  color: var(--blue-color);
  transform: translateY(-1px);
}

.nav-wrapper ul.nav-list li.active a
{
  color: var(--blue-color);
}

.nav-wrapper ul.nav-list li.active a::after
{
  width: 100%;
}

.phone-btn
{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px !important;
  background: var(--blue-color);
  color: var(--fourth-color) !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-bottom: 10px !important;
}

.phone-btn:hover
{
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
}

.phone-btn:hover::after
{
  display: none !important;
}

.phone-btn ion-icon
{
  font-size: 1.2rem;
}

.phone-btn span
{
  font-size: 0.9rem;
}

.quote-btn
{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px !important;
  background: var(--yellow-color);
  color: var(--third-color) !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-bottom: 10px !important;
}

.quote-btn:hover
{
  background: var(--blue-color);
  color: var(--fourth-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 185, 0, 0.3);
}

.quote-btn:hover::after
{
  display: none !important;
}

.quote-btn ion-icon
{
  font-size: 1.2rem;
}

.quote-btn span
{
  font-size: 0.9rem;
}

nav ul.dropdown-list
{
  list-style-type: none;
  display: block;
  background: var(--dropdown-bg);
  padding: 8px 0;
  position: absolute;
  width: max-content;
  min-width: 180px;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: none;
  transform-origin: top center;
}

.nav-wrapper ul.dropdown-list li
{
  margin-left: 0;
  padding: 0;
}

.nav-wrapper ul.dropdown-list li a
{
  color: var(--third-color);
  display: block;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.nav-wrapper ul.dropdown-list li a::before
{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue-color);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-wrapper ul.dropdown-list li a:hover
{
  color: var(--blue-color);
  background: rgba(51, 153, 255, 0.08);
  padding-left: 26px;
}

.nav-wrapper ul.dropdown-list li a:hover::before
{
  transform: scaleY(1);
}

.nav-wrapper ul.nav-list li:hover .dropdown-list
{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-wrapper ul.nav-list li .dropdown-list.show
{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Mega Menu Styles */
@media (min-width: 992px) {
  nav ul.dropdown-list.mega-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 750px;
    padding: 15px;
    gap: 5px;
  }

  .nav-wrapper ul.dropdown-list.mega-menu li a {
    padding: 10px 15px;
    white-space: nowrap;
  }
  
  .nav-wrapper ul.dropdown-list.mega-menu li a:hover {
    padding-left: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  nav ul.dropdown-list.mega-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 500px;
    padding: 10px;
  }
}



.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
	padding-bottom: 0;
}

.nav-wrapper .nav-list li .btn a::after
{
	display: none;
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--third-color);
}

@keyframes moveUp
{
  0%
  {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  100%
  {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }
}

.hamberger
{
  display: none;
}

.mobile .hamberger
{
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  cursor: pointer;
}

.mobile .hamberger span
{
  background: var(--third-color);
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
}

.mobile ul.nav-list
{
  background: var(--nav-bg);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: All .3s ease-in-out;
}

[data-theme="dark"] .mobile ul.nav-list {
  background: var(--nav-bg);
}

.hamberger, .brand
{
  z-index: 9999;
}

.brand a
{
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.brand img
{
	height: 50px;
	width: 50px;
	border-radius: 50%;
	vertical-align: middle;
	object-fit: cover;
}

.brand-text
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.brand-first
{
	font-size: 1.2rem;
	font-weight: 700;
	color: #0b3d91;
	line-height: 1;
}

.brand-second
{
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--third-color);
	line-height: 1.2;
}

.mobile ul.nav-list.open
{
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  overflow-y: auto;
}


.mobile .hamberger span
{
  transform-origin: left;
  transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a
{
  font-size: 20px;
  display: block;
  padding: 12px 0;
}

.mobile ul.nav-list li a::after
{
  display: none;
}

.mobile ul.dropdown-list
{
  position: relative;
  background: transparent;
  text-align: center;
  height: 0;
  overflow-y: hidden;
  transition: opacity 1s ease-in-out;
  padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list
{
  height: max-content;
  padding-top: 6px;
}

.mobile ul.nav-list li
{
  margin-left: 0;
  text-align: center;
}

.mobile .nav-wrapper ul.dropdown-list li a
{
  color: #7f8fa6;
}

.mobile .nav-wrapper ul.dropdown-list li a:hover
{
	color: var(--third-color);
}

.mobile .nav-wrapper
{
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
}

.mobile .brand
{
  width: 100%;
  justify-content: flex-start;
  z-index: 10001;
  position: fixed;
  top: 0;
  left: 0;
  padding: 18px 24px;
  background: var(--nav-bg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.mobile .brand a
{
  justify-content: flex-start;
}

.mobile .brand-text
{
  text-align: left;
}

.mobile .hamberger
{
  position: absolute;
  top: 16px;
  right: 24px;
}

.mobile nav
{
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--nav-bg);
  z-index: 9998;
}

.mobile .menu-container
{
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
}

.mobile ul.nav-list
{
  padding-top: 120px;
}

/*-------------------------- Menu style -------------------------*/


/*----------- Scroll to top --------------*/
#topBtn
{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--blue-color);
  color: #white;
  border: none;
  cursor: pointer;
  display: none;
}

#topBtn ion-icon
{
	color: #fff;
}
/*----------- Scroll to top --------------*/

/*----------- WhatsApp Floating Button --------------*/
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    width: 280px;
    justify-content: flex-start;
    padding-left: 15px;
}

.whatsapp-float .whatsapp-tooltip {
    display: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
    color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    display: block;
}

.whatsapp-float ion-icon {
    font-size: 35px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float ion-icon {
        font-size: 30px;
    }
    .whatsapp-float:hover {
        width: 260px;
    }
}
/*----------- WhatsApp Floating Button --------------*/

/*-------- Blue button ---------*/
.btn-blue
{
	background: var(--blue-color);
	transition: 0.3s ease-in-out;
}

.btn-blue:hover
{
	background: var(--yellow-color);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover > a
{
	color: var(--third-color);
}

.btn-blue
{
	background: var(--blue-color);
	transition: 0.3s ease-in-out;
}

.btn-blue:hover
{
	background: var(--yellow-color);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover > a
{
	color: var(--third-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow > a
{
	color: #000;
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow a
{
	color: var(--third-color);
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 0.6rem 1.5rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



/*----------------- Hero section styling ----------------*/
.hero
{
	background: linear-gradient(rgba(79, 177, 255, 0.4), rgba(51, 153, 255, 0.4)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero .hero-carousel-container
{	
	position: relative;
	width: 100%;
	height: 90vh;
	overflow: hidden;
}

.hero-carousel-track
{
	position: relative;
	height: 100%;
}

.hero-carousel-slide
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-carousel-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero-slide-content
{
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	padding: 0 2rem;
	max-width: 600px;
	animation: slideInUp 0.8s ease-out;
}

.hero-slide-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 5%;
	margin-bottom: 0;
}

.hero-figure-container {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	animation: slideInRight 1s ease-out;
}

.hero-figure {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	text-align: left;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-figure .amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--yellow-color);
	display: block;
	margin-top: 0.5rem;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-heading
{
	font-size: 2.8rem;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.hero-quick-quote
{
	margin-top: 0.8rem;
	padding: 0.5rem 1.1rem;
	border-radius: 32px;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	width: min(180px, 100%);
	text-align: center;
}
.hero-quick-quote ion-icon
{
	margin-right: 6px;
}
.hero-benefits
{
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

.offers-modal
{
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 20000;
}

.offers-modal.active
{
	opacity: 1;
	pointer-events: auto;
}

.offers-modal-content
{
	background: #fff;
	border-radius: 24px;
	padding: 2rem;
	min-width: 320px;
	max-width: 420px;
	text-align: center;
	position: relative;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.offers-modal-close
{
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	color: #444;
	font-size: 1.2rem;
	cursor: pointer;
}

.offers-modal h3
{
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	color: #111;
}

.offers-modal-buttons
{
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.offers-modal-buttons .btn
{
	width: 100%;
	text-transform: none;
	border-radius: 999px;
}

@media (max-width: 768px)
{
	.offers-modal-content
	{
		width: 90%;
		padding: 1.5rem;
	}

	.offers-modal-buttons
	{
		max-width: 320px;
		margin-inline: auto;
	}
}

.welcome-modal
{
	position: fixed;
	inset: 0;
	background-color: rgba(10, 16, 38, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 21000;
}

.welcome-modal.active
{
	opacity: 1;
	pointer-events: auto;
}

.welcome-modal-content
{
	background: #ffffff;
	width: min(92%, 420px);
	border-radius: 24px;
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	box-shadow: 0 40px 80px rgba(15, 23, 42, 0.25);
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.welcome-modal-close
{
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	background: transparent;
	border: none;
	color: #0f172a;
	cursor: pointer;
}

.welcome-modal-tagline
{
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: var(--blue-color);
	margin: 0;
}

.welcome-modal-title
{
	font-size: 1.6rem;
	margin: 0;
	color: #111827;
	line-height: 1.4;
	font-weight: 700;
}

.welcome-modal-description
{
	font-size: 1rem;
	color: #475467;
	margin: 0;
}

.welcome-modal-buttons
{
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 0.6rem;
}

.welcome-modal-button
{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-radius: 999px;
	padding: 0.85rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
}

@media (min-width: 640px)
{
	.welcome-modal-content
	{
		padding: 2.75rem 2.5rem;
	}

	.welcome-modal-buttons
	{
		flex-direction: row;
		justify-content: center;
	}

	.welcome-modal-button
	{
		max-width: 180px;
	}
}

.hero-benefit-item
{
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #ffffff;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.hero-benefit-item:hover
{
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateX(5px);
}

.hero-benefit-item ion-icon
{
	font-size: 1.5rem;
	flex-shrink: 0;
	color: var(--yellow-color);
}

.inner-row .inner-col
{
	margin: 1rem 0;
}

.hero-carousel-btn
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s ease;
}

.hero-carousel-btn:hover
{
	transform: translateY(-50%) scale(1.1);
	opacity: 0.7;
}

.hero-carousel-btn ion-icon
{
	font-size: 1.2rem;
	color: #003366;
}

.hero-carousel-prev
{
	left: 1rem;
}

.hero-carousel-next
{
	right: 1rem;
}

.hero-carousel-dots
{
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.8rem;
	z-index: 100;
}

.hero-dot
{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hero-dot.active
{
	background: var(--fourth-color);
	width: 28px;
	border-radius: 6px;
}

.hero-dot:hover
{
	background: var(--yellow-color);
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--fourth-color);
	background: var(--yellow-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-block;
}

.why-us-col:hover ion-icon
{
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 20px rgba(252, 185, 0, 0.3);
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 700;
	margin: 1rem 0 0.5rem 0;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 1.2rem 0;
	padding: 1.5rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input,
.input-field select,
.input-field textarea
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}

.input-field select
{
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2em 1.2em;
	padding-right: 2.5rem;
}

.input-field select:hover
{
	background: #e8f2ff;
}

.input-field select:focus
{
	outline: none;
	background-color: #e8f2ff;
}

.dropdown-checkbox-wrapper
{
	position: relative;
	margin-top: 0.5rem;
}

.dropdown-checkbox-toggle
{
	width: 100%;
	padding: 1rem;
	background: #f3f8ff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1rem;
	color: #333;
	transition: all 0.3s ease;
}

.dropdown-checkbox-toggle:hover
{
	background: #e8f2ff;
}

.dropdown-checkbox-toggle ion-icon
{
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.dropdown-checkbox-toggle.open ion-icon
{
	transform: rotate(180deg);
}

.dropdown-checkbox-menu
{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #ffffff;
	border: 1px solid #e0e8f0;
	border-radius: 5px;
	margin-top: 0.5rem;
	padding: 0.8rem 0;
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 100;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	max-height: 300px;
	overflow-y: auto;
}

.dropdown-checkbox-menu.open
{
	display: flex;
}

.checkbox-option
{
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

.checkbox-option:hover
{
	background: #f8f9fa;
}

.checkbox-option input[type="checkbox"]
{
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #3399ff;
	flex-shrink: 0;
	margin: 0;
}

.checkbox-option .checkbox-label
{
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	color: #333;
	text-transform: none;
	margin: 0;
	flex: 1;
}

/*----------------- Why Us section styling ---------------*/



/*----------------- Services section styling ---------------*/
.service-img
{
	border-radius: 5px;
	margin: 0;
	height: auto;
	max-height: 400px;
	width: 100%;
	object-fit: cover;
	display: block;
}

.service-img-overlay-container
{
	position: relative;
	margin-bottom: 2rem;
	overflow: hidden;
	border-radius: 5px;
}

.service-img-overlay-content
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	text-align: center;
	padding: 2rem;
}

.service-img-overlay-content .heading
{
	padding: 0.5rem 0;
	font-size: 2.8rem;
}

@media (max-width: 768px) {
	.service-img-overlay-content .heading {
		font-size: 1.8rem;
	}
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 12px;
	margin: 1.5rem 0;
	padding: 2rem;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: center;
}

.services .service:hover
{
	transform: translateY(-8px);
	box-shadow: rgba(51, 153, 255, 0.25) 0px 20px 40px;
	background: linear-gradient(135deg, rgba(51, 153, 255, 0.05) 0%, rgba(79, 177, 255, 0.05) 100%);
}

.service ion-icon
{
	color: var(--yellow-color);
	font-size: 2.6rem;
}

.service .service-heading
{
	font-weight: 600;
}

.service-btns
{
	display: flex;
	gap: 10px;
	margin-top: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.quick-quote-panel
{
	background: linear-gradient(135deg, #3399ff 0%, #2980b9 100%);
	color: #ffffff;
	padding: 3.5rem 0 3rem;
	border-radius: 0 0 28px 28px;
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.quick-quote-panel .heading
{
	color: #ffffff;
}

.quick-quote-intro
{
	text-align: center;
	margin-bottom: 2rem;
}

.quick-quote-links
{
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	max-width: 640px;
	margin: 0 auto;
}

.quick-quote-link
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--yellow-color);
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 14px;
	padding: 1.1rem 1.5rem;
	color: var(--third-color);
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.2px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.quick-quote-link ion-icon
{
	font-size: 1.2rem;
	color: var(--third-color);
}

.quick-quote-link:hover
{
	transform: translateY(-3px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
	background: var(--blue-color);
	color: var(--fourth-color);
}

.quick-quote-link:hover ion-icon
{
	color: var(--fourth-color);
}

@media (max-width: 768px)
{
	.quick-quote-panel
	{
		padding: 3rem 1rem 2rem;
		border-radius: 0;
	}

	.quick-quote-link
	{
		font-size: 0.95rem;
		padding: 0.9rem 1.25rem;
	}
}
/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 1.3rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--yellow-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about-highlights
{
	margin: 2rem 0;
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.about-highlight-line.highlight-link
{
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.about-highlight-line.highlight-link:hover
{
	opacity: 0.8;
}

.about-highlight-line ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
	font-size: 1rem;
	font-weight: 600;
}

.team-avatars
{
	display: flex;
	gap: 1rem;
	margin-left: auto;
}

.team-avatar-link
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.team-avatar-link:hover
{
	transform: scale(1.1);
}

.team-avatar-img
{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-color);
	transition: all 0.3s ease;
}

.team-avatar-link:hover .team-avatar-img
{
	border-color: var(--yellow-color);
	box-shadow: 0 0 8px rgba(51, 153, 255, 0.3);
}

.team-avatar-name
{
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--dark-color);
	text-align: center;
	white-space: nowrap;
}

.about-img
{
	border-radius: 6px;
	margin-top: 2rem;
}

.partners
{
	margin: 2rem 0;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    background: transparent;
    --partner-gap: 5rem;
}

@media (max-width: 767px) {
    .partners-slider {
        --partner-gap: 2rem;
    }
}

.partners-track {
    display: flex;
    gap: var(--partner-gap);
    width: max-content;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.partner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.partner-label {
    font-size: 0.75rem;
    color: var(--blue-color);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .partner-img {
        height: 40px;
    }
}

.partner-img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - (var(--partner-gap) / 2)));
    }
}
/*----------------- About us section styling ---------------*/




/*----------------- Our Clients Section Design ----------------*/
.clients-section {
    padding: 1rem 0;
    background: #ffffff;
    overflow: hidden;
}

.clients-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.clients-split {
    display: flex;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.clients-international-side {
    flex: 1;
    padding: 2rem 2rem 2rem 10%;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.clients-local-side {
    flex: 1;
    padding: 2rem 10% 2rem 2rem;
    background: #dceeff;
    position: relative;
    z-index: 2;
}

/* Slanted Vertical Divider */
.clients-local-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 100px;
    height: 100%;
    background: #dceeff;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    z-index: -1;
}

.clients-local-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 100px;
    height: 100%;
    background: var(--blue-color);
    opacity: 0.5;
    clip-path: polygon(0 0, 0 2px, calc(100% - 2px) 0, 100% 0);
    z-index: 1;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    height: 110px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(51, 153, 255, 0.1);
    border-color: var(--blue-color);
}

.client-card-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-side-header {
    margin-bottom: 1.5rem;
}

.client-side-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--third-color);
    position: relative;
    padding-bottom: 1rem;
}

.client-side-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-color);
}

@media (max-width: 600px) {
    .clients-split {
        flex-direction: column;
    }

    .clients-international-side {
        margin-top: 40px;
        padding: 4rem 1.5rem;
    }

    .clients-local-side {
        padding: 4rem 1.5rem;
    }

    .clients-local-side::before {
        bottom: -40px;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 0 100%);
        z-index: -1;
    }

    .clients-local-side::after {
        bottom: -40px;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 2px 0, 0 2px);
        background: var(--blue-color);
        opacity: 0.5;
        z-index: 1;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*----------------- Our Clients Section Design ----------------*/


/*----------------- Testimonial section styling --------------*/
.testimonial
{
	background: linear-gradient(rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.testimonial-profile
{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 1rem;
}

.profile-img
{
	border-radius: 50px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

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

.client-name
{
	font-size: 1.1rem;
	font-weight: 700;
	text-align: left;
}

.client-location
{
	text-align: left;
	opacity: 0.9;
}

.stars
{
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.stars ion-icon
{
	color: var(--yellow-color);
	font-size: 1.5rem;
	transition: transform 0.2s ease;
}

.stars ion-icon:hover
{
	transform: scale(1.1) rotate(10deg);
}
/*----------------- Testimonial section styling --------------*/


/*----------------- Agent card styling -----------------------*/
.agent-card
{
	text-align: center;
}

.agent-img
{
	border-radius: 50%;
}

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
}

.agent-number, .agent-email
{
	margin: 1rem 0;
	font-size: 0.9rem;
}
/*----------------- Agent card styling -----------------------*/


/*----------------- Footer styling ------------------*/
footer
{
	background: #3399ff;
	color: var(--fourth-color);
	padding: 2rem 0 1rem 0;
}

.footer-instant-services {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	text-align: left;
}

.footer-instant-services h3 {
	font-size: 1.1rem;
	margin-bottom: 0.6rem;
	color: var(--yellow-color);
}

.footer-instant-services ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	justify-content: flex-start;
	padding: 0;
	margin: 0;
}

.footer-instant-services ul li {
	font-size: 0.95rem;
}

.footer-instant-services ul li a {
	color: var(--fourth-color);
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.3s;
}

.footer-instant-services ul li a:hover {
	opacity: 1;
	color: var(--yellow-color);
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.footer-highlight {
	grid-column: 1 / -1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.footer-highlight p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.4;
	opacity: 0.85;
}

.footer-col h3 {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	color: var(--yellow-color);
}

.footer-col p {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.8;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.8rem;
}

.footer-col ul li a {
	color: var(--fourth-color);
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-col ul li a:hover {
	opacity: 1;
	color: var(--yellow-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-bottom-text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-bottom p {
	font-size: 0.85rem;
	opacity: 0.7;
	text-align: center;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	color: var(--fourth-color);
	font-size: 1.5rem;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--yellow-color);
}

@media screen and (max-width: 767px)
{
	.footer-instant-services ul
	{
		display: block;
		gap: 0;
	}

	.footer-instant-services ul li
	{
		margin-bottom: 0.6rem;
	}
}

/*----------------- Footer styling ------------------*/






/*--------------------------------------------------------------*/
/*-------------------- Mobile Screen Styling (< 768px) --------*/
/*--------------------------------------------------------------*/
@media screen and (max-width: 767px)
{
	:root
	{
		--heading-font-size: 1.2rem;
		--paragraph-font-size: 0.9rem;
	}

	html
	{
		font-size: 14px;
	}

	.container
	{
		padding: 1.5rem;
	}

	.heading
	{
		font-size: 1.8rem;
		padding: 0.8rem 0;
	}

	.sub-heading
	{
		font-size: 0.85rem;
	}

	.para-line
	{
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.row
	{
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.inner-col
	{
		width: 100%;
	}

	/*-------------- Hero section styling ------------------*/
	.hero .hero-carousel-container
	{
		height: 60vh;
	}

	.hero-heading
	{
		font-size: 1.6rem;
		line-height: 1;
		margin-top: 3.5rem;
	}

	.hero-slide-content
	{
		padding: 2rem 1rem 0 1rem;
		max-width: 100%;
	}

	.hero-slide-flex {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0;
	}

	.hero-figure-container {
		width: 100%;
		justify-content: flex-start;
		padding-left: 1rem;
		margin-top: 1rem;
	}

	.hero-figure {
		font-size: 1.4rem;
		text-align: left;
	}

	.hero-figure .amount {
		font-size: 2.2rem;
		margin-top: 0.5rem;
	}

	.hero-benefits
	{
		gap: 0.7rem;
		margin-top: 0.8rem;
	}

	.hero-benefit-item
	{
		font-size: 0.8rem;
		padding: 0.6rem 0.8rem;
		gap: 0.6rem;
	}

	.hero-benefit-item ion-icon
	{
		font-size: 1.2rem;
	}

	.hero-carousel-btn
	{
		width: 32px;
		height: 32px;
	}

	.hero-carousel-btn ion-icon
	{
		font-size: 1rem;
	}

	.hero-carousel-prev
	{
		left: 0.5rem;
	}

	.hero-carousel-next
	{
		right: 0.5rem;
	}

	.hero-carousel-dots
	{
		bottom: 1rem;
		gap: 0.6rem;
	}

	.hero-dot
	{
		width: 8px;
		height: 8px;
	}

	.hero-dot.active
	{
		width: 24px;
	}
	/*-------------- Hero section styling ------------------*/

	/*-------------- Navigation styling ------------------*/
	.menu-container
	{
		width: 100%;
		max-width: 95%;
	}

	.brand img
	{
		height: 40px;
		width: 40px;
	}

	.brand-first
	{
		font-size: 1rem;
	}

	.brand-second
	{
		font-size: 0.65rem;
	}

	.phone-btn span
	{
		display: none;
	}

	.phone-btn
	{
		padding: 10px 12px !important;
	}

	.nav-wrapper ul.nav-list li
	{
		margin-left: 0;
		padding: 0;
	}
	/*-------------- Navigation styling ------------------*/

	/*-------------- Top Bar styling ------------------*/
	.top-bar
	{
		position: relative;
		padding: 12px 0;
	}

	.top-bar-content
	{
		flex-direction: column;
		gap: 12px;
	}

	.top-bar-text
	{
		font-size: 0.9rem;
		text-align: center;
		margin-right: 0 !important;
	}

	.top-bar-message
	{
		align-items: center;
		text-align: center;
	}

	.top-bar-subtext
	{
		font-size: 0.8rem;
	}

	.top-bar-buttons
	{
		width: 100%;
		flex-direction: row;
		gap: 8px;
		justify-content: center;
	}

	.top-bar-btn
	{
		flex: 1;
		justify-content: center;
		padding: 6px 10px;
		font-size: 0.75rem;
	}

	nav
	{
		top: 0;
		position: sticky;
	}
	/*-------------- Top Bar styling ------------------*/

	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 2rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 100%;
	}

	.why-us-col
	{
		text-align: center;
	}

	.why-us-highlight-heading
	{
		font-size: 1.1rem;
	}

	.lead-form
	{
		margin: 1.5rem 0;
		padding: 1.5rem 1rem;
	}

	.input-field
	{
		margin: 1rem 0;
	}

	.input-field input
	{
		padding: 0.8rem;
		font-size: 0.95rem;
	}

	.btn-full-w
	{
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}

	.btn
	{
		padding: 0.5rem 1rem;
		font-size: 0.75rem;
	}

	.btn a
	{
		font-size: 0.9rem;
		letter-spacing: 0.3px;
	}
	/*-------------- Why us styling ---------------------*/

	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 100%;
		margin: 0 auto;
		font-size: 0.9rem;
	}

	.service-img
	{
		margin: 0 0 1rem 0;
		max-width: 100%;
		height: auto;
		max-height: 300px;
		width: 100%;
		object-fit: cover;
		display: block;
	}

	.services
	{
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin: 1.5rem 0;
	}

	.services .service
	{
		margin: 0;
		padding: 1.5rem 1rem;
		border-radius: 8px;
	}

	.service ion-icon
	{
		font-size: 2rem;
	}

	.service-heading
	{
		font-size: 1.1rem;
	}
	/*-------------- Services section styling --------------*/

	/*-------------- Overline section styling ---------------*/
	.overlines .row
	{
		flex-direction: column;
	}

	.overlines .row .col
	{
		margin: 1rem 0;
	}

	.overlines .row .col ion-icon
	{
		font-size: 2rem;
	}

	.overline-heading
	{
		font-size: 1.1rem;
	}

	.insurance-policies
	{
		margin: 1rem 0;
		max-width: 100%;
	}
	/*-------------- Overline section styling ---------------*/

	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 1.5rem;
	}

	.about-highlights
	{
		margin: 1rem 0;
	}

	.about-highlight-line
	{
		gap: 0.8rem;
		margin: 0.8rem 0;
	}

	.about-highlight-line ion-icon
	{
		font-size: 1.4rem;
	}

	.highlight-line-heading
	{
		font-size: 0.95rem;
	}

	.about-img
	{
		margin-top: 2rem;
		border-radius: 6px;
	}

	.partners
	{
		margin: 1.5rem 0;
	}
	/*-------------- About section styling ------------------*/

	/*-------------- Testimonial section styling ---------------*/
	.testimonial-profile
	{
		flex-direction: column;
		gap: 0.8rem;
		margin: 0.8rem;
	}

	.profile-img
	{
		width: 60px;
		height: 60px;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}

	.client-name
	{
		font-size: 1rem;
		text-align: center;
	}

	.client-location
	{
		text-align: center;
		font-size: 0.9rem;
	}

	.testimonial .container .para-line
	{
		max-width: 100%;
		font-size: 0.95rem;
	}

	.testimonial
	{
		padding: 2rem 0;
	}

	.stars
	{
		gap: 0.4rem;
	}

	.stars ion-icon
	{
		font-size: 1.3rem;
	}
	/*-------------- Testimonial section styling ---------------*/

	/*-------------- Scroll to top button ------------------*/
	#topBtn
	{
		bottom: 20px;
		right: 20px;
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	/*-------------- Scroll to top button ------------------*/

	/*-------------- Footer styling ------------------*/
	footer
	{
		padding: 2rem 0 1rem 0;
	}

	.footer-top
	{
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}

	.footer-col h3
	{
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}

	.footer-col p
	{
		font-size: 0.85rem;
	}

	.footer-col ul li
	{
		margin-bottom: 0.6rem;
	}

	.footer-col ul li a
	{
		font-size: 0.85rem;
	}

	.footer-bottom
	{
		flex-direction: column;
		gap: 0.8rem;
	}

	.footer-bottom p
	{
		font-size: 0.8rem;
		text-align: center;
	}

	.social-links
	{
		justify-content: center;
		gap: 0.8rem;
	}

	.social-links a
	{
		font-size: 1.3rem;
	}
	/*-------------- Footer styling ------------------*/
}

/*--------------------------------------------------------------*/
/*-------------------- Tablet Screen Styling (768px - 1024px) -*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px)
{
	:root
	{
		--heading-font-size: 1.4rem;
	}

	html
	{
		font-size: 15px;
	}

	.container
	{
		padding: 3rem 1.5rem;
	}

	.heading
	{
		font-size: 2.4rem;
		padding: 0.8rem 0;
	}

	.para-line
	{
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1.5rem;
	}

	.row .col
	{
		width: 48%;
	}

	.inner-row
	{
		display: flex;
		gap: 1.5rem;
	}

	/*-------------- Hero section styling ------------------*/
	.hero .hero-carousel-container
	{
		height: 70vh;
	}

	.hero-heading
	{
		font-size: 2.2rem;
		line-height: 1.15;
	}

	.hero-slide-content
	{
		padding: 0 1.5rem;
		max-width: 80%;
	}

	.hero-figure {
		font-size: 1.8rem;
	}

	.hero-figure .amount {
		font-size: 2.8rem;
	}

	.hero-carousel-btn
	{
		width: 36px;
		height: 36px;
	}

	.hero-carousel-btn ion-icon
	{
		font-size: 1.2rem;
	}

	/*-------------- Hero section styling ------------------*/

	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 3rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 55%;
	}

	.why-us-content .inner-row
	{
		margin-top: 1.5rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 2rem !important;
	}

	.input-field
	{
		margin: 1.2rem 0;
	}
	/*-------------- Why us styling ---------------------*/

	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 80%;
		margin: 0 auto;
	}

	.services
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1.5rem;
		margin: 2rem 0;
	}

	.services .service
	{
		padding: 1.8rem;
	}

	.service ion-icon
	{
		font-size: 2.4rem;
	}
	/*-------------- Services section styling --------------*/

	/*-------------- Overline section styling ---------------*/
	.overlines .row
	{
		flex-direction: row;
		gap: 2rem;
	}

	.overlines .row .col
	{
		margin: 1.5rem 0;
	}

	.overlines .row .col ion-icon
	{
		font-size: 2.4rem;
	}

	.overline-heading
	{
		font-size: 1.2rem;
	}

	.insurance-policies
	{
		margin: 1.5rem 0;
		max-width: 100%;
	}
	/*-------------- Overline section styling ---------------*/

	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 2.5rem;
	}

	.about-img
	{
		margin-top: 2rem;
	}

	.partners
	{
		margin-top: 1.5rem;
	}
	/*-------------- About section styling ------------------*/

	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 100%;
		font-size: 1rem;
	}

	.testimonial-profile
	{
		gap: 1rem;
	}

	.profile-img
	{
		border: 3px solid rgba(255, 255, 255, 0.3);
	}

	.testimonial
	{
		padding: 3rem 0;
	}

	.stars ion-icon
	{
		font-size: 1.4rem;
	}
	/*-------------- Testimonial section styling ---------------*/

	/*-------------- Footer styling ------------------*/
	footer
	{
		padding: 3rem 0 1.5rem 0;
	}

	.footer-top
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.footer-col h3
	{
		font-size: 1.2rem;
	}

	.footer-col ul li
	{
		margin-bottom: 0.7rem;
	}

	.footer-bottom
	{
		flex-direction: row;
		justify-content: space-between;
	}

	.footer-bottom p
	{
		text-align: left;
	}

	.social-links
	{
		gap: 0.8rem;
	}
	/*-------------- Footer styling ------------------*/
}

/*--------------------------------------------------------------*/
/*-------------------- Desktop Screen Styling (1025px+) -------*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 1025px)
{
	.container, .hero-container
	{
		max-width: 1180px;
		margin: 0 auto;
	}

	.container
	{
		padding: 1.5rem 0;
	}

	.heading
	{
		font-size: 3.2rem;
	}

	.para-line
	{
		line-height: 1.8;
	}

	.sub-heading
	{
		font-size: 1rem;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		gap: 2rem;
	}


	/*-------------- Hero section styling ------------------*/
	.hero-container .row > .hero-content
	{
		width: 140%;
	}

	.hero-heading
	{
		font-size: 4rem;
	}

	.hero
	{
		background: linear-gradient(rgba(79, 177, 255, 0.2), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/*-------------- Hero section styling ------------------*/


	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 5rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 150%;
	}

	.why-us-content .inner-row
	{
		margin-top: 2rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 3rem !important;
	}

	.input-field
	{
		margin: 1.5rem 0;
	}
	/*-------------- Why us styling ---------------------*/


	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 66%;
		margin: 0 auto;
	}

	.services
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2rem;
		align-items: center;
		justify-items: center;
	}

	/*-------------- Services section styling --------------*/



	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 4rem;
	}

	.partners
	{
		margin-top: 1.5rem;
	}
	/*-------------- About section styling ------------------*/


	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 840px;
		margin: 0 auto;
		font-size: 1.1rem;
	}

	.testimonial
	{
		padding: 1.5rem 0;
	}
	/*-------------- Testimonial section styling ---------------*/
}

.laugh-learn {
    position: relative;
    padding: 4.5rem 0;
    background: radial-gradient(circle at top right, rgba(252, 185, 0, 0.35), transparent 55%), linear-gradient(135deg, #08122b, #16264e 60%, #22395d);
    color: #f6f7fb;
    overflow: hidden;
}

.laugh-learn::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 10%;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(90px);
    z-index: 0;
}

.laugh-learn .container {
    position: relative;
    z-index: 1;
}

.laugh-learn-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.laugh-learn-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.laugh-learn-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(5, 14, 33, 0.45);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.laugh-learn-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 185, 0, 0.6);
    box-shadow: 0 25px 55px rgba(5, 14, 33, 0.55);
}

.laugh-learn-card p {
    color: #f5f6fb;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tip-emoji {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--yellow-color);
}

.tip-emoji ion-icon {
    font-size: 1.2rem;
    color: inherit;
}

.laugh-learn-balance {
    margin-top: 2.8rem;
    padding: 2.5rem;
    border-radius: 28px;
    background: rgba(7, 18, 45, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(5, 10, 30, 0.45);
}

.balance-heading span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fcb900;
    text-transform: uppercase;
}

.balance-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.balance-card {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-main {
    font-size: 0.95rem;
    color: #f5f6fb;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.balance-sub {
    font-size: 0.9rem;
    color: var(--yellow-color);
    font-weight: 700;
}

.balance-cta {
    margin-top: 1.8rem;
    text-align: center;
    color: #0b1e3f;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .laugh-learn-card {
        min-height: 170px;
    }

    .laugh-learn-balance {
        padding: 2rem;
    }
}

.laugh-page {
    padding: 1.5rem 0 4rem;
    background: #f6f8ff;
}

.laugh-page .container {
    position: relative;
    z-index: 1;
}

.laugh-page-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    background: #fff;
    border-radius: 2rem;
    padding: clamp(2.2rem, 3vw, 2.9rem);
    border: 1px solid rgba(51, 153, 255, 0.15);
    box-shadow: 0 25px 60px rgba(17, 34, 85, 0.08);
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.2;
    color: #0d1a2a;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.72rem;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
}

.hero-lede {
    font-size: 1rem;
    color: #343f5f;
    max-width: 32rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions span {
    font-size: 0.9rem;
    color: #536085;
    letter-spacing: 0.5px;
}

.hero-booking-btn {
    padding: 0.95rem 2.8rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-color), var(--yellow-color));
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(79, 177, 255, 0.55);
    border: none;
    letter-spacing: 0.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-booking-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 35px rgba(79, 177, 255, 0.75);
}

.hero-booking-btn:focus-visible {
    outline: 3px solid rgba(255, 197, 0, 0.8);
    outline-offset: 3px;
}

.laugh-page-hero-card {
    background: #fdfdff;
    border-radius: 1.6rem;
    padding: 2rem;
    border: 1px solid rgba(19, 32, 73, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.hero-panel-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.hero-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}

.hero-panel-list li {
    font-size: 0.95rem;
    color: #1b2a45;
    display: flex;
    gap: 0.75rem;
}

.hero-panel-list strong {
    color: var(--blue-color);
}

.hero-panel-image {
    width: 100%;
    border-radius: 1.4rem;
    object-fit: contain;
    height: auto;
    max-height: 420px;
    display: block;
}

.laugh-page-section {
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 1.8rem;
    padding: clamp(1.8rem, 2vw, 2.6rem);
    border: 1px solid rgba(11, 26, 60, 0.08);
    box-shadow: 0 25px 60px rgba(11, 26, 60, 0.08);
}

.laugh-page-section:first-of-type {
    box-shadow: 0 40px 70px rgba(79, 81, 119, 0.12);
}

.laugh-page-section h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    color: #0b2045;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.laugh-page-section p {
    color: #1b2340;
    line-height: 1.6;
}

.laugh-page-tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
}

.laugh-page-tip-list li {
    padding: 0.85rem 1rem 0.85rem 2rem;
    background: #f9fbff;
    border-radius: 1rem;
    border: 1px solid rgba(79, 177, 255, 0.35);
    font-weight: 500;
    color: #0c2748;
    position: relative;
}

.laugh-page-tip-list li::before {
    content: '•';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.insurance-facts-grid {
    margin-bottom: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.insurance-fact {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
    background: #fdfdff;
    border: 1px solid rgba(79, 177, 255, 0.25);
    box-shadow: 0 20px 35px rgba(11, 26, 60, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-bottom: 1.8rem;
}

.insurance-fact:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 177, 255, 0.4);
    box-shadow: 0 25px 45px rgba(11, 26, 60, 0.2);
}

.insurance-fact ion-icon {
    font-size: 1.6rem;
    color: var(--blue-color);
    min-width: 1.6rem;
}

.inline-icon ion-icon {
    font-size: 1rem;
    vertical-align: middle;
    color: var(--blue-color);
    margin-right: 0.35rem;
}

.inline-gif img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.45rem;
    vertical-align: middle;
    border: 1px solid rgba(79, 177, 255, 0.4);
}

.insurance-fact p {
    margin: 0 0 0.8rem;
    font-weight: 500;
    color: #0b1f44;
    line-height: 1.4;
}

.card-link {
    position: absolute;
    bottom: 0.9rem;
    right: 1.1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-color);
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    padding: 0.1rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.card-link:hover {
    color: #0d1f44;
    border-color: var(--blue-color);
}

.remember-section {
    background: linear-gradient(145deg, #e8f1ff, #f6f8ff);
    border: 1px solid rgba(79, 177, 255, 0.25);
    box-shadow: 0 20px 45px rgba(11, 26, 60, 0.1);
}

.remember-section h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #0d2244;
}

.remember-section .laugh-page-tip-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

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

.remember-columns > div {
    background: #fff;
    border-radius: 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(11, 26, 60, 0.08);
    box-shadow: 0 12px 30px rgba(11, 26, 60, 0.08);
}

.laugh-page-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.laugh-page-tip-card {
    padding: 1.4rem;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid rgba(13, 26, 42, 0.08);
    box-shadow: 0 20px 35px rgba(11, 26, 60, 0.07);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.laugh-page-tip-media {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffe7b8, #ffd9e0 60%, #ffc6ff);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.8), 0 18px 35px rgba(17, 34, 85, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.55);
    margin-bottom: 0.85rem;
    position: relative;
    overflow: hidden;
}

.laugh-page-tip-media::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: 6px;
    border-radius: 12px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.65), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
    filter: blur(1px);
}

.laugh-page-tip-media ion-icon,
.laugh-page-tip-media svg,
.laugh-page-tip-media img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: 70%;
    color: #1a2a45;
}

.laugh-page-tip-media ion-icon {
    font-size: 1.4rem;
}

.laugh-page-tip-graphic {
    filter: drop-shadow(0 8px 16px rgba(17, 34, 85, 0.35));
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.laugh-page-tip-card:hover .laugh-page-tip-graphic {
    transform: translateY(-3px);
}

.laugh-page-tip-card:nth-child(4n+1) .laugh-page-tip-graphic {
    filter: drop-shadow(0 8px 16px rgba(17, 34, 85, 0.35)) hue-rotate(0deg) saturate(1.25);
}

.laugh-page-tip-card:nth-child(4n+2) .laugh-page-tip-graphic {
    filter: drop-shadow(0 8px 16px rgba(17, 34, 85, 0.35)) hue-rotate(70deg) saturate(1.25);
}

.laugh-page-tip-card:nth-child(4n+3) .laugh-page-tip-graphic {
    filter: drop-shadow(0 8px 16px rgba(17, 34, 85, 0.35)) hue-rotate(140deg) saturate(1.25);
}

.laugh-page-tip-card:nth-child(4n) .laugh-page-tip-graphic {
    filter: drop-shadow(0 8px 16px rgba(17, 34, 85, 0.35)) hue-rotate(210deg) saturate(1.25);
}

.laugh-page-tip-media img {
    width: 92%;
    height: 92%;
}

.laugh-page-tip-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1d2a44;
}

.laugh-page-tip-card:hover {
    transform: translateY(-6px);
    border-color: rgba(51, 153, 255, 0.4);
    box-shadow: 0 30px 55px rgba(11, 26, 60, 0.18);
}

.laugh-page-focus {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
}

.laugh-page-focus-card {
    padding: 1.8rem;
    border-radius: 1.6rem;
    background: #fff;
    border: 1px solid rgba(11, 26, 60, 0.08);
    box-shadow: 0 18px 40px rgba(11, 26, 60, 0.08);
}

.laugh-page-focus-card strong {
    font-size: 1.05rem;
    color: #0b1e3f;
}

.laugh-page-focus-card small {
    color: rgba(17, 34, 85, 0.7);
}

.laugh-page-focus-card .balance-main {
    font-size: 1rem;
    font-weight: 600;
    color: #111b3a;
}

.laugh-page-focus-card .balance-sub {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.laugh-page-footnote {
    margin-top: 1.8rem;
    text-align: center;
    font-weight: 600;
    color: #536085;
    letter-spacing: 0.1rem;
}

.laugh-page-stats {
    margin-top: 2.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.laugh-page-stat {
    flex: 1;
    min-width: 200px;
    border-radius: 1.2rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
    border: 1px solid rgba(13, 26, 42, 0.1);
    box-shadow: 0 15px 30px rgba(11, 26, 60, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.laugh-page-stat strong {
    font-size: 1.8rem;
    color: #111b3a;
}

.laugh-page-stat span {
    font-size: 0.85rem;
    color: #536085;
    text-transform: none;
}

.laugh-page-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 2rem;
    background: linear-gradient(125deg, var(--primary-color), var(--blue-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 35px 60px rgba(79, 177, 255, 0.4);
}

.laugh-page-cta h3 {
    margin: 0;
    font-size: 1.8rem;
}

.laugh-page-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.laugh-page-cta .btn {
    background: #fff;
    color: var(--third-color);
    border-radius: 999px;
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .laugh-page {
    background: linear-gradient(180deg, #040510 0%, #090f26 100%);
    color: var(--text-color);
}

[data-theme="dark"] .laugh-page-hero,
[data-theme="dark"] .laugh-page-section,
[data-theme="dark"] .laugh-page-grid .laugh-page-tip-card,
[data-theme="dark"] .laugh-page-hero-card,
[data-theme="dark"] .insurance-fact,
[data-theme="dark"] .remember-section,
[data-theme="dark"] .remember-columns > div,
[data-theme="dark"] .laugh-page-focus-card,
[data-theme="dark"] .laugh-page-stat {
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .laugh-page-section:first-of-type {
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.65);
}

[data-theme="dark"] .laugh-page-section h2,
[data-theme="dark"] .laugh-page-section p,
[data-theme="dark"] .laugh-page-tip-card p,
[data-theme="dark"] .insurance-fact p,
[data-theme="dark"] .remember-section h3,
[data-theme="dark"] .laugh-page-footnote,
[data-theme="dark"] .laugh-page-stat strong,
[data-theme="dark"] .laugh-page-stat span {
    color: var(--text-color);
}

[data-theme="dark"] .card-link {
    color: var(--secondary-color);
}

[data-theme="dark"] .laugh-page-tip-list li {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .laugh-page-tip-list li::before {
    color: var(--secondary-color);
}

[data-theme="dark"] .laugh-page-tip-media {
    background: linear-gradient(145deg, rgba(252, 185, 0, 0.15), rgba(79, 177, 255, 0.18));
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .laugh-page-tip-media::after {
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3), transparent 65%);
}

[data-theme="dark"] .laugh-page-tip-graphic {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.65));
}

[data-theme="dark"] .remember-section {
    background: linear-gradient(160deg, rgba(12, 14, 33, 0.9), rgba(4, 6, 17, 0.95));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .remember-columns > div {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .laugh-page-cta {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.65);
}

[data-theme="dark"] .hero-actions span {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .insurance-fact ion-icon {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .laugh-page-hero {
        padding: 2.2rem;
    }

    .laugh-page-cta {
        flex-direction: column;
        text-align: center;
    }

    .laugh-page-stats {
        flex-direction: column;
    }

    .laugh-page-tip-list,
    .remember-section .laugh-page-tip-list {
        grid-template-columns: 1fr;
    }

    .remember-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .laugh-page {
        padding: 1rem 0 3rem;
    }

    .laugh-page-hero {
        padding: 1.6rem 1.25rem;
    }

    .laugh-page-hero-card {
        padding: 1.1rem;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-booking-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions span {
        font-size: 0.85rem;
        text-align: left;
    }

    .hero-kicker {
        letter-spacing: 0.25rem;
    }

    .hero-lede {
        max-width: 100%;
    }

    .laugh-page-section,
    .laugh-page-grid,
    .insurance-facts-grid,
    .laugh-page-focus,
    .remember-columns {
        gap: 1rem;
    }

    .insurance-facts-grid {
        grid-template-columns: 1fr;
    }

    .laugh-page-cta {
        padding: 2rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-actions span {
        font-size: 0.8rem;
    }

    .hero-booking-btn {
        padding: 0.85rem 1.5rem;
    }

    .hero-kicker {
        letter-spacing: 0.18rem;
    }

    .laugh-page-section h2 {
        font-size: 1.6rem;
    }

    .laugh-page-tip-card {
        padding: 1.1rem;
    }

    .laugh-page-cta {
        padding: 1.8rem 1.2rem;
    }

    .laugh-page-stats {
        gap: 0.8rem;
    }

    .laugh-page-stat {
        min-width: 100%;
    }
}

/*-------------------------- Modal Styles -------------------------*/
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 30000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #fff;
    color: var(--text-color);
    width: min(92%, 420px);
    max-width: 420px;
    border-radius: 20px;
    position: relative;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--blue-color);
}

.modal-container h2 {
    text-align: left;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.payment-details {
    margin: 20px 0;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--blue-color);
}

.payment-details p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.payment-details strong {
    color: var(--blue-color);
}

[data-theme="dark"] .modal-container {
    background: #111727;
    color: var(--text-color);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.55);
}

[data-theme="dark"] .payment-details {
    margin: 18px 0;
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

[data-theme="dark"] .payment-details strong {
    color: #e2f1ff;
}

[data-theme="dark"] .modal-close {
    color: var(--text-color);
}

@media (max-width: 500px) {
    .modal-container {
        padding: 22px 18px 20px;
        border-radius: 14px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 1.3rem;
    left: 1.3rem;
    transform: translateY(130%);
    width: min(300px, 90%);
    background: linear-gradient(145deg, rgba(51, 153, 255, 0.9), rgba(252, 185, 0, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
    color: #0f172a;
    z-index: 11000;
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner--dismissed {
    transform: translateY(140%);
    opacity: 0;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cookie-banner__copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cookie-banner__copy h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #0f172a;
}

.cookie-banner__copy p {
    margin: 0;
    line-height: 1.4;
    color: rgba(15, 23, 42, 0.85);
    font-size: 0.8rem;
}

.cookie-banner__details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.cookie-banner__details[aria-hidden="false"] {
    max-height: 120px;
    opacity: 1;
}

.cookie-banner__toggle {
    border: none;
    background: none;
    color: #0f172a;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    align-self: flex-start;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cookie-banner__toggle--active {
    color: var(--blue-color);
    transform: translateY(-1px);
}

.cookie-banner__actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-top: 0.2rem;
}

.cookie-btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cookie-btn--ghost {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
    color: #0f172a;
}

.cookie-btn--ghost:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.cookie-btn--primary {
    background: #facc15;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    border-color: transparent;
}

.cookie-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.35);
}

.cookie-banner__footnote {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(15, 23, 42, 0.65);
    letter-spacing: 0.1px;
    text-align: left;
    margin-top: 0.35rem;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cookie-banner--visible::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        transform: translateY(120%);
        width: min(280px, 90%);
    }

    .cookie-banner__actions {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 100%;
        left: 0.5rem;
        bottom: 0.5rem;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }

    .cookie-btn {
        flex: 1;
    }
}
