:root {
	--accent: #17d2c9;
	--primary: #0d6efd
}

* {
	box-sizing: border-box
}

body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	background: #f7f9fb;
	color: #24292e
}

.fw-extrabold {
	font-weight: 800
}

.hero {
	background: linear-gradient(180deg, #eaf7ff 0%, #ffffff 100%)
}

.hero .accent {
	display: inline-block;
	width: 120px;
	height: 16px;
	background: linear-gradient(90deg, #17d2c9, #ff6aa6);
	border-radius: 8px;
	margin-left: .4rem;
	vertical-align: middle
}

section .accent {
	display: inline-block;
	width: 90px;
	height: 12px;
	background: linear-gradient(90deg, #17d2c9, #ff6aa6);
	border-radius: 6px;
	margin-left: .4rem;
	vertical-align: middle
}

.navbar-brand {
	letter-spacing: .2px
}

.feature .icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center
}

.pricing-card {
	border: 0
}

.pricing-card .badge {
	border-radius: 999px
}

footer .btn {
	border-radius: 999px
}

#timeSlots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: .5rem
}

#timeSlots .slot {
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: .5rem 1rem;
	background: #fff;
	color: #111827;
	cursor: pointer;
	transition: .15s ease
}

#timeSlots .slot:hover {
	box-shadow: 0 2px 6px rgba(0, 0, 0, .06)
}

#timeSlots .slot.active {
	background: #22c55e;
	color: #fff;
	border-color: #16a34a
}

/* green for selected */
#timeSlots .slot.blocked {
	background: #f3f4f6 !important;
	color: #6b7280 !important;
	border-color: #d1d5db !important;
	cursor: not-allowed
}

/* gray for booked/blocked */
/* Optional label for self-booked (no color override to avoid confusion) */
/* #timeSlots .slot.mine{outline:2px dashed #b91c1c} */
.card {
	border-radius: 1rem
}

/* styles.css — adapted to match the Podly logo
	 Replace your existing assets/css/styles.css with this file
	 - Uses a purple→pink→orange gradient taken from the logo
	 - Makes brand text use gradient fill to visually tie into logo
	 - Larger, well-aligned brand logo and compact nav for better balance
	 - Buttons, accents and hero styles updated to match the visual identity
*/

:root {
	--brand-gradient: linear-gradient(90deg, #5130d9 0%, #b634d3 35%, #ff4b7a 70%, #ff8c3a 100%);
	--brand-start: #5130d9;
	--brand-mid: #b634d3;
	--brand-end: #ff8c3a;
	--muted: #6c6f76;
	--card-shadow: 0 6px 18px rgba(28, 28, 28, 0.06);
	--radius: 12px;
}

/* Base layout */
html,
body {
	height: 100%;
	margin: 0;
	font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	font-size: 16px;
	color: #222;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
}

.container {
	max-width: 1180px
}

/* Brand / navbar */
.navbar-brand {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.brand-logo {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(81, 48, 217, 0.12);
}

.brand-logo-sm {
	width: 40px;
	height: 40px;
}

.navbar .fw-bold {
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1;
	/* gradient text to match logo */
	background: var(--brand-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Tweak navbar spacing on larger screens */
.navbar {
	padding: .55rem 0;
}

.navbar .nav-link {
	color: var(--muted);
}

.navbar .nav-link:hover {
	color: var(--brand-start);
}

/* Buttons: modern gradient primary */
.btn-primary {
	background: var(--brand-gradient) !important;
	border: none !important;
	box-shadow: 0 6px 18px rgba(181, 56, 210, 0.12);
	border-radius: 12px !important;
	padding: .65rem 1.05rem !important;
	font-weight: 600;
}

.btn-primary:focus,
.btn-primary:active {
	box-shadow: 0 8px 22px rgba(181, 56, 210, 0.18);
}

.btn-outline-primary {
	border-radius: 12px;
	border-color: rgba(80, 50, 217, 0.16);
	color: var(--brand-start);
}

.btn-success {
	border-radius: 10px;
}

/* Hero */
.hero {
	padding-top: 72px;
	padding-bottom: 48px;
}

.hero .display-5 {
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero .accent::after {
	content: '';
	display: inline-block;
	height: 8px;
	width: 160px;
	margin-left: 10px;
	vertical-align: middle;
	border-radius: 999px;
	background: linear-gradient(90deg, #b634d3, #ff4b7a, #ff8c3a);
}

.hero .lead {
	font-size: 1.05rem;
}

.hero-img {
	min-height: 320px;
	background: #f8f8fa;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Feature cards */
.feature.card {
	border: none;
	border-radius: 12px;
	box-shadow: var(--card-shadow);
}

.feature .card-title {
	font-weight: 700;
}

/* Gallery images */
.rounded-3 {
	border-radius: 12px !important;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

/* Pricing card */
.pricing-card {
	border-radius: 14px;
	overflow: hidden;
	border: none;
	box-shadow: 0 20px 40px rgba(80, 50, 217, 0.06);
}

.pricing-card .badge {
	background: linear-gradient(90deg, #a12bd6, #ff4b7a);
}

.pricing-card .card-body {
	padding: 1.5rem;
}

/* Location card */
.card.shadow-sm {
	border-radius: 12px;
}

/* Booking area */
#booking .card {
	border-radius: 12px;
	box-shadow: var(--card-shadow);
}

#timeSlots .btn {
	border-radius: 10px;
}

#slotSummary {
	color: var(--muted);
}

/* Footer */
footer {
	background: #0f1720;
}

footer .text-light {
	color: #e6eefc;
}

footer .small {
	color: #9aa1ac;
}

/* Accent elements and little helpers */
.accent {
	position: relative;
}

.accent::before {
	content: '';
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-50%);
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: var(--brand-mid);
	opacity: .95;
}

.small.text-muted {
	color: var(--muted);
}

/* Responsive tweaks */
@media (max-width:991px) {
	.brand-logo {
		width: 56px;
		height: 56px;
	}

	.navbar .fw-bold {
		font-size: 1rem;
	}

	.hero-img {
		min-height: 220px;
	}
}

/* Accessibility: visible focus outlines */
a:focus,
button:focus,
input:focus {
	outline: 3px solid rgba(86, 47, 187, 0.12);
	outline-offset: 2px;
}

/* Polishing: make form controls a bit softer */
.form-control,
.form-select,
textarea {
	border-radius: 10px;
	box-shadow: none;
}

.form-text .badge {
	border-radius: 8px;
}

/* Optional: gradient text utility (useful for headings) */
.text-gradient {
	background: var(--brand-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Make sure the logo image sits crisply in high-DPI */
.brand-logo,
.brand-logo-sm {
	image-rendering: -webkit-optimize-contrast;
}

/* Phone Input with Indian Flag and Country Code */
.phone-input-wrapper {
	position: relative;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	border: 1px solid #dee2e6;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	width: 100%;
}

.phone-input-wrapper:focus-within {
	border-color: #86b7fe;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.phone-prefix {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	background: #f8f9fa;
	border-right: 1px solid #dee2e6;
	font-weight: 500;
	color: #495057;
	white-space: nowrap;
	user-select: none;
	flex-shrink: 0;
	/* Prevent prefix from shrinking */
}

.phone-prefix .flag {
	display: inline-block;
	width: 24px;
	height: 18px;
	object-fit: contain;
	vertical-align: middle;
	line-height: 1;
}

.phone-prefix .code {
	font-size: 0.95rem;
	color: #212529;
}

.phone-input-wrapper input[type="tel"] {
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	flex: 1 1 auto !important;
	/* Allow growing and shrinking */
	width: auto !important;
	/* Override bootstrap width:100% */
	padding: 0.65rem 0.75rem !important;
	margin: 0 !important;
	background: transparent !important;
}

.phone-input-wrapper input[type="tel"]:focus {
	border: none !important;
	box-shadow: none !important;
}

/* Phone Validation States */
.phone-input-wrapper.valid {
	border-color: #28a745;
	background: #f8fff8;
}

.phone-input-wrapper.valid .phone-prefix {
	background: #e8f5e9;
	border-right-color: #28a745;
}

.phone-input-wrapper.invalid {
	border-color: #dc3545;
	background: #fff8f8;
}

.phone-input-wrapper.invalid .phone-prefix {
	background: #ffebee;
	border-right-color: #dc3545;
}

.phone-validation-feedback {
	display: none;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.phone-validation-feedback.valid {
	display: block;
	color: #28a745;
}

.phone-validation-feedback.invalid {
	display: block;
	color: #dc3545;
}

/* Floating WhatsApp Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	background-color: #128C7E;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	color: #fff;
}

.whatsapp-float svg {
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Animation pulse effect */
@keyframes whatsapp-pulse {
	0% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
	}

	50% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.whatsapp-float {
	animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
	animation: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 56px;
		height: 56px;
	}

	.whatsapp-float svg {
		width: 28px;
		height: 28px;
	}
}

/* Join Our Team Card */
.join-team-card {
	transition: all 0.3s ease;
	cursor: pointer;
}

.join-team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4) !important;
}

.join-team-card .btn {
	transition: all 0.3s ease;
}

.join-team-card:hover .btn {
	background: white;
	color: #667eea;
	transform: scale(1.05);
}

/* Hosts Horizontal Carousel */
#hosts .row {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	gap: 1rem;
	padding-bottom: 1rem;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE and Edge */
}

#hosts .row::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari, Opera */
}

#hosts .col-md-6.col-lg-3 {
	flex: 0 0 23%;
	max-width: 23%;
	min-width: 250px;
}

@media (max-width: 768px) {
	#hosts .col-md-6.col-lg-3 {
		flex: 0 0 80%;
		max-width: 80%;
	}
}

/* Booking Legend */
.booking-legend {
	border: 1px solid #e9ecef;
}

.legend-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}