/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #1f1f1f;
	--primary-light: #2a2a2a;
	/* --secondary: #e46c2f; */
	--secondary: #146b3a;
	--tertiary: #146b3a;
	--gradient: linear-gradient(135deg, #146b3a 0%, #7cae92 100%);
}

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

h1 {
	font-size: 45px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

li {
  	list-style-type: none;
}

/* Section Background */
.home
{
	height: 100vh;
	position: relative;
}

.services,
.work,
.testimonial,
.footer,
.bg-light-gray {
  	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.feature,
.location,
.contact,
.bg-dark-secondary,
.bg-dark-gray {
  	background-color: var(--primary-light);
}

.bottom {
  	background-color: black;
}

/* Gradient Border And Background On Icons */
.section-heading,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
		/* background: linear-gradient(135deg, #e44e03 0%, #d5814d 100%); */
				background: linear-gradient(135deg, #146b3a 0%, #71d39b 100%);


	/* background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#0ee951),
		to(#00dabf)
	); */
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.footer a{
	color: #ffffff;
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: var(--primary);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 108px;
	height: 32px;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 5.25rem;
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #eee;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: linear-gradient(135deg, #146b3a 0%, #7cae92 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


.home .carousel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 20%, rgba(22, 122, 78, 0.32), transparent 34%),
        radial-gradient(circle at 8% 78%, rgba(124, 174, 146, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(28, 38, 47, 0.94), rgba(28, 38, 47, 0.76));
}

.home .carousel-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.5;
}

.home .carousel-overlay::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: 110px;
    border-radius: 50%;
    background: rgba(22, 122, 78, 0.22);
    filter: blur(5px);
}

/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
  	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
	color: white;
	box-shadow: none;
	cursor: pointer;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(2px, 2px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #0ee951;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  	padding: 0;
}

.slider-1 .testimonial-text {
  	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
  	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
  	color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}

/* Custom Css */
.logo{
	height: 65px;
}
.home #header-carousel,
.home #header-carousel .carousel-inner,
.home #header-carousel .carousel-item {
    height: 100vh;
}

.home #header-carousel .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

#header-carousel .carousel-caption {
    z-index: 2;
}

.custom-carousel-dots {
    position: absolute;
    bottom: 35px;
    z-index: 10;
    margin-bottom: 0;
}

.custom-carousel-dots button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    opacity: 0.6;
    border: 0 !important;
    margin: 0 6px !important;
}

.custom-carousel-dots button.active {
    opacity: 1;
    background-color: var(--secondary) !important;
}
.sub-title{
	position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #ffffff;
	/* margin-bottom: 40px; */
}
.sub-title::before{
	content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--secondary) !important;
}
.sub-title::after{
	content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--secondary) !important;
	}
	.text-white{
		color: #ffffff;
	}

.feature .feature-box:hover {
    background: var(--secondary);
    border-color: var(--secondary) !important;
}
.feature .feature-box:hover * {
    color: #FFFFFF !important;
}
.feature-box a:hover{
	color: #e55718;
}
.h-50px{
	height: 50px;
}

/* Landing Pages */
/*** Facts ***/
.facts {
    background: var(--gradient), url(../assets/images/bg.png);
}
.page-header {
    position: relative;
    padding-top: 20rem;
    padding-bottom: 6rem;
    background: url(../assets/images/header.png) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(20, 20, 20, 0.55); */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, #1a1a1a, #1f1f1f);
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, #1a1a1a, #1f1f1f);
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, #1a1a1a, #1f1f1f);
        text-align: center;
    }
}
.accordion-body{
	color: #000000;
	opacity: 0.7;
}
.collapsible-list li{
	list-style: unset !important;
	opacity :0.7;
}

/* ============================= */
/* Booking Page */
/* ============================= */

.booking-hero {
    position: relative;
    min-height: 90vh;
    padding: 160px 0 90px;
    background:
        linear-gradient(rgba(28, 38, 47, 0.88), rgba(28, 38, 47, 0.92)),
        url("../assets/images/car_2.png") center center / cover no-repeat;
    overflow: hidden;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(22, 122, 78, 0.28), transparent 35%),
        linear-gradient(135deg, rgba(22, 122, 78, 0.16), rgba(28, 38, 47, 0.96));
    z-index: 1;
}

.booking-hero .container {
    z-index: 2;
}

.booking-title {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
}

.booking-points {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

.booking-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1rem;
}

.booking-point i {
    width: 32px;
    height: 32px;
    background: #167a4e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

.booking-card {
    background: rgba(255, 255, 255, 0.96);
    color: #1c262f;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.booking-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #167a4e 0%, #7cae92 100%);
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.booking-card h3 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c262f;
}

.booking-card p {
    color: #4d5963;
}

.booking-info {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.booking-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1c262f;
    font-weight: 500;
}

.booking-info i {
    color: #167a4e;
}

.calendly-section {
    background: #1c262f;
}

.calendly-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: 18px;
    overflow: hidden;
}

.booking-cta {
    background:
        linear-gradient(135deg, rgba(22, 122, 78, 0.96), rgba(28, 38, 47, 0.96));
}

.booking-cta h2 {
    color: #ffffff;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 991px) {
    .booking-hero {
        padding: 130px 0 70px;
        min-height: auto;
    }

    .booking-card {
        padding: 28px;
    }

    .calendly-inline-widget {
        height: 700px !important;
    }
	    .cookie-consent-content {
        grid-template-columns: 1fr;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .booking-title {
        font-size: 2.2rem;
    }

    .booking-card {
        padding: 24px;
        border-radius: 18px;
    }

    .calendly-wrapper {
        padding: 6px;
        border-radius: 18px;
    }

    .calendly-inline-widget {
        height: 680px !important;
    }
}

.feature {
    overflow: visible;
}

.feature-box {
    min-height: 100%;
}

@media (max-width: 767px) {
    .home #header-carousel,
    .home #header-carousel .carousel-inner,
    .home #header-carousel .carousel-item,
    .home #header-carousel .carousel-item img {
        height: 100vh;
    }

    .home .carousel-overlay {
        background:
            radial-gradient(circle at 75% 18%, rgba(22, 122, 78, 0.24), transparent 34%),
            linear-gradient(135deg, rgba(28, 38, 47, 0.96), rgba(28, 38, 47, 0.82));
    }

    .home .carousel-overlay::before {
        background-size: 42px 42px;
        opacity: 0.4;
    }

    .home .carousel-overlay::after {
        width: 300px;
        height: 300px;
        right: -120px;
        top: 90px;
    }

	.feature {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .feature .row {
        overflow: visible !important;
    }

    .feature-box {
        margin-bottom: 0;
    }
	 .cookie-consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        transform: none;
        border-radius: 12px;
    }

    .cookie-consent-content {
        padding: 14px;
    }

    .cookie-consent-text h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .cookie-consent-text p {
        font-size: 12.5px;
        line-height: 1.45;
        margin-bottom: 5px;
    }

    .cookie-policy-link {
        font-size: 12.5px;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 13px;
    }

    .cookie-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        text-align: center;
        white-space: normal;
    }

    .cookie-settings-dialog {
        width: calc(100% - 24px);
        max-height: 88vh;
        margin: 6vh auto;
        border-radius: 14px;
    }

    .cookie-settings-header {
        padding: 14px 16px;
    }

    .cookie-settings-header h4 {
        font-size: 17px;
    }

    .cookie-settings-body {
        padding: 12px 16px;
        max-height: 58vh;
    }

    .cookie-option {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }

    .cookie-option h5 {
        font-size: 14px;
    }

    .cookie-option p {
        font-size: 12.5px;
    }

    .cookie-switch {
        margin-top: 0;
    }

    .cookie-settings-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 16px;
    }
}
.h-100px{
	height: 100px;
}
.nav-tabs .nav-link.active{
	color: #ffffff !important;
    background: var(--secondary) !important;
}
/* FAQ image jump fix */
.faq-section {
    overflow: visible;
}

.faq-content-wrapper {
    width: 90%;
}

.faq-section .row {
    align-items: flex-start !important;
}

.faq-image-wrapper {
    position: sticky;
    top: 120px;
}

.faq-image {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    border-radius: 18px;
}

/* Mobile */
@media (max-width: 991px) {
    .faq-content-wrapper {
        width: 100%;
    }

    .faq-image-wrapper {
        position: static;
    }
}
.fs-13 {
    font-size: 13px;
}

/* Homepage Services Preview */
.service-link-list {
    display: grid;
    gap: 18px;
}

.service-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link-card:hover,
.service-link-card.active {
    background: rgba(22, 122, 78, 0.22);
    border-color: rgba(22, 122, 78, 0.7);
    transform: translateX(6px);
    color: #ffffff;
}

.service-link-card span {
    display: inline-block;
    color: #167a4e;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-link-card h5 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.service-link-card i {
    color: #167a4e;
}

.service-preview-image {
    position: relative;
    min-height: 560px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}

.service-preview-overlay {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    padding: 32px;
    border-radius: 20px;
    background: rgba(28, 38, 47, 0.86);
    backdrop-filter: blur(8px);
}

.service-preview-overlay h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.service-preview-overlay p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

/* Service Detail Sections */
.service-detail-section {
    scroll-margin-top: 95px;
}

.service-detail-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
}

.service-detail-list p {
    color: #ffffff;
    margin-bottom: 10px;
}

.service-detail-image {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-detail-image:hover img {
    transform: scale(1.04);
}

/* Mobile */
@media (max-width: 991px) {
    .service-preview-image,
    .service-preview-image img {
        min-height: 380px;
    }

    .service-preview-overlay {
        position: static;
        border-radius: 0;
    }

    .service-link-card:hover,
    .service-link-card.active {
        transform: none;
    }

    .service-detail-section {
        scroll-margin-top: 80px;
    }

    .service-detail-image,
    .service-detail-image img {
        min-height: 340px;
    }

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

/* Modern Service Hero */
.service-hero {
    position: relative;
    padding: 190px 0 110px;
    background:
        linear-gradient(135deg, rgba(28, 38, 47, 0.96), rgba(28, 38, 47, 0.88)),
        radial-gradient(circle at top right, rgba(22, 122, 78, 0.36), transparent 35%),
        radial-gradient(circle at bottom left, rgba(124, 174, 146, 0.18), transparent 35%);
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: 80px;
    border-radius: 50%;
    background: rgba(22, 122, 78, 0.18);
    filter: blur(2px);
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(124, 174, 146, 0.13);
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.5;
}

.service-hero .container {
    z-index: 2;
}

.service-hero-content h1 {
    color: #ffffff;
    font-size: clamp(2.0rem, 4vw, 4rem);
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-hero-content h1 span {
    color: #167a4e;
}

.service-hero-content p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.service-outline-btn:hover {
    color: #ffffff;
    border-color: #167a4e;
    background: rgba(22, 122, 78, 0.22);
}

.service-hero-card-wrapper {
    display: grid;
    gap: 18px;
}

.service-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-hero-card:hover {
    transform: translateY(-6px);
    color: #ffffff;
    border-color: rgba(22, 122, 78, 0.75);
    background: rgba(22, 122, 78, 0.20);
}

.service-hero-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #167a4e 0%, #7cae92 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.service-hero-card h5 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-hero-card p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 991px) {
    .service-hero {
        padding: 140px 0 70px;
    }

    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-hero-card {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .service-hero-actions {
        display: grid;
    }

    .service-hero-actions .btn {
        width: 100%;
    }

    .service-hero-card {
        flex-direction: column;
    }
}

.project-banner-section {
    position: relative;
    min-height: 380px;
    background: url("../assets/images/banner.jpeg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 27, 34, 0.68);
    z-index: 1;
}

.project-banner-section .container {
    z-index: 2;
}

.project-banner-section h3 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 620px;
    padding: 190px 0 110px;
    background:
        linear-gradient(135deg, rgba(28, 38, 47, 0.92), rgba(28, 38, 47, 0.82)),
        url("../assets/images/header.png") center center / cover no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.5;
    z-index: 1;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: 90px;
    border-radius: 50%;
    background: rgba(22, 122, 78, 0.22);
    filter: blur(4px);
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(22, 122, 78, 0.32), transparent 34%),
        radial-gradient(circle at 8% 78%, rgba(124, 174, 146, 0.16), transparent 32%);
    z-index: 1;
}

.about-hero .container {
    z-index: 2;
}

.about-hero h1 {
    color: #ffffff;
    font-size: clamp(2.0rem, 4vw, 4.0rem);
    line-height: 1.08;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-hero h1 span {
    color: #167a4e;
    display: block;
}

.about-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.about-outline-btn:hover {
    color: #ffffff;
    border-color: rgba(22, 122, 78, 0.9);
    background: rgba(22, 122, 78, 0.22);
}

/* Mobile */
@media (max-width: 991px) {
    .about-hero {
        min-height: auto;
        padding: 145px 0 80px;
    }

    .about-hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 575px) {
    .about-hero {
        padding: 130px 0 65px;
    }

    .about-hero-actions {
        display: grid;
    }

    .about-hero-actions .btn {
        width: 100%;
    }
}
/* Very small mobile */
@media (max-width: 380px) {
   .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-consent-content {
        padding: 12px;
    }

    .cookie-consent-text h4 {
        font-size: 15px;
    }

    .cookie-consent-text p,
    .cookie-policy-link,
    .cookie-option p {
        font-size: 12px;
    }

    .cookie-btn {
        padding: 9px 10px;
        font-size: 12.5px;
    }

    .cookie-settings-dialog {
        width: calc(100% - 20px);
        margin: 5vh auto;
    }
}

/* =========================================================
   Production cleanup and responsive refinements
   ========================================================= */
html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

section {
    overflow-x: clip;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link[aria-current="page"] {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.footer-link p {
    margin-bottom: 0;
}

/* Image utilities replacing inline styles */
.tab-image-col {
    min-height: 350px;
}

.tab-image {
    object-fit: cover;
}

/* Booking calendar replaces inline Calendly sizing */
.booking-calendar {
    min-width: 320px;
    height: 760px;
}

/* FAQ image height match without jumping */
.faq-section {
    overflow: visible;
}

.faq-content-wrapper {
    width: 90%;
}

.faq-section .row {
    align-items: stretch !important;
}

.faq-section .col-lg-5 {
    align-items: stretch;
}

.faq-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 620px;
    border-radius: 18px;
    overflow: hidden;
    position: static;
}

.faq-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* Modern Service Hero moved from inline page CSS */
.service-hero {
    position: relative;
    isolation: isolate;
    padding: 190px 0 110px;
    background:
        radial-gradient(circle at 80% 18%, rgba(22, 122, 78, 0.34), transparent 34%),
        radial-gradient(circle at 8% 78%, rgba(124, 174, 146, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(28, 38, 47, 0.98), rgba(28, 38, 47, 0.92));
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.55;
    z-index: -1;
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: 90px;
    border-radius: 50%;
    background: rgba(22, 122, 78, 0.16);
    filter: blur(4px);
    z-index: -1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.08;
    font-weight: 500;
    margin-bottom: 24px;
}

.service-hero-content h1 span {
    color: #167a4e;
}

.service-hero-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.service-outline-btn:hover {
    color: #ffffff;
    border-color: rgba(22, 122, 78, 0.9);
    background: rgba(22, 122, 78, 0.22);
}

.service-hero-card-wrapper {
    display: grid;
    gap: 18px;
}

.service-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-hero-card:nth-child(2) {
    transform: translateX(18px);
}

.service-hero-card:hover {
    transform: translateY(-6px);
    color: #ffffff;
    border-color: rgba(22, 122, 78, 0.75);
    background: rgba(22, 122, 78, 0.20);
}

.service-hero-card:nth-child(2):hover {
    transform: translateX(18px) translateY(-6px);
}

.service-hero-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #167a4e 0%, #7cae92 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 14px 34px rgba(22, 122, 78, 0.24);
}

.service-hero-card h5 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-hero-card p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-overview-panel,
.service-detail-card {
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.service-intro-image {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.service-detail-image {
    width: 100%;
    height: 350px;
    min-height: auto;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Better legal page contrast */
.ex-basic-1 {
    background-color: var(--primary);
    color: #ffffff;
}

.ex-basic-1 .text-box {
    color: #1f1f1f;
    border-radius: 18px;
}

.ex-basic-1 a {
    color: #167a4e;
}
/* ============================= */
/* Cookie Consent Popup */
/* ============================= */
.cookie-consent-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    width: min(92%, 720px);
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(28, 38, 47, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-consent-content {
    display: block;
    padding: 16px 18px;
}

.cookie-consent-text h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 6px;
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.cookie-policy-link {
    color: #71d39b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.cookie-policy-link:hover {
    color: #ffffff;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.cookie-btn {
    border: 1px solid transparent;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.cookie-btn-primary {
    color: #ffffff;
    background: #146b3a;
    border-color: #146b3a;
}

.cookie-btn-primary:hover {
    background: #167a4e;
    border-color: #167a4e;
}

.cookie-btn-outline {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}

.cookie-btn-outline:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.42);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.cookie-settings-modal.show {
    display: block;
}

.cookie-settings-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.cookie-settings-dialog {
    position: relative;
    width: min(92%, 480px);
    max-height: 86vh;
    margin: 7vh auto;
    background: #1c262f;
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-settings-header h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.cookie-close-btn {
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.cookie-settings-body {
    padding: 16px 20px;
    max-height: 54vh;
    overflow-y: auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cookie-option:last-child {
    border-bottom: 0;
}

.cookie-option h5 {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 4px;
}

.cookie-option p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    width: 46px;
    min-width: 46px;
    height: 26px;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    transition: 0.25s;
}

.cookie-switch span::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 4px;
    bottom: 4px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.25s;
}

.cookie-switch input:checked + span {
    background: #146b3a;
}

.cookie-switch input:checked + span::before {
    transform: translateX(20px);
}

.cookie-switch input:disabled + span {
    opacity: 0.75;
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 991px) {
    .faq-content-wrapper {
        width: 100%;
    }

    .faq-image-wrapper,
    .faq-image {
        min-height: auto;
        height: auto;
    }

    .service-hero {
        padding: 140px 0 72px;
    }

    .service-hero-card:nth-child(2),
    .service-hero-card:nth-child(2):hover {
        transform: none;
    }

    .service-intro-image {
        height: 290px;
    }

    .service-overview-panel,
    .service-detail-card {
        padding: 26px;
    }

    .service-detail-image {
        height: 280px;
        margin-top: 20px;
    }

    .booking-calendar {
        height: 700px;
    }

}

@media (max-width: 575px) {
    .service-hero {
        padding: 128px 0 58px;
    }

    .service-hero-actions {
        display: grid;
    }

    .service-hero-actions .btn {
        width: 100%;
    }

    .service-hero-card {
        flex-direction: column;
    }

    .service-detail-image {
        height: 235px;
    }

    .service-detail-card,
    .service-overview-panel {
        padding: 22px;
    }

    .booking-calendar {
        height: 680px;
    }
}
