@font-face {
	font-family: "InstrumentSans";
	src: url("/assets/fonts/InstrumentSans/InstrumentSans-Regular.ttf");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Solitus";
	src: url("/assets/fonts/Solitus.ttf");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Solitus";
	src: url("/assets/fonts/Solitus.ttf");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Solitus";
	src: url("/assets/fonts/Solitus.ttf");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Solitus";
	src: url("/assets/fonts/Solitus.ttf");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
	src: url("/assets/fonts/MaterialIcons/MaterialIcons.woff");
}

/* Override any potential framework fonts */
.material-icons {
	font-family: "Material Icons" !important;
}



html {
	scroll-behavior: smooth;
	font-display: swap;
    height; 100%;
}

:root {
	--primary-font: "InstrumentSans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--radius: 16px;
    --display-font-family: "Solitus";
    /* --vm-bharatgas-blue: #0099ff; */
    /* --vm-bharatgas-yellow: #ffe600; */
    --vm-bharatgas-blue: #D8C4B6;
    --vm-bharatgas-yellow: #dc2626;
    --cool-red: #dc2626;
    --cool-blue: #D8C4B6;
    --space-cadet: #392F5A;
    --champagne: #F1E0C5;
    --accent-color: #BF9264;
    --accent-hl-color: #F0E0C9;
    --accent-btn-color: #CAA479;
    --cool-silver: #e9e9e9;
    --accent-light-color: #FFF1D5;
}

/* Base styles */
*,
	*::before,
	*::after {
		font-family: var(--primary-font);
	}

body {
    background-color: var(--accent-light-color); 
	font-family: var(--primary-font);
	font-size: 0.96em;
	overflow-x: hidden;
    height; 100%;
    margin: 0;
    padding: 0;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.contact-body {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: space-between;
	align-items: center;
	justify-content: center;
}

.location-grid {
	text-align: center;
	margin: 0 auto;
	columns: 3;
}

.location-grid > * {
	text-align: center;
	border-radius: var(--radius);
	padding: 8px;
	background-color: #f4f4f4;
}

header {
    position: fixed;
	width: 100%;
    z-index: 100;
}

@keyframes navBlurFadeIn {
	0% {
		opacity: 0;
		filter: blur(8px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
	}
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

section {
    height; 100%;
}

nav {
    background-color: var(--accent-light-color);
    border-bottom: 1px solid var(--cool-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 16px;
    z-index: 1;
}

.nav-start-section {
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hamburger {
    display: none;
}

.nav-end-section {
	display: flex;
    gap: 8px;
	animation: navBlurFadeIn 0.4s ease-out 100ms forwards;
}

.nav-pill {
  background: var(--cool-silver);
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 0 16px;
  height: 2.2em;
  display: flex;
  align-items: center;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-pill:hover {
    background: white;
}


.hero-logo {
    content: url("/assets/smoli.png");
    margin-right: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-url-box {
    width: 100%;
    padding: 16px;
    background-color: #fff;
    border-radius: 32px;
}

input[type=text] {
    border: dashed var(--champagne);
    border-radius: 16px;
    width: 92%;
    padding: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

input[type=text]:focus {
    outline: none;
}

input[type=button] {
    color: white;
    background-color: var(--space-cadet);
    border-radius: 16px;
    padding: 16px;
    margin: 8px;
}

.nav-pill:hover {
  color: #000;
}

/* Add support for Safari */
@supports (-webkit-backdrop-filter: none) {
	.nav-pills {
		-webkit-backdrop-filter: blur(8px);
	}
}

.book-now-btn {
	background: var(--vm-bharatgas-blue);
	color: white;
	border: none;
	padding: 0 16px;
	height: 40px;
	display: flex;
	align-items: center;
	border-radius: 100px;
	transition: all 0.3s ease;
	font-weight: 600;
}

.book-now-btn:hover {
	background: #1557b0;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	color: white;
}

.book-now.loading {
	background: #ccc;
	cursor: not-allowed;
	opacity: 0.7;
}

:focus {
	outline: 2px solid var(--cool-blue);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.defaultMargin {
	padding: 64px 32px;
	margin-bottom: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Section container styles */
.section-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

h1 {
	font-size: 36px !important;
	font-weight: 700 !important;
	color: var(--accent-color) !important;
}

h2 {
	font-size: 28px !important;
	font-weight: 600 !important;
	color: var(--accent-color) !important;
}

h3 {
	font-size: 22px !important;
	font-weight: 500 !important;
	color: rgba(0, 0, 0, 0.8) !important;
}

h4 {
	font-size: 20px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.8);
}

h5 {
	font-size: 17px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.8);
}

code,
pre {
	line-height: 1;
	font: 1em monospace;
	font-weight: 500;
}

a {
	color: rgba(0, 0, 0, 0.6);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s, font-weight 0.3s;
}

a:hover {
	color: var(--cool-blue);
	text-decoration: none;
}

a:active {
	color: #000000;
}

table {
	border: 1px solid #ddd;
	border-radius: 8px;
}

table thead th {
	border-bottom: 1px solid #ddd;
	font-style: normal;
	background: #f8f8f8;
}

tr {
	border-bottom: 1px solid #ddd;
}

td {
	padding: 0.62em;
}

.customLink {
	scroll-behavior: smooth;
}

.CTA {
	border-radius: 100px;
	color: var(--cool-blue);
	font-weight: 600;
	border: none;
	background: rgba(29, 128, 195, 0.14);
	display: inline-flex;
	padding: 8px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.CTA:hover {
	background-color: var(--cool-blue);
	color: rgba(255, 255, 255, 1);
}

.caption {
	margin: 0;
}

.contact-section {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-info {
	flex: 1;
	margin-right: 20px;
}

.contact-card {
	padding: 24px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.contact-card p,
.contact-card h3 {
	margin: 0;
	font-weight: 600;
}

.contact-map {
	flex: 1;
	border: none;
	border-radius: 12px;
}

.collapsible-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e0e0e0;
	padding: 20px 0;
}

.collapsible-content {
	padding: 20px 0;
}

.emergency-cta {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 100;
}

.emergency-button {
	display: flex;
	align-items: center;
	gap: 12px;
	background: white;
	border: 1px solid rgba(220, 38, 38, 0.2);
	padding: 12px 24px;
	border-radius: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
	0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.emergency-button:hover {
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.emergency-icon {
	font-size: 24px !important;
	color: var(--cool-red);
}

.emergency-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.emergency-text p {
	font-size: 12px;
	color: #4b5563;
	margin: 0;
}

.emergency-text h3 {
	font-size: 16px !important;
	color: var(--cool-red) !important;
	margin: 0;
}

.emergency-label {
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
}

.emergency-number {
	font-size: 22px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.8);
}

.card,
.btnCard {
	border: none;
	display: flex;
	padding: 24px 36px;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	max-width: 500px;
	height: 100%;
	justify-content: center;
	background: #fafafa;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btnCard:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(29, 128, 195, 0.1),
	0 6px 6px rgba(29, 128, 195, 0.05);
}

.bigP {
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
}

.direction {
	display: flex;
	flex-direction: row;
	gap: 32px;
	width: 100%;
	justify-content: center;
}

.brand1 {
	background-color: var(--cool-blue);
}

.brand2 {
	background-color: rgba(248, 226, 18, 0.14);
}

/* Modal styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
}

.modal-content {
	background: white;
	width: 90%;
	max-width: 500px;
	margin: 2rem auto;
	padding: 2rem;
	border-radius: 12px;
	position: relative;
}

.close-btn {
	position: absolute;
	right: 1.5rem;
	top: 1rem;
	font-size: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
	padding: 12px 16px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--cool-blue);
	box-shadow: 0 0 0 3px rgba(29, 128, 195, 0.1);
}

.form-group .error-message {
	display: none;
	color: var(--cool-red);
	font-size: 13px;
	margin-top: 4px;
}

.form-group.error input {
	border-color: var(--cool-red);
}

.form-group.error .error-message {
	display: block;
}

.submit-btn {
	background: var(--accent-color);
	color: white;
	border: none;
	padding: 0.8rem;
	border-radius: 100px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* Video Container Styles */
.video-container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
	0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
	0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	background-color: rgba(33, 33, 33, 0.8);
	border: none;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.play-button:hover {
	background-color: #ff0000;
}

.video-wrapper.playing .video-thumbnail,
.video-wrapper.playing .play-button {
	opacity: 0;
	pointer-events: none;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* Collapsible section title */
.collapsible-title {
	font-size: 28px;
	font-weight: 700;
	color: black;
}

/* Mobile menu */
#mobileMenu {
	transform: translateY(-1rem);
}

#mobileMenu.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Cards container */
.cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/* Card base styles */
.btnCard {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 24px;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	min-height: 120px;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btnCard:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(29, 128, 195, 0.1),
	0 6px 6px rgba(29, 128, 195, 0.05);
}

/* Update image sizes for both sections */
.btnCard img {
	width: 36px;
	height: 36px;
}

.btnCard h3 {
	font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.cards-container {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		padding: 0 24px;
	}
}


/* Contact section */
#Contact .card {
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 32px;
}

#Contact .card > div {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	width: 100%;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.contact-link:hover {
	color: var(--cool-blue);
}

.contact-link .{
	font-size: 20px;
	transition: transform 0.3s ease;
}

.contact-link:hover .{
	transform: translateX(2px);
}

@supports (-webkit-backdrop-filter: none) {
	.emergency-button {
		-webkit-backdrop-filter: blur(8px);
	}
}

/* About Bharatgas Section */
.about-bharatgas {
	width: 100%;
}

.about-bharatgas .subtitle {
	font-size: 20px;
	color: #666;
	margin-bottom: 48px;
	padding: 0 8em;
}

.about-content {
	display: grid;
	gap: 32px;
	width: 100%;
}

.main-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	text-align: right;
	width: 100%;
	margin-left: auto;
}

.features {
	margin-top: 16px;
	width: 100%;
}

.features h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 24px;
}

.features ul {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 16px;
	width: 100%;
}

.features li {
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}

.features li strong {
	color: #000;
}

.closing-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	text-align: right;
	width: 100%;
	margin-left: auto;
}


.text-gray-600 {
	font-family: "InstrumentSans", -apple-system, BlinkMacSystemFont, "Segoe UI",
	Roboto, sans-serif;
}

/* About card styles */
.about-card {
	background: #fafafa;
	border-radius: 8px;
	padding: 80px;
	margin-bottom: 64px;
}

.about-card-content {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 48px;
	max-width: 1200px;
	margin: 0 auto;
}

.about-card-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 48px;
}

.about-card-right {
	flex: 1;
	border-radius: 8px;
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 450px;
}

.about-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
	text-align: left;
}


.video-container {
	width: 100%;
	height: 100%;
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

p {
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
}

.price-row {
    width: 90%;
    max-width: 80em;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    grid-template-rows: repeat(4, auto) 1fr auto;
    grid-gap: 16px;
}

.price-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    border-radius: 16px;
    box-shadow: 1px 1px 1px var(--cool-blue);
    padding: 8px;
    margin: 4px;
}

section#pricing > * {
    margin: 32px auto;
}

.price-card:nth-child(2) {
    transform: scale(1.1);
    background-color: var(--accent-hl-color);
}

.call-out {
    background: white;
    border-radius: 8px;
    padding: 4px;
    margin: 0px 8px;
}

.plan-name {
    margin: 0px;
    // background-color: var(--cool-silver);
    background: linear-gradient(90deg,rgba(233, 233, 233, 1) 0%, rgba(240, 240, 240, 1) 51%, rgba(233, 233, 233, 1) 100%);
    border-radius: 8px;
    padding: 8px;
}

.plan-name span:nth-child(1) {
    font-family: var(--display-font-family);
    font-weight: 700;
    font-size: 2em;
}

.price {
    margin: 0px;
}

.price span:nth-child(1) {
    font-family: var(--display-font-family);
    font-size: 3em;
    font-weight: 900;
}

.price-desc h3 span {
    font-size: 8px;
}

.price-desc ul {
    text-align: left;
    margin: 0px;
}

.price-desc li {
    margin: 8px auto;
}

/* Add specific styles for Useful Links section */
#services .btnCard {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
}

#services .btnCard img {
	flex-shrink: 0;
}

#services .btnCard h3 {
	text-align: left;
	margin: 0;
}

/* Keep Book Refill section centered */
section:not(#services) .btnCard {
	align-items: center;
	text-align: center;
}


/* Add specific margin for sections */
section {
	margin-bottom: 80px;
}

/* Location section styles */
.direction.reverse {
	align-items: center;
	flex-wrap: wrap;
	gap: 64px;
}

.direction.reverse img {
	box-shadow: none;
}



/* Lottie animation container styles */
.lottie-container {
	display: flex;
	justify-content: center;
	width: 64px;
}

/* Awards section styles */
.awards-container {
	position: relative;
	width: 100%;
	padding: 20px 0;
	overflow: visible;
}

.awards-scroll {
	display: flex;
	gap: 24px;
	overflow-x: scroll;
	width: 100%;
	cursor: grab;
	user-select: none;
	position: relative;
	padding: 16px 0;
	margin-right: -32px; /* Allow overflow on right side */
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.awards-scroll::-webkit-scrollbar {
	display: none;
}

.awards-scroll.dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.awards-scroll.dragging .award-card {
	pointer-events: none;
}

.award-card {
	min-width: 280px;
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	transform-origin: center center;
	margin-right: 0;
	height: 204px;
}

.award-title {
	color: var(--cool-blue);
	font-size: 20px;
	font-weight: 600;
}

.award-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.award-winner {
	font-size: 17px;
	font-weight: 700;
	color: #000000;
}

.award-year {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.6);
}

@keyframes blurFadeIn {
	0% {
		opacity: 0;
		filter: blur(8px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0);
	}
}

@keyframes heroImageBlurIn {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero {
	height: 100vh;
	display: flex;
    flex-direction: column;
	align-items: center;
    padding: 100px 16px 0px 16px;
	position: relative;
	overflow: hidden;
	animation: heroImageBlurIn 0.8s ease-out 100ms forwards;
    margin: 0 auto;
}

.check-img {
    content: url("/assets/check-circle.png");
    width: 16px;
    height: 16px;
}

.hero::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
}

h1 {
	font-size: 48px;
    text-align: center;
	line-height: 1.2;
	margin: 1.5rem 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	font-family: "Solitus", -apple-system, BlinkMacSystemFont, "Segoe UI",
	Roboto, sans-serif;
	letter-spacing: -0.02em;
}

.hero p, .hero a {
	font-size: 18px;
    text-align: center;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.8);
	letter-spacing: -0.01em;
	animation: blurFadeIn 0.8s ease-out forwards;
}


/* Skeleton loading styles */
@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

/* Contact section specific card styles */
.contact-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 24px;
	background: #fafafa;
	border-radius: 12px;
}

.contact-card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}

.contact-card-header {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-icon {
	width: 48px;
	height: 48px;
}

/* Book refill section specific styles */
.book-refill .btnCard {
	gap: 0;
	min-height: auto;
	padding: 16px;
	background: #fafafa;
}

.book-refill .btnCard:hover {
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(29, 128, 195, 0.1),
	0 6px 6px rgba(29, 128, 195, 0.05);
}

.book-refill .btnCard img {
	width: 80px;
	height: 80px;
}

/* Contact section layout */
.contact-grid {
	display: grid;
	grid-template-columns: auto 1.5fr;
	gap: 32px;
	width: 100%;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 200px;
}

/* Contact form styles */
.contact-form-container {
	background: #fafafa;
	border-radius: 16px;
	padding: 24px;
	position: relative;
}

.form-header {
	margin-bottom: 20px;
}

.form-header h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-header p {
	color: rgba(0, 0, 0, 0.6);
	font-size: 15px;
}

.contact-form {
	display: flex;
	flex-direction: column;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 15px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.8);
}

.form-group input,
.form-group textarea {
	padding: 8px 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--cool-blue);
	box-shadow: 0 0 0 3px rgba(29, 128, 195, 0.1);
}

.form-group .error-message {
	display: none;
	color: var(--cool-red);
	font-size: 13px;
	margin-top: 4px;
}

.form-group.error input {
	border-color: var(--cool-red);
}

.form-group.error .error-message {
	display: block;
}


.pricing-btn {
	align-items: center;
	border-color: var(--accent-btn-color);
	border-radius: 8px;
    background-color: var(--accent-btn-color);
	color: white;
	display: flex;
	font-weight: 600;
	padding: 16px 16px;
}

.submit-btn {
	background: var(--accent-btn-color);
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.submit-btn:hover {
	background: var(--accent-color);
}


.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}


.message-icon {
	position: absolute;
	top: -20px;
	right: 24px;
	width: 40px;
	height: 40px;
	z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.footer {
    background-color: rgb(243,244,246);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: center;
}

.footer h3 {
	text-align: center;
}

.footer-content {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	gap: 48px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-section {
	text-align: center;
	min-width: 200px;
}

.footer-section h3 {
	margin-bottom: 16px;
	color: #0c334e;
}

.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
}

.footer-logo {
	margin-bottom: 1em;
}


.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.footer-nav,
.footer-social {
	display: flex;
	gap: 1.5em;
	justify-content: center;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
	margin-top: 1em;
}

.footer a {
	text-decoration: none;
	color: inherit;
}



@media (max-width: 480px) {
    .nav-logo {
        height: 32px;
        content: url('/assets/favicon/favicon-32x32.png');
    }

    .book-now-btn {
        filter: invert(28%) sepia(100%) hue-rotate(-180deg) saturate(3);
        height: 30px;
        text-indent: -9999px;
        background-color: transparent;
        background-image: url('assets/book.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
    }

    /* FIXME Shouldn't this be the other way around? */
    .nav-start-section {
        gap: 0px;
    }

    .book-refill .btnCard img {
        width: 56px;
        height: 56px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }

    .btnCard {
        padding: 20px;
    }

    .defaultMargin {
        margin-bottom: 48px;
    }

    section {
        margin-bottom: 48px;
    }

    #services .btnCard {
        padding: 16px;
        gap: 12px;
    }
    .about-section-container {
        gap: 24px;
    }

}

@media (max-width: 768px) {

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    .about-section-container {
        flex-direction: column;
        gap: 32px;
    }

    .about-section-container > div:first-child {
        order: 1; /* Move text to top */
        text-align: center;
    }

    .about-section-container > div:first-child h2 br {
        display: none; /* Remove line break in heading on mobile */
    }

    .about-section-container > div:last-child {
        order: 2; /* Move video to bottom */
        width: 100%;
    }

    .lottie-container {
    }

    /* Update the container for mobile */
    .about-section-container > div:first-child > div {
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        min-width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .footer-section {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .book-refill .btnCard img {
        width: 64px;
        height: 64px;
    }

    #services .btnCard {
        padding: 20px;
        gap: 16px;
    }
    .direction.reverse {
        text-align: center;
    }

    .direction.reverse > div {
        flex: 1 1 100%; /* Take full width */
    }

    /* Center align the text container */
    .direction.reverse > div:last-child {
        align-items: center;
        text-align: center;
    }

    /* Center align the text content */
    .direction.reverse > div:last-child > div {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Center align paragraph text */
    .direction.reverse > div:last-child > div p {
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Center align the button */
    .direction.reverse > div:last-child > a {
        align-self: center;
    }

    /* Center the image */
    .direction.reverse > div:first-child {
        justify-content: center;
    }

    /* Adjust image size */
    .direction.reverse img {
        max-width: 100%;
        width: 100%;
    }

    .about-card {
        padding: 32px;
        margin: 0 24px;
        border-radius: 8px;
    }

    .about-card-content {
        flex-direction: column;
    }

    .about-card-left {
        padding-top: 0;
    }

    .about-card h2 {
        font-size: 28px;
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
    }

    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
        padding: 0 16px;
    }

    .btnCard {
        padding: 20px;
        min-height: 100px;
    }

    .defaultMargin {
        padding: 48px 24px;
    }

    .direction {
        flex-direction: column;
        gap: 24px;
    }

    .reverse {
        flex-direction: column-reverse;
    }


    .hamburger {
		display: block;
        position: absolute;
		z-index: 9999;
		aspect-ratio: 1;
		width: 2rem;;
		background: url("assets/menu.png");
		background-repeat; no-repeat;
		border: 0;
		top: 2rem;
		right: 2rem;
    }

    .cards-container {
        gap: 24px;
    }

    .btnCard,
    .card {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-width: unset;
    }

    #services .btnCard {
        width: 100%;
    }

    .flex-col {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        gap: 3rem;
    }

    section {
        margin-bottom: 64px;
    }

    /* Contact section mobile styles */
    .contact-card {
        width: 100%;
    }

    .contact-card-content {
        width: 100%;
    }

    .contact-link {
        width: 100%;
        justify-content: space-between;
    }

    #contact .section-container {
        width: 100%;
    }

    #contact .direction {
        width: 100%;
    }

    .video-container {
        margin: 0 -1rem;
    }

    .video-wrapper {
        border-radius: 0;
    }
}


