/* Grocery Service Description Card */
.grocery-desc-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(44,62,80,0.08);
	padding: 28px 32px 22px 32px;
	max-width: 600px;
	margin: 0 auto 2.2em auto;
	text-align: center;
	color: #2d3a4a;
}
.grocery-desc-card p {
	font-size: 1.08rem;
	margin-bottom: 0.7em;
}
.grocery-desc-card .btn-secondary {
	display: inline-block;
	margin-top: 0.5em;
}
@media (max-width: 700px) {
	.grocery-desc-card {
		padding: 18px 8px 14px 8px;
	}
}
/* Grocery Order Form */
.grocery-order-form {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(44,62,80,0.07);
	padding: 28px 24px 20px 24px;
	margin-top: 16px;
}
.grocery-order-form .form-group {
	margin-bottom: 1.2em;
	position: static;
}
.grocery-order-form .form-group label {
	position: static !important;
	display: block !important;
	font-size: 1rem;
	color: #1a4b6e;
	font-weight: 500;
	margin-bottom: 0.4em;
	padding: 0 !important;
	background: transparent !important;
	pointer-events: auto !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
}
.grocery-order-form input,
.grocery-order-form select,
.grocery-order-form textarea {
	width: 100%;
	padding: 0.7em 0.9em;
	border: 1px solid #dbe5ee;
	border-radius: 8px;
	font-size: 1rem;
	background: #f8fafc;
	color: #2d3a4a;
	transition: border 0.2s;
	margin-bottom: 0.2em;
}
.grocery-order-form input:focus,
.grocery-order-form select:focus,
.grocery-order-form textarea:focus {
	border-color: #1a4b6e;
	outline: none;
}
.grocery-order-form button.btn-primary {
	background: #1a4b6e;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 0.8em 0;
	cursor: pointer;
	transition: background 0.2s;
}
.grocery-order-form button.btn-primary:hover {
	background: #25608a;
}
.grocery-order-form button.btn-primary:disabled {
	background: #6b7280;
	cursor: not-allowed;
	opacity: 0.7;
}
/* Package Cards */
.package-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 0.5em;
}
.package-card {
	border: 2px solid #dbe5ee;
	border-radius: 12px;
	padding: 20px 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #ffffff;
	min-height: 160px;
	display: flex;
	flex-direction: column;
}
.package-card:hover {
	border-color: #1a4b6e;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(26, 75, 110, 0.15);
	background: #f8fafc;
}
.package-card.selected {
	border-color: #1a4b6e;
	background: linear-gradient(135deg, #e8f2f7 0%, #f0f7fb 100%);
	box-shadow: 0 0 0 3px rgba(26, 75, 110, 0.12);
	transform: translateY(-2px);
}
.package-header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e8f0;
}
.package-card h4 {
	margin: 0;
	font-size: 1.1rem;
	color: #1a4b6e;
	font-weight: 700;
	line-height: 1.3;
}
.package-price {
	font-size: 1rem;
	font-weight: 700;
	color: #25608a;
	letter-spacing: -0.02em;
}
.package-items {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.package-items li {
	font-size: 0.9rem;
	color: #4a5568;
	padding-left: 22px;
	position: relative;
	line-height: 1.4;
}
.package-items li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #25608a;
	font-weight: bold;
	font-size: 1rem;
}
@media (max-width: 600px) {
	.package-cards {
		grid-template-columns: 1fr;
	}
	.grocery-order-form {
		padding: 18px 8px 14px 8px;
	}
}
/* ===== Hero Section Fade-in Animation ===== */
.hero-content-inner {
	opacity: 0;
	transition: opacity 1.6s cubic-bezier(0.77,0,0.175,1);
}
.hero-content-inner.in-view {
	opacity: 1;
}
/* ===== Testimonial Card Fade-in Animation ===== */
.testimonial-card.fade-in {
	opacity: 0;
	transition: opacity 1.1s cubic-bezier(0.77,0,0.175,1);
}
.testimonial-card.fade-in.in-view {
	opacity: 1;
}
/* ===== About Section Scroll-in Animation ===== */
.about-text.scroll-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.1s cubic-bezier(0.77,0,0.175,1), transform 1.1s cubic-bezier(0.77,0,0.175,1);
}
.about-text.scroll-up.in-view {
	opacity: 1;
	transform: translateY(0);
}
.about-image.scroll-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.1s 0.35s cubic-bezier(0.77,0,0.175,1), transform 1.1s 0.35s cubic-bezier(0.77,0,0.175,1);
}
.about-image.scroll-up.in-view {
	opacity: 1;
	transform: translateY(0);
}
/* ===== Service Card Slide-in Animation ===== */
.service-card.slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.service-card.slide-left.in-view {
	opacity: 1;
	transform: translateX(0);
}
.service-card.slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.service-card.slide-right.in-view {
	opacity: 1;
	transform: translateX(0);
}
/* ===== Scroll Snap Sections ===== */
html, body {
	height: 100%;
}
body {
	scroll-behavior: smooth;
	min-height: 100vh;
	overflow-y: scroll;
}
.snap-section {
	min-height: unset;
	opacity: 1;
	transform: none;
}
.snap-section.in-view {
	opacity: 1;
	transform: none;
}
/* ===== Scroll Animation Effects ===== */
.scroll-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-fade.in-view {
	opacity: 1;
	transform: translateY(0);
}

.scroll-slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-slide-left.in-view {
	opacity: 1;
	transform: translateX(0);
}

.scroll-slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-slide-right.in-view {
	opacity: 1;
	transform: translateX(0);
}
/* ===== CSS Variables - Coastal Luxury Hospitality ===== */
:root {
	/* Primary Colors */
	--primary-color: #1a4b6e; /* Deep Ocean Blue - trustworthiness, stability */
	--primary-dark: #3a3e41; /* Charcoal - body text, depth */
	--secondary-color: #4a8c98; /* Mediterranean Teal - interactive elements */

	/* Accent Colors */
	--accent-gold: #d4b254; /* Gold Luxury - premium offerings */
	--accent-terracotta: #c87f5e; /* Sunset Terracotta - warmth, sunset vibes */
	--accent-olive: #7d8c70; /* Olive Leaf - sustainability, nature */

	/* Background Colors */
	--bg-sand: #e6d2b5; /* Warm Sand - accent cards, subtle warmth (use sparingly) */
	--bg-light: #f7f4f0; /* Soft White - main sections, whitewashed villa feel */
	--bg-white: #ffffff; /* Pure White - cards and highlights */

	/* Text Colors */
	--text-dark: #3a3e41; /* Charcoal for body text (14.2:1 contrast ratio) */
	--text-medium: #1a4b6e; /* Deep Ocean Blue for headers */
	--text-light: #5a6b7a; /* Muted blue-gray for secondary text */
	--text-muted: #9ca3ab;

	/* UI Colors */
	--border-color: #d8cfc2; /* Soft neutral border */
	--success-color: #7d8c70; /* Olive Leaf - sustainability messaging */

	/* Shadows - Warm neutral tinted */
	--shadow-sm: 0 1px 2px 0 rgba(58, 62, 65, 0.08);
	--shadow-md: 0 4px 6px -1px rgba(58, 62, 65, 0.12);
	--shadow-lg: 0 10px 15px -3px rgba(58, 62, 65, 0.15);
	--shadow-xl: 0 20px 25px -5px rgba(58, 62, 65, 0.18);
}

/* ===== Reset & Base Styles ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

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

/* ===== Language Toggle ===== */
.lang-toggle {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.lang-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.lang-btn[aria-label*="English"] .lang-option.active {
	color: var(--primary-color);
	font-weight: 700;
	text-decoration: underline;
}

.lang-btn[aria-label*="Spanish"] .lang-option.active {
	color: var(--accent-terracotta);
	font-weight: 700;
	text-decoration: underline;
}

.lang-option {
	color: var(--text-light);
	transition: all 0.3s ease;
	opacity: 0.7;
	background: transparent;
	border-radius: 4px;
	padding: 2px 10px;
}

.lang-option.active {
	opacity: 1;
	font-weight: 700;
	text-decoration: underline;
}

#enLang.lang-option.active {
	color: #fff;
	background: var(--primary-color);
	opacity: 1;
	font-weight: 700;
	text-decoration: none;
}

#esLang.lang-option.active {
	color: #fff;
	background: var(--accent-terracotta);
	opacity: 1;
	font-weight: 700;
	text-decoration: none;
}

.separator {
	color: var(--border-color);
	font-size: 12px;
	font-weight: 300;
}

/* ===== Navigation ===== */
.navbar {
	background: var(--bg-white);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 999;
	padding: 15px 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding-left: 20px;
	padding-right: 20px;
	min-height: 80px;
	height: 80px;
}

.nav-brand {
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 36px;
	align-items: center;
	font-size: 1.08rem;
	font-weight: 500;
	height: 100%;
}

.lang-toggle {
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
	margin-left: 8px;
}

.logo-link {
	display: flex;
	align-items: center;
}

.logo {
	height: 56px;
	width: auto;
	display: block;
}

.nav-brand .logo {
	height: 32px;
}

.footer-logo .logo {
	height: 48px;
}

.brand-name {
	display: inline-block;
	font-size: 1.35em;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: -0.5px;
	vertical-align: middle;
	line-height: 1.1;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 36px;
	align-items: center;
	font-size: 1.08rem;
	font-weight: 500;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
	width: 100%;
}

@media (min-width: 900px) {
	.navbar .container {
		align-items: flex-start;
		padding-left: 32px;
		padding-right: 32px;
	}
	.nav-brand {
		margin-left: 32px;
	}
}

/* ===== Hero Section ===== */
.hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	overflow: hidden;
}

#liquid-hero {
	position: relative;
	width: 100%;
	height: 70vh;
	min-height: 500px;
	overflow: hidden;
}

@media (max-width: 768px) {
	#liquid-hero {
		height: auto;
		min-height: 600px;
	}
}

@media (max-width: 600px) {
	#liquid-hero {
		min-height: 550px;
	}
}

#canvas {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}

.hero-content-inner {
	background: rgba(30, 40, 60, 0.55); /* tighter, rounded overlay */
	border-radius: 1.5rem;
	padding: 2rem 2rem 1.5rem 2rem;
	box-shadow: 0 8px 32px rgba(30, 40, 60, 0.18);
	backdrop-filter: blur(4px);
	pointer-events: auto;
	max-width: 700px;
	width: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 11;
	position: relative;
	word-break: break-word;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-buttons {
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	margin: 0 0 1.2rem 0;
}

.hero-buttons {
	margin-top: 1.2rem;
	display: flex;
	gap: 1rem;
}

.hero .container,
.hero-bg-gradient,
.hero-divider {
	position: relative;
	z-index: 2;
}

.hero-bg-gradient {
	display: none;
}

.hero-content {
	text-align: center;
	max-width: 700px;
	width: 100%;
	margin: 50px auto;
	z-index: 1;
	position: relative;
}

@media (max-width: 768px) {
	.hero-content {
		margin: 30px auto;
	}
}

@media (max-width: 600px) {
	.hero-content {
		margin: 20px auto;
	}
}

body.lang-es .hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
	max-width: 700px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.hero-title {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: -1px;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
		margin-bottom: 14px;
	}
}

.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	margin-bottom: 32px;
	opacity: 0.95;
}

@media (max-width: 768px) {
	.hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 24px;
	}
}

@media (max-width: 600px) {
	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 20px;
	}
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 18px;
}

@media (max-width: 600px) {
	.hero-buttons {
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}
	
	.hero-buttons .btn {
		width: 100%;
	}
}

.btn-lg {
	padding: 0.85em 2.2em;
	font-size: 1.1rem;
	border-radius: 30px;
	box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary {
	background: #fff;
	color: #256d85;
	border: none;
	font-weight: 600;
}

.btn-primary:hover {
	background: #eaf6f6;
	color: #256d85;
	box-shadow: 0 4px 18px rgba(44, 62, 80, 0.12);
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-weight: 600;
}

.btn-secondary:hover {
	background: #256d85;
	color: #fff;
	border-color: #256d85;
}

.hero-divider {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 60px;
	background: linear-gradient(to right, #256d85 0%, #3caea3 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
	z-index: 0;
}

@media (max-width: 768px) {
	.hero {
		min-height: auto;
		padding: 80px 0 40px 0;
	}
}

@media (max-width: 600px) {
	.hero {
		padding: 70px 0 30px 0;
	}
}

@media (max-width: 600px) {
	.hero-content-inner {
		padding: 1.5rem 1rem 1rem 1rem;
		border-radius: 1rem;
		max-width: calc(100% - 20px);
		width: calc(100% - 20px);
	}
	.hero-content h1 {
		font-size: 1.4rem;
		margin-bottom: 12px;
		line-height: 1.3;
	}
}

/* ===== Buttons ===== */
.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.btn-primary {
	background: linear-gradient(135deg, #256d85 0%, #3caea3 100%);
	color: #fff;
	border: none;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(37, 109, 133, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #1a5670 0%, #34a399 100%);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 24px rgba(37, 109, 133, 0.5), 0 0 20px rgba(60, 174, 163, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--bg-white);
	border-color: var(--bg-white);
	position: relative;
	overflow: hidden;
}

.btn-secondary:hover {
	background: var(--bg-white);
	color: var(--primary-color);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== Sections ===== */
section {
	padding: 50px 0;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #256d85;
	margin-bottom: 10px;
	text-align: center;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #666;
	text-align: center;
	margin-bottom: 32px;
}

/* ===== Services Section ===== */
.services {
	background: #fff;
	padding: 70px 0 60px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 60px;
	justify-content: center;
	margin-top: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.service-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
	padding: 24px;
	text-align: left;
	position: relative;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	overflow: hidden;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(44, 62, 80, 0.18);
}

.service-card-body {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.service-image-badge {
	width: 180px;
	height: 180px;
	border-radius: 16px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
	align-self: flex-start;
}

.service-image-badge img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #1a4b6e, #256d85, #2fa8c4, #256d85, #1a4b6e);
	background-size: 400% 400%;
	border-radius: 24px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
	animation: gradientShift 8s ease infinite;
}

.service-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	z-index: -1;
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}
@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.service-card {
		min-height: auto;
	}
	.service-card-body {
		flex-direction: column;
		align-items: center;
	}
	.service-image-badge {
		width: 140px;
		height: 140px;
		margin: 0 auto;
	}
	.service-list {
		text-align: left;
	}
}



.service-card:hover {
	box-shadow: 0 20px 60px rgba(44, 62, 80, 0.25);
	transform: translateY(-12px);
}

.service-card:hover::before {
	opacity: 1;
}

/* Color themes for each card */
.service-card:nth-child(1)::before {
	background: linear-gradient(45deg, #10b981, #34d399, #6ee7b7, #34d399, #10b981);
	background-size: 400% 400%;
}

.service-card:nth-child(2)::before {
	background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd, #60a5fa, #3b82f6);
	background-size: 400% 400%;
}

.service-card:nth-child(3)::before {
	background: linear-gradient(45deg, #f97316, #fb923c, #fdba74, #fb923c, #f97316);
	background-size: 400% 400%;
}

.service-card:nth-child(4)::before {
	background: linear-gradient(45deg, #8b5cf6, #a78bfa, #c4b5fd, #a78bfa, #8b5cf6);
	background-size: 400% 400%;
}

.service-icon {
	font-size: 2.6rem;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
}

.service-icon-home::before {
	content: "🏠";
}

.service-icon-paint::before {
	content: "🎨";
}

.service-icon-web::before {
	content: "💻";
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0;
	color: #1a4b6e;
	transition: color 0.3s ease, transform 0.2s ease;
	position: relative;
	z-index: 2;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
}

.service-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a4b6e, #4a8c98);
	border-radius: 12px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(26, 75, 110, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 20px rgba(26, 75, 110, 0.35);
}

.service-icon svg {
	width: 24px;
	height: 24px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

/* Color title on hover */
.service-card:nth-child(1):hover .service-title {
	color: #10b981;
}

.service-card:nth-child(2):hover .service-title {
	color: #3b82f6;
}

.service-card:nth-child(3):hover .service-title {
	color: #f97316;
}

.service-card:nth-child(4):hover .service-title {
	color: #8b5cf6;
}

.service-list {
	list-style: none;
	padding: 0;
	position: relative;
	z-index: 2;
	margin: 0;
	text-align: left;
	transition: transform 0.2s ease;
}

.service-list li {
	font-size: 1rem;
	margin-bottom: 10px;
	padding-left: 24px;
	position: relative;
	color: #444;
}

.service-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #256d85;
	font-weight: bold;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

/* Color checkmarks on hover */
.service-card:nth-child(1):hover .service-list li::before {
	color: #10b981;
	transform: scale(1.2);
}

.service-card:nth-child(2):hover .service-list li::before {
	color: #3b82f6;
	transform: scale(1.2);
}

.service-card:nth-child(3):hover .service-list li::before {
	color: #f97316;
	transform: scale(1.2);
}

.service-card:nth-child(4):hover .service-list li::before {
	color: #8b5cf6;
	transform: scale(1.2);
}

.service-card-btn {
	display: block;
	text-align: center;
	padding: 12px 24px;
	background: linear-gradient(135deg, #256d85 0%, #3caea3 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	margin-top: auto;
	box-shadow: 0 4px 12px rgba(37, 109, 133, 0.3);
}

.service-card-btn:hover {
	background: linear-gradient(135deg, #1a5670 0%, #34a399 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 109, 133, 0.4);
}

@media (max-width: 900px) {
	.services-grid {
		flex-direction: column;
		gap: 24px;
		align-items: center;
	}
	.service-card {
		max-width: 100%;
	}
}

/* ===== About Section ===== */
.about {
	background: #f7f5f2;
	padding: 70px 0 60px 0;
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 56px;
	align-items: flex-start;
	justify-content: center;
	margin-top: 32px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.about-text {
	flex: 1 1 400px;
	min-width: 300px;
}

.about-image {
	flex: 1 1 400px;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.about-map-card {
	background: #f7f5f2;
	border-radius: 18px;
	box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
	padding: 18px 18px 8px 18px;
	width: 100%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-map-card iframe {
	width: 100%;
	height: 220px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
	border: none;
}

.map-caption {
	text-align: center;
	font-size: 1.08rem;
	color: #256d85;
	font-weight: 600;
	margin-top: 10px;
}

.about-features-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 35px;
	margin-bottom: 0;
	width: 100%;
	max-width: 400px;
}

.feature {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 600;
	color: #222;
	gap: 8px;
}

.feature-icon {
	color: #3caea3;
	font-size: 1.2em;
	font-weight: bold;
}

/* ===== Trust Badges ===== */
.trust-badges {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 80px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #e0e0e0;
}

.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 500;
	color: #5a6c7d;
}

.trust-badge-icon {
	color: #256d85;
	width: 28px;
	height: 28px;
	margin-bottom: 4px;
}

@media (max-width: 900px) {
	.trust-badges {
		flex-direction: column;
		gap: 24px;
	}
}

@media (max-width: 900px) {
	.about-content {
		flex-direction: column;
		gap: 32px;
		align-items: stretch;
	}
	.about-image,
	.about-text {
		max-width: 100%;
	}
	.about-map-card {
		max-width: 100%;
	}
	.about-features-grid {
		max-width: 100%;
	}
}

/* ===== Portfolio Section ===== */
.portfolio {
	background: var(--bg-white);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.portfolio-item {
	background: var(--bg-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.portfolio-image {
	position: relative;
	overflow: hidden;
	height: 250px;
}

.portfolio-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-placeholder {
	transform: scale(1.05);
}

.portfolio-icon {
	font-size: 64px;
	opacity: 0.5;
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	padding: 20px;
	transform: translateY(0);
	transition: transform 0.3s ease;
}

.portfolio-category {
	color: white;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.portfolio-content {
	padding: 25px;
}

.portfolio-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.portfolio-content p {
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.6;
}

.portfolio-cta {
	text-align: center;
	padding: 30px;
	background: var(--bg-light);
	border-radius: 12px;
	border: 2px dashed var(--border-color);
}

.portfolio-cta .cta-text {
	font-size: 16px;
	color: var(--text-light);
	font-style: italic;
}

/* ===== Testimonials Section ===== */
.testimonials {
	background: #f7f5f2;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.testimonial-card {
	background: var(--bg-white);
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
	padding: 32px 24px 24px 24px;
	margin-bottom: 24px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: box-shadow 0.18s, transform 0.18s;
}

.testimonial-card:hover {
	box-shadow: 0 6px 24px rgba(44, 62, 80, 0.13);
	transform: translateY(-2px) scale(1.01);
}

.testimonial-icon,
.testimonial-icon::before {
	display: none;
}

.testimonial-text {
	font-size: 1.08rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 22px;
	font-style: italic;
	min-height: 60px;
	text-align: left;
	padding: 0;
}

.testimonial-card .testimonial-author {
	border-top: 1px solid var(--border-color);
	margin-top: 18px;
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.author-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary-dark);
	margin-bottom: 0;
	margin-top: 0;
}

.author-info {
	font-size: 0.97rem;
	color: var(--text-light);
	margin-bottom: 0;
}

.testimonials-cta {
	text-align: center;
	padding: 40px 20px;
	background: var(--bg-white);
	border-radius: 12px;
}

.testimonials-cta .cta-text {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 25px;
	font-weight: 500;
}

/* ===== Contact Section ===== */
.contact {
	background: #f7f5f2;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.contact-icon {
	font-size: 32px;
	min-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	border-radius: 50%;
}

.contact-item h3 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.contact-item p {
	color: var(--text-light);
}

.contact-item a {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form {
	background: var(--bg-white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	max-width: 700px;
	margin: 0 auto;
}

.form-group {
	position: relative;
	margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
	max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group label {
	position: absolute;
	left: 16px;
	top: 12px;
	color: var(--text-light);
	pointer-events: none;
	transition: all 0.3s ease;
	background: var(--bg-white);
	padding: 0 4px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select.has-value + label {
	top: -10px;
	font-size: 12px;
	color: var(--primary-color);
}

.contact-form .btn {
	width: 100%;
	cursor: pointer;
	border: none;
	font-size: 16px;
}

/* ===== Footer ===== */
.footer {
	background: #393e41;
	color: #fff;
	padding: 60px 0 0 0;
	font-size: 0.95rem;
}

/* Main footer grid */
.footer-main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	max-width: 1100px;
	margin: 0 auto 40px;
	padding: 0 24px;
}

/* Left Column - Logo & Nav */
.footer-brand-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	height: 40px;
	width: auto;
	margin-bottom: 8px;
	object-fit: contain;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	font-size: 0.9rem;
	align-items: center;
}

.footer-nav a {
	color: #eaf6f6;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.footer-nav a:hover {
	color: #3caea3;
}

.footer-nav .separator {
	color: #666;
	user-select: none;
}

/* Center Column - Contact Info */
.footer-contact-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-contact-col .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-contact-col .contact-icon {
	flex-shrink: 0;
	color: #3caea3;
	margin-top: 2px;
	width: 18px;
	height: 18px;
	background: none;
	border-radius: 0;
	min-width: auto;
}

.contact-text {
	color: #eaf6f6;
	line-height: 1.6;
}

.footer-contact-col .contact-link {
	color: #ffffff !important;
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 500;
}

.footer-contact-col .contact-link:hover {
	color: #5dd9d1 !important;
	text-decoration: underline;
}

/* Right Column - About & Social */
.footer-about-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-heading {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 8px 0;
	color: #fff;
}

.footer-about-text {
	color: #d4d4d4;
	line-height: 1.6;
	font-size: 0.9rem;
	margin: 0;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	background: #2d3133;
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.social-icon:hover {
	background: #3caea3;
	transform: translateY(-2px) scale(1.1);
	box-shadow: 0 4px 12px rgba(60, 174, 163, 0.4);
}

/* WhatsApp brand color */
.social-icon[aria-label="WhatsApp"] {
	background: #25D366;
}

.social-icon[aria-label="WhatsApp"]:hover {
	background: #128C7E;
	transform: translateY(-2px) scale(1.1);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.social-icon svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.footer-bottom {
	text-align: center;
	color: #eaf6f6;
	font-size: 0.9rem;
	padding: 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	margin: 0;
}

/* Responsive footer */
@media (max-width: 900px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.footer-brand-col,
	.footer-contact-col,
	.footer-about-col {
		align-items: center;
	}
	
	.footer-nav {
		justify-content: center;
	}
	
	.contact-item {
		justify-content: center;
	}
	
	.footer-social {
		justify-content: center;
	}
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
	.navbar .container {
		flex-wrap: wrap;
		gap: 15px;
	}

	.nav-menu {
		display: none;
	}

	.lang-toggle {
		order: -1;
		margin-left: auto;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
	}

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

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

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

	.hero {
		padding: 80px 0 60px;
	}

	section {
		padding: 60px 0;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.testimonial-card {
		padding: 25px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	.contact-form {
		padding: 30px 20px;
	}
}
