@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

:root {
	--primary: #1E4D8A;
	--primary-dark: #153a6b;
	--primary-light: #2a5fa3;
	--accent: #F4C542;
	--accent-dark: #d4a836;
	--accent-light: #f6d066;
	--bg: #F8F9FB;
	--bg-white: #ffffff;
	--text: #333333;
	--text-light: #666666;
	--text-lighter: #999999;
	--secondary: #4DA6FF;
	--secondary-light: #6bb5ff;
	--success: #68B684;
	--border: #e0e4e8;
	--shadow-sm: 0 2px 4px rgba(30, 77, 138, 0.08);
	--shadow: 0 4px 12px rgba(30, 77, 138, 0.12);
	--shadow-md: 0 8px 20px rgba(30, 77, 138, 0.15);
	--shadow-lg: 0 12px 32px rgba(30, 77, 138, 0.18);
	--radius: 10px;
	--radius-lg: 14px;
}

* { 
	box-sizing: border-box; 
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html { 
	scroll-behavior: smooth; 
	font-size: 16px;
}

body {
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text);
	background: var(--bg-white);
	line-height: 1.6;
	font-size: 16px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { 
	max-width: 100%; 
	height: auto; 
	display: block; 
	border-radius: var(--radius);
	object-fit: cover;
}

/* Gallery images used in mobile-first horizontal gallery */
.gallery-image {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

/* Ensure images maintain aspect ratio and don't overflow on mobile */
@media (max-width: 900px) {
	img {
		max-width: 100%;
		height: auto;
	}
	
	.hero img,
	.grid-2 img {
		width: 100%;
		max-width: 100%;
	}
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	-webkit-tap-highlight-color: rgba(30, 77, 138, 0.1);
}

.container { 
	max-width: 1200px; 
	margin: 0 auto; 
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.header .container {
	width: 100%;
}

/* Header & Navigation */
.header {
	position: sticky; 
	top: 0; 
	z-index: 1000;
	background: rgba(248, 249, 251, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.navbar { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	gap: 12px;
	padding: 14px 0;
	min-height: 68px;
	width: 100%;
}

.brand { 
	display: flex; 
	align-items: center; 
	gap: 10px; 
	color: var(--primary); 
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.02em;
	-webkit-tap-highlight-color: transparent;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.brand:hover {
	opacity: 0.85;
}

.brand-logo { 
	width: 40px; 
	height: 40px; 
	border-radius: 8px; 
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.brand span:last-child {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	flex: 0 1 auto;
}

.navlinks { 
	display: flex; 
	gap: 32px; 
	align-items: center; 
}

.navlinks a { 
	color: var(--text);
	text-decoration: none; 
	font-weight: 600;
	font-size: 14px;
	position: relative;
	padding: 6px 0;
	min-height: 40px;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
	font-family: 'Open Sans', sans-serif;
}

.navlinks a:hover {
	color: var(--primary);
}

.navlinks a.cta { 
	background: var(--primary);
	color: white; 
	padding: 10px 20px; 
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
	min-height: 40px;
}

.navlinks a.cta:hover {
	background: var(--secondary);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.mobile-menu { 
	display: none; 
	min-height: 40px;
	min-width: 70px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	background: var(--primary);
	color: white;
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
	white-space: nowrap;
	text-align: center;
	flex-shrink: 0;
	margin-left: auto;
}

.mobile-menu:hover,
.mobile-menu:active {
	background: var(--secondary);
	transform: translateY(-1px);
}

/* Hero Section */
.hero {
	background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 100%);
	padding: 70px 0 60px;
	position: relative;
}

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

.hero h1 { 
	font-family: 'Poppins', sans-serif;
	font-size: clamp(32px, 4.5vw, 52px); 
	margin: 0 0 20px; 
	color: var(--primary);
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.hero p.lead { 
	font-size: clamp(16px, 2vw, 19px); 
	color: var(--text-light);
	margin-bottom: 28px;
	line-height: 1.6;
	font-weight: 400;
}

.btns { 
	display: flex; 
	gap: 12px; 
	flex-wrap: wrap; 
	margin-top: 0;
}

.btn { 
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px; 
	border-radius: 8px; 
	text-decoration: none; 
	font-weight: 700;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 48px;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	white-space: nowrap;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.3px;
}

.btn-primary { 
	background: var(--accent);
	color: var(--text);
	box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--accent-dark);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.btn-secondary { 
	background: var(--primary);
	color: white;
	box-shadow: var(--shadow);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: var(--secondary);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.btn-outline { 
	border: 2px solid var(--primary); 
	color: var(--primary);
	background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/* Sections */
.section { 
	padding: 70px 0; 
	background: var(--bg-white);
}

.section.alt { 
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-white) 100%);
}

.section h2 { 
	font-family: 'Poppins', sans-serif;
	color: var(--primary); 
	font-size: clamp(28px, 4vw, 40px); 
	margin: 0 0 16px;
	font-weight: 700;
	text-align: center;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.section h3 {
	font-family: 'Poppins', sans-serif;
	color: var(--primary);
	font-size: clamp(20px, 2.5vw, 24px);
	margin: 0 0 12px;
	font-weight: 600;
	line-height: 1.3;
}

/* Cards */
.cards { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	gap: 24px; 
}

.card { 
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg); 
	padding: 28px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
}

.card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--primary);
	transform: translateY(-4px);
}

.card h3 { 
	margin: 0 0 12px; 
	color: var(--primary); 
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.card p { 
	margin: 0; 
	color: var(--text-light); 
	font-size: 15px;
	line-height: 1.6;
}

/* Feature Cards - Horizontal Scroll Version */
.features-scroll-container {
	position: relative;
	margin: 0 -20px;
	padding: 0 20px;
}

.features-scroll {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 16px;
	scrollbar-width: thin;
	scrollbar-color: var(--primary) var(--border);
}

.features-scroll::-webkit-scrollbar {
	height: 6px;
}

.features-scroll::-webkit-scrollbar-track {
	background: var(--border);
	border-radius: 10px;
}

.features-scroll::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 10px;
}

.features-scroll::-webkit-scrollbar-thumb:hover {
	background: var(--primary-dark);
}

.feature-card {
	padding: 20px;
	min-width: 200px;
	max-width: 200px;
	flex-shrink: 0;
}

.feature-card h3 {
	font-size: 16px;
	margin-bottom: 8px;
	line-height: 1.3;
}

.feature-card p {
	font-size: 13px;
	line-height: 1.5;
}

/* Desktop: Show more cards in grid */
@media (min-width: 900px) {
	.features-scroll-container {
		margin: 0;
		padding: 0;
	}
	
	.features-scroll {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 16px;
		overflow: visible;
		padding-bottom: 0;
	}
	
	.feature-card {
		min-width: auto;
		max-width: none;
	}
}

.card img {
	margin-bottom: 20px;
	width: 100%;
	min-height: 180px;
	max-height: 250px;
	height: auto;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	border-radius: var(--radius);
}

.icon { 
	width: 56px; 
	height: 56px; 
	border-radius: 10px; 
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	display: grid; 
	place-items: center; 
	color: white; 
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	font-family: 'Poppins', sans-serif;
	box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	gap: 24px; 
}

.testimonial { 
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg); 
	padding: 28px;
	font-size: 15px;
	line-height: 1.6;
	box-shadow: var(--shadow-sm);
	position: relative;
}

.testimonial .content {
	color: var(--text-light);
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: 24px;
	left: 24px;
	font-size: 48px;
	color: var(--accent);
	opacity: 0.3;
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial .name { 
	font-weight: 700; 
	margin-top: 20px; 
	color: var(--primary);
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

/* Footer */
.footer { 
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white; 
	padding: 60px 0 32px;
	margin-top: 0;
}

.footer a { 
	color: rgba(255, 255, 255, 0.9); 
	text-decoration: none;
	transition: color 0.3s ease;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

.footer a:hover,
.footer a:focus {
	color: var(--accent);
}

.footer .cols { 
	display: grid; 
	grid-template-columns: 2fr 1fr 1fr; 
	gap: 48px;
	margin-bottom: 48px;
}

.footer h3 {
	font-family: 'Poppins', sans-serif;
	color: white;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 600;
}

.footer p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.copy { 
	border-top: 1px solid rgba(255, 255, 255, 0.15); 
	margin-top: 32px; 
	padding-top: 24px; 
	font-size: 12px; 
	color: rgba(255, 255, 255, 0.7); 
	text-align: center;
}

/* Floating WhatsApp */
.floating-wa { 
	position: fixed; 
	right: 20px; 
	bottom: 20px; 
	z-index: 9999; 
	display: inline-flex; 
	align-items: center; 
	justify-content: center;
	gap: 8px; 
	background: #25D366;
	color: white; 
	padding: 14px 20px; 
	border-radius: 50px; 
	text-decoration: none; 
	box-shadow: var(--shadow-lg);
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
	min-height: 48px;
	min-width: 48px;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	font-family: 'Open Sans', sans-serif;
}

.floating-wa:hover,
.floating-wa:focus,
.floating-wa:active {
	transform: scale(1.05);
	box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
	background: #20BA5A;
}

.floating-wa .wa-text {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

/* Forms */
.form { 
	display: grid; 
	gap: 20px; 
}

.input, textarea { 
	width: 100%; 
	padding: 14px 16px; 
	border: 2px solid var(--border);
	border-radius: 8px; 
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
	transition: all 0.3s ease;
	background: var(--bg-white);
	-webkit-appearance: none;
	appearance: none;
	touch-action: manipulation;
	color: var(--text);
}

.input:focus, textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(30, 77, 138, 0.1);
}

label { 
	font-weight: 600; 
	font-size: 14px; 
	color: var(--text);
	margin-bottom: 8px;
	display: block;
	font-family: 'Open Sans', sans-serif;
}

.success { 
	color: var(--success); 
	font-weight: 600;
	padding: 12px 16px;
	background: rgba(104, 182, 132, 0.1);
	border-radius: 8px;
	font-size: 14px;
	border: 1px solid rgba(104, 182, 132, 0.3);
}

.error { 
	color: #dc2626; 
	font-weight: 600;
	padding: 12px 16px;
	background: #fee2e2;
	border-radius: 8px;
	font-size: 14px;
	border: 1px solid #fecaca;
}

.badge { 
	display: inline-block; 
	background: linear-gradient(135deg, rgba(30, 77, 138, 0.1), rgba(77, 166, 255, 0.1));
	border: 1px solid var(--border); 
	color: var(--primary);
	padding: 6px 14px; 
	border-radius: 6px; 
	font-weight: 600; 
	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

.grid-2 { 
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 50px;
	align-items: center;
}

/* Booking Card */
.booking-card {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	padding: 60px 40px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.booking-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.booking-card h2 {
	margin-bottom: 16px;
	text-align: center;
}

/* Service Cards */
.service-card {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border);
}

.service-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
	transition: all 0.3s ease;
}

.service-card h2 {
	font-family: 'Poppins', sans-serif;
	text-align: left;
	margin-bottom: 24px;
	font-size: 32px;
	color: var(--primary);
}

.service-card ul {
	margin: 24px 0;
	padding-left: 24px;
}

.service-card li {
	margin: 12px 0;
	color: var(--text-light);
	line-height: 1.7;
	font-size: 15px;
}

.service-card p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
	.container {
		padding: 0 18px;
	}
	
	.hero-grid {
		gap: 50px;
	}
	
	.grid-2 {
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.header {
		padding: 0;
	}
	
	.header .container {
		padding: 0 16px;
		max-width: 100%;
	}
	
	.navbar {
		padding: 10px 0;
		min-height: 56px;
		gap: 10px;
		width: 100%;
		position: relative;
	}
	
	.brand {
		font-size: 14px;
		gap: 8px;
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		overflow: hidden;
	}
	
	.brand-logo {
		width: 32px;
		height: 32px;
		flex-shrink: 0;
	}
	
	.brand span:last-child {
		font-size: 13px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		min-width: 0;
		max-width: 100%;
	}
	
	.navlinks { 
		display: none; 
	}
	
	.mobile-menu { 
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		min-width: 70px;
		padding: 10px 14px;
		font-size: 12px;
	}
	
	.hero-grid { 
		grid-template-columns: 1fr; 
		gap: 32px;
	}
	
	.hero {
		padding: 50px 0 40px;
	}
	
	.hero h1 {
		text-align: center;
		font-size: 32px;
	}
	
	.hero p.lead {
		text-align: center;
		font-size: 16px;
	}
	
	.hero img {
		max-width: 100%;
		width: 100%;
		height: auto;
		border-radius: var(--radius-lg);
		margin-top: 0;
	}
	
	.btns {
		justify-content: center;
	}
	
	.cards { 
		grid-template-columns: 1fr; 
		gap: 20px;
	}
	
	.feature-card {
		padding: 18px;
		min-width: 180px;
		max-width: 180px;
	}
	
	.testimonials { 
		grid-template-columns: 1fr; 
		gap: 20px;
	}
	
	.footer .cols { 
		grid-template-columns: 1fr; 
		gap: 36px;
	}
	
	.floating-wa {
		right: 16px;
		bottom: 16px;
		padding: 12px 18px;
		font-size: 13px;
		min-width: auto;
	}
	
	.floating-wa .wa-text {
		font-size: 13px;
	}
	
	.grid-2 {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.section {
		padding: 60px 0;
	}
	
	.service-card {
		padding: 32px;
	}
	
	.booking-card {
		padding: 40px 24px;
	}
}

@media (max-width: 600px) {
	html {
		font-size: 15px;
	}
	
	body {
		font-size: 15px;
	}
	
	.container {
		padding: 0 14px;
	}
	
	.header .container {
		padding: 0 14px;
	}
	
	.navbar {
		padding: 8px 0;
		min-height: 52px;
		gap: 8px;
		width: 100%;
	}
	
	.brand {
		font-size: 13px;
		gap: 6px;
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		overflow: hidden;
	}
	
	.brand span:last-child {
		font-size: 12px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		min-width: 0;
	}
	
	.brand-logo {
		width: 30px;
		height: 30px;
		flex-shrink: 0;
	}
	
	.mobile-menu {
		min-width: 65px;
		padding: 8px 12px;
		font-size: 12px;
		min-height: 38px;
		flex-shrink: 0;
	}
	
	.hero {
		padding: 40px 0 30px;
	}
	
	.hero h1 {
		margin-bottom: 16px;
		font-size: 28px;
		line-height: 1.3;
	}
	
	.hero p.lead {
		margin-bottom: 24px;
		font-size: 15px;
		line-height: 1.6;
	}
	
	.hero img {
		margin-top: 24px;
		border-radius: var(--radius);
	}
	
	.btns {
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}
	
	.btn {
		width: 100%;
		padding: 16px 24px;
		font-size: 15px;
		min-height: 50px;
		font-weight: 700;
	}
	
	.section {
		padding: 40px 0;
	}
	
	.section h2 {
		margin-bottom: 28px;
		font-size: 24px;
		line-height: 1.3;
	}
	
	.card {
		padding: 20px;
		margin-bottom: 16px;
	}
	
	.card img {
		min-height: 140px;
		max-height: 180px;
		aspect-ratio: 2 / 1;
		margin-bottom: 16px;
		border-radius: var(--radius);
	}
	
	.card h3 {
		font-size: 18px;
		margin-bottom: 10px;
		line-height: 1.3;
	}
	
	.card p {
		font-size: 14px;
		line-height: 1.6;
	}
	
	.feature-card {
		padding: 16px;
		min-width: 160px;
		max-width: 160px;
	}
	
	.feature-card h3 {
		font-size: 15px;
		margin-bottom: 6px;
	}
	
	.feature-card p {
		font-size: 12px;
	}
	
	.testimonials {
		gap: 16px;
	}
	
	.testimonial {
		padding: 20px;
		font-size: 14px;
		line-height: 1.6;
	}

	/* Trim long testimonials on phones while keeping names visible */
	.testimonial .content {
		display: -webkit-box;
		-webkit-line-clamp: 6;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	.testimonial::before {
		font-size: 36px;
		top: 18px;
		left: 18px;
	}
	
	.testimonial .name {
		margin-top: 16px;
		font-size: 13px;
	}
	
	.footer {
		padding: 50px 0 28px;
	}
	
	.footer .cols {
		gap: 32px;
		margin-bottom: 36px;
	}
	
	.footer h3 {
		font-size: 16px;
		margin-bottom: 14px;
	}
	
	.footer p {
		font-size: 13px;
	}
	
	.copy {
		font-size: 11px;
		padding-top: 20px;
		margin-top: 28px;
	}
	
	.floating-wa {
		right: 14px;
		bottom: 14px;
		padding: 12px 16px;
		font-size: 12px;
		min-height: 44px;
		min-width: auto;
	}
	
	.floating-wa .wa-text {
		font-size: 12px;
	}
	
	.grid-2 {
		gap: 28px;
	}
	
	.grid-2 img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	
	.service-card {
		padding: 24px;
		margin-bottom: 24px;
	}
	
	.service-card h2 {
		font-size: 24px;
		margin-bottom: 20px;
		line-height: 1.3;
	}
	
	.service-card p {
		font-size: 15px;
		line-height: 1.7;
	}
	
	.booking-card {
		padding: 32px 20px;
	}
	
	.booking-card h2 {
		font-size: 24px;
	}
	
	.booking-card p {
		font-size: 16px;
		margin-bottom: 32px;
	}
	
	.service-card ul {
		margin: 20px 0;
		padding-left: 20px;
	}
	
	.service-card li {
		margin: 10px 0;
		font-size: 14px;
	}
	
	.input, textarea {
		padding: 12px 14px;
		font-size: 14px;
	}
	
	label {
		font-size: 13px;
	}
	
	.icon {
		width: 52px;
		height: 52px;
		font-size: 15px;
	}
}

@media (max-width: 400px) {
	.container {
		padding: 0 12px;
	}
	
	.header .container {
		padding: 0 12px;
	}
	
	.navbar {
		padding: 8px 0;
		min-height: 50px;
		gap: 6px;
		width: 100%;
	}
	
	.brand {
		font-size: 11px;
		gap: 5px;
		flex: 1 1 0%;
		min-width: 0;
		max-width: calc(100% - 70px);
		overflow: hidden;
	}
	
	.brand span:last-child {
		font-size: 11px;
		letter-spacing: -0.01em;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		min-width: 0;
		display: block;
	}
	
	.brand-logo {
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}
	
	.mobile-menu {
		font-size: 11px;
		padding: 8px 10px;
		min-width: 60px;
		max-width: 60px;
		min-height: 36px;
		flex-shrink: 0;
	}
	
	.hero h1 {
		font-size: 28px;
	}
	
	.hero p.lead {
		font-size: 15px;
	}
	
	.btn {
		padding: 12px 20px;
		font-size: 13px;
	}
	
	.section h2 {
		font-size: 24px;
	}
	
	.card {
		padding: 20px;
	}
	
	.card h3 {
		font-size: 18px;
	}
	
	.card p {
		font-size: 13px;
	}
	
	.floating-wa {
		font-size: 11px;
		padding: 10px 14px;
		min-width: auto;
	}
	
	.floating-wa .wa-text {
		font-size: 11px;
	}
	
	.badge {
		font-size: 12px;
		padding: 8px 12px;
		line-height: 1.5;
		display: block;
		text-align: center;
	}
	
	.hero .badge {
		margin-top: 20px;
		font-size: 13px;
		padding: 10px 16px;
	}
}

/* Landscape mobile optimizations */
@media (max-height: 500px) and (orientation: landscape) {
	.hero {
		padding: 40px 0 30px;
	}
	
	.section {
		padding: 40px 0;
	}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
	.btn:hover,
	.card:hover,
	.navlinks a:hover {
		transform: none;
	}
	
	.btn:active {
		transform: scale(0.98);
	}
	
	.card:active {
		transform: scale(0.99);
	}
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
}
