/* ============================================================
   EURASIA SOURCING - Professional Website Stylesheet
   Based on reference page: view-page-source-eurasiasourcing-in.html
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&family=Montserrat:wght@600;700&display=swap');

/* Root CSS Variables - Professional Color System */
:root {
	--font-playfair: 'Playfair Display', Georgia, serif;
	--font-source: 'Source Sans Pro', arial, sans-serif;
	--font-montserrat: 'Montserrat', sans-serif;
	
	/* Color Palette */
	--color-dark-bg: #000000;
	--color-dark-bg-2: #161616;
	--color-dark-text: #ffffff;
	--color-gray-light: #e2e2e2;
	--color-gray-medium: #969696;
	--color-gray-dark: #595959;
	
	/* Accent Colors */
	--color-accent: #ff7a00;
	--color-accent-hover: #e65c00;
	
	/* UI Shadows */
	--shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes opacity-bounce {
	0% { opacity: 0; transform: translateY(100%); }
	60% { transform: translateY(-20%); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
	from { opacity: 0; transform: translateX(-40px); }
	to { opacity: 1; transform: translateX(0); }
}

/* Animation Classes */
.fade-in {
	opacity: 0;
	animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-up {
	opacity: 0;
	transform: translateY(40px);
	animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-left {
	opacity: 0;
	transform: translateX(40px);
	animation: slideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-right {
	opacity: 0;
	transform: translateX(-40px);
	animation: slideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bounce-in {
	animation: opacity-bounce 800ms ease 400ms forwards;
	opacity: 0;
}


/* Base Reset & Typography */
* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: var(--color-dark-bg);
	color: var(--color-dark-text);
	min-height: 100vh;
}

body {
	font-family: var(--font-source);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: normal;
	text-transform: none;
	background-color: var(--color-dark-bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-playfair);
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 0;
	font-family: var(--font-source);
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

/* List Reset */
ul, li, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Page Container */
.page-inner {
	background-color: var(--color-dark-bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}

/* Smooth Transitions */
.transition {
	transition: all 1s ease-in;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

header {
	background-color: var(--color-dark-bg-2);
	padding: 56px 0;
	position: relative;
	z-index: 100;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 12px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	background-color: rgba(22, 22, 22, 0.95);
}

.topnav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px;
	box-sizing: border-box;
	background-color: transparent;
	max-width: 100%;
	flex-wrap: nowrap;
	margin: 0;
	min-height: auto;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: 12px;
}
.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-dark-text);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle .hamburger::before { transform: translateY(-6px); }
.menu-toggle .hamburger::after { transform: translateY(4px); }

/* When nav has .open, transform hamburger into an X */
.topnav.open .menu-toggle .hamburger { background: transparent; }
.topnav.open .menu-toggle .hamburger::before { transform: rotate(45deg), translateY(0); }
.topnav.open .menu-toggle .hamburger::after { transform: rotate(-45deg), translateY(0); }

/* Hide dropdown-specific CSS if not used */
.topnav .dropdown { display: none !important; }


header.sticky .topnav {
	padding: 8px 24px;
}

.topnav .logo {
	font-family: var(--font-montserrat);
	font-size: 28px;
	font-weight: 800;
	color: var(--color-dark-text);
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.2;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, #ffffff 0%, #e2e2e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

header.sticky .topnav .logo {
	/* Keep font-size consistent; the JS transform handles the visible shrink. */
	font-size: 28px;
	letter-spacing: 1px;
}

.topnav ul {
	display: flex;
	gap: 32px;
	justify-content: flex-end;
	flex-wrap: nowrap;
	align-items: center;
	margin: 0;
	padding: 0;
	transition: gap 0.4s ease;
}

header.sticky .topnav ul {
	gap: 20px;
}

.topnav ul li {
	position: relative;
	display: flex;
	align-items: center;
}

.topnav ul li a {
	font-family: var(--font-source);
	font-size: 16px;
	color: var(--color-gray-medium);
	text-decoration: none;
	padding: 8px 0;
	border: none;
	background: none;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.3s ease, padding 0.3s ease;
	line-height: 1.5;
	font-weight: 500;
	position: relative;
}

.topnav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), #ff9f2e);
	transition: width 0.3s ease;
}

.topnav ul li a:hover::after,
.topnav ul li a.active::after {
	width: 100%;
}

.topnav ul li a:hover {
	color: var(--color-dark-text);
}

.topnav ul li a.active {
	color: var(--color-dark-text);
}

header.sticky .topnav ul li a {
	font-size: 14px;
}

/* Dropdown */
.topnav ul li .dropdown {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	background-color: rgba(22, 22, 22, 0.98);
	min-width: 220px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border-radius: 8px;
	padding: 12px 0;
	z-index: 1000;
	max-height: 500px;
	overflow-y: auto;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.topnav ul li:hover .dropdown,
.topnav ul li:focus-within .dropdown {
	display: block !important;
	pointer-events: auto;
	animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.topnav ul li .dropdown a {
	display: block;
	color: var(--color-gray-medium);
	padding: 12px 20px;
	text-decoration: none;
	font-size: 14px;
	border-radius: 4px;
	transition: all 0.2s ease;
	margin: 0 8px;
	position: relative;
	font-weight: 500;
}

.topnav ul li .dropdown a:hover {
	background-color: rgba(255, 122, 0, 0.1);
	color: var(--color-accent);
	padding-left: 24px;
}

.topnav ul li .dropdown a.active {
	color: var(--color-accent);
	background-color: rgba(255, 122, 0, 0.05);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero, .hero-section {
	background-position: center;
	background-size: auto, cover;
	background-blend-mode: normal;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 120px 0;
	min-height: 500px;
	text-shadow: none;
	text-align: center;
	background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(22, 22, 22, 0.8) 100%);
	width: 100%;
	overflow: hidden;
}

/* Home hero background + overlay (Option C) */
.hero-home {
	background-image: url('ap.avif');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.hero-home::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35); /* dark overlay to improve text contrast */
	pointer-events: none;
}
.hero-home .hero-content {
	position: relative;
	z-index: 1;
}

header.sticky ~ main .hero {
	padding-top: 140px;
}

.hero-content {
	max-width: 1000px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 60px 48px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.hero h1,
.hero h2 {
	font-family: var(--font-playfair);
	font-size: 64px;
	font-weight: 700;
	color: var(--color-dark-text);
	line-height: 1.2;
	margin: 0;
	white-space: pre-line;
	max-width: 100%;
	word-wrap: break-word;
	display: block;
	background: linear-gradient(135deg, #ffffff 0%, #e2e2e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

.hero h2 {
	font-size: 56px;
}

.hero p {
	font-family: var(--font-source);
	font-size: 20px;
	color: var(--color-gray-light);
	line-height: 1.6;
	margin: 0;
	max-width: 100%;
	font-weight: 300;
}



/* ============================================================
   BUTTONS & FORMS
   ============================================================ */

.button-primary,
.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-accent), #ff9f2e);
	color: var(--color-dark-bg);
	padding: 14px 32px;
	border-radius: 6px;
	font-family: var(--font-montserrat);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	word-break: break-word;
	min-height: 48px;
	box-sizing: border-box;
	box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.button-primary::before,
.cta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.button-primary:hover::before,
.cta-button:hover::before {
	width: 300px;
	height: 300px;
}

.button-primary:hover,
.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
	background: linear-gradient(135deg, #ff9f2e, var(--color-accent));
}

.button-primary:active,
.cta-button:active {
	transform: translateY(0);
}

/* Contact Form Styles */
.contact-form-section {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 48px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-form > div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-form label {
	font-family: var(--font-source);
	font-size: 14px;
	color: var(--color-dark-text);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	display: block;
}

.contact-form input,
.contact-form textarea {
	font-family: var(--font-source);
	font-size: 16px;
	color: var(--color-dark-text);
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 14px 18px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	outline: none;
}

.contact-form select {
	font-family: var(--font-source);
	font-size: 16px;
	color: var(--color-dark-text);
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 14px 18px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	outline: none;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 40px;
}

.contact-form select:focus {
	background-color: rgba(255, 255, 255, 0.08);
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.contact-form select option {
	background-color: var(--color-dark-bg);
	color: var(--color-dark-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
	background-color: rgba(255, 255, 255, 0.08);
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
	font-weight: 400;
}

.phone-row {
	display: flex;
	gap: 20px;
	align-items: flex-end;
}

.country-code-field {
	flex: 0 0 35%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Ensure datalist dropdown isn't clipped on mobile — keep the input above other stacking contexts */
.country-code-field input {
    position: relative;
    z-index: 9999;
}

.phone-field {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Ensure phone-row stays on the same line; override any broader rules */
.contact-form > .phone-row {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: flex-end;
}

/* Responsive: stack country code above phone on narrow screens */
@media (max-width: 600px) {
	.contact-form > .phone-row {
		flex-direction: column;
		align-items: stretch;
	}
	.country-code-field {
		flex: 0 0 auto;
		width: 100%;
	}
	.phone-field {
		width: 100%;
	}
}

.contact-info {
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 40px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.contact-info:hover {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 122, 0, 0.3);
	box-shadow: 0 8px 32px rgba(255, 122, 0, 0.1);
}

.contact-info h2 {
	font-family: var(--font-playfair);
	font-size: 24px;
	color: var(--color-dark-text);
	margin-bottom: 32px;
	line-height: 1.3;
}

.contact-info p {
	font-family: var(--font-source);
	font-size: 15px;
	color: var(--color-gray-light);
	line-height: 1.8;
	margin-bottom: 20px;
}

.contact-info p:last-child {
	margin-bottom: 0;
}

.contact-info strong {
	color: var(--color-accent);
	font-weight: 600;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
	background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(22, 22, 22, 0.8) 100%);
	padding: 80px 0;
	text-align: left;
	margin-top: 40px;
}

.contact-section h2 {
	font-family: var(--font-playfair);
	font-size: 48px;
	font-weight: 700;
	color: var(--color-dark-text);
	margin-bottom: 8px;
	line-height: 1.2;
	background: linear-gradient(135deg, #ffffff 0%, #e2e2e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-hr {
	width: 60px;
	height: 3px;
	border: none;
	background: linear-gradient(90deg, var(--color-accent), #ff9f2e);
	margin: 24px 0;
	border-radius: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
	background-color: var(--color-dark-bg);
	padding: 56px 0;
	margin-top: 4rem;
	border-top: 1px solid #1b1b1b;
}

.footer-content {
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px 0 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.footer-copyright {
	font-family: var(--font-source);
	font-size: 14px;
	color: var(--color-dark-text);
	line-height: 1.5;
	text-align: center;
	flex: 3;
	flex-shrink: 1;
	flex-basis: 100%;
	padding-top: 0;
	padding-bottom: 0;
	max-width: none;
	text-wrap: pretty;
}

.footer-powered {
	font-family: var(--font-source);
	font-size: 14px;
	color: var(--color-gray-light);
	text-align: right;
	flex: 1;
	flex-shrink: 1;
	flex-basis: 100%;
	display: flex;
	justify-content: space-between;
	gap: 0;
	align-items: center;
	margin-top: 24px;
}

.footer-powered a {
	color: var(--color-gray-light);
	text-decoration: none;
}

.footer-powered a:hover {
	color: var(--color-gray-medium);
}

/* ============================================================
   SECTIONS & CONTAINERS
   ============================================================ */

section {
	width: 100%;
	background-color: var(--color-dark-bg);
	padding: 80px 0;
	position: relative;
}

.container {
	max-width: 1160px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
	box-sizing: border-box;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-family: var(--font-playfair);
	font-size: 42px;
	font-weight: 700;
	color: var(--color-dark-text);
	margin-bottom: 12px;
	background: linear-gradient(135deg, #ffffff 0%, #e2e2e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.3;
}

.section-header p {
	font-family: var(--font-source);
	font-size: 18px;
	color: var(--color-gray-light);
	font-weight: 300;
	line-height: 1.6;
}

/* Horizontal Section & Cards */
.horizontal-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 40px;
}

.horizontal-card {
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.horizontal-card:hover {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: var(--color-accent);
	box-shadow: 0 8px 32px rgba(255, 122, 0, 0.15);
	transform: translateY(-4px);
}

.horizontal-card h3 {
	font-family: var(--font-playfair);
	font-size: 22px;
	color: var(--color-dark-text);
	margin-bottom: 16px;
	font-weight: 700;
}

.horizontal-card p {
	font-family: var(--font-source);
	font-size: 15px;
	color: var(--color-gray-light);
	line-height: 1.7;
	margin: 0;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 40px;
}

.service-card {
	padding: 48px 32px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 122, 0, 0.2);
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	min-height: 280px;
	justify-content: center;
}

.service-card:hover {
	background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
	border-color: var(--color-accent);
	box-shadow: 0 12px 48px rgba(255, 122, 0, 0.25);
	transform: translateY(-8px);
}

.service-card h3 {
	font-family: var(--font-playfair);
	font-size: 26px;
	color: var(--color-dark-text);
	margin-bottom: 16px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.service-card:hover h3 {
	color: var(--color-accent);
}

.service-card p {
	font-family: var(--font-source);
	font-size: 15px;
	color: var(--color-gray-light);
	line-height: 1.7;
	margin: 0;
	transition: color 0.3s ease;
}

.service-card:hover p {
	color: var(--color-dark-text);
}

/* CTA Sections */
.about-cta,
.contact-cta {
	background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0.02) 100%);
	border-top: 1px solid rgba(255, 122, 0, 0.2);
	border-bottom: 1px solid rgba(255, 122, 0, 0.2);
	padding: 80px 0;
	margin: 60px 0;
}

.cta-content {
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cta-content h2 {
	font-family: var(--font-playfair);
	font-size: 44px;
	font-weight: 700;
	color: var(--color-dark-text);
	margin-bottom: 20px;
	line-height: 1.3;
	background: linear-gradient(135deg, #ffffff 0%, #e2e2e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-content p {
	font-family: var(--font-source);
	font-size: 18px;
	color: var(--color-gray-light);
	line-height: 1.7;
	margin-bottom: 32px;
	font-weight: 300;
}

.learn-more-link {
	display: inline-block;
	font-family: var(--font-source);
	font-size: 16px;
	color: var(--color-accent);
	text-decoration: none;
	font-weight: 600;
	padding: 8px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
}

.learn-more-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), #ff9f2e);
	transition: width 0.3s ease;
}

.learn-more-link:hover::after {
	width: 100%;
}

.learn-more-link:hover {
	color: #ff9f2e;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Mobile - 450px and below */
@media (max-width: 450px) {
	header.sticky ~ main .hero {
		padding-top: 100px;
	}
	
	.topnav {
		padding: 16px 16px;
		flex-direction: row;
		justify-content: space-between;
	}
	
	.topnav .logo {
		font-size: 16px;
		max-width: 60%;
	}
	
	/* Show hamburger and hide full menu by default on very small screens */
	.menu-toggle { display: inline-flex; align-items: center; }
	.topnav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-dark-bg-2); flex-direction: column; padding: 12px 16px; gap: 12px; z-index: 999; }
	.topnav.open ul { display: flex; }
	
	header.sticky .topnav .logo {
		/* Keep same font-size on small screens; JS transform manages shrink */
		font-size: 16px;
	}
	
	.topnav ul {
		gap: 12px;
		font-size: 12px;
	}
	
	header.sticky .topnav ul {
		gap: 8px;
	}
	
	.topnav ul li a {
		font-size: 12px;
	}
	
	.hero {
		min-height: 350px;
		padding: 80px 0;
	}
	
	.hero-content {
		padding: 40px 20px;
		gap: 16px;
	}
	
	.hero h1,
	.hero h2 {
		font-size: 32px;
		letter-spacing: 0;
	}
	
	.hero p {
		font-size: 16px;
		line-height: 1.5;
	}
	
	.cta-button,
	.button-primary {
		padding: 12px 24px;
		font-size: 12px;
		min-height: 40px;
	}
	
	.section-header h2 {
		font-size: 28px;
	}
	
	.section-header p {
		font-size: 14px;
	}
	
	.horizontal-section {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.service-card {
		padding: 32px 24px;
		min-height: 240px;
	}
	
	.service-card h3 {
		font-size: 20px;
	}
	
	.contact-form-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.contact-section h2 {
		font-size: 32px;
	}
	
	.cta-content h2 {
		font-size: 28px;
	}
	
	.cta-content p {
		font-size: 14px;
	}
	
	.learn-more-link {
		font-size: 14px;
	}
	
	.about-cta,
	.contact-cta {
		padding: 60px 0;
		margin: 40px 0;
	}
}

/* Tablet - 451px to 767px */
@media (min-width: 451px) and (max-width: 767px) {
	header.sticky ~ main .hero {
		padding-top: 110px;
	}
	
	.topnav .logo {
		font-size: 18px;
	}
	
	header.sticky .topnav .logo {
		/* Match base logo size for this breakpoint; JS handles visual shrink */
		font-size: 18px;
	}
	
	.topnav ul {
		gap: 16px;
	}
	
	.topnav ul li a {
		font-size: 14px;
	}
	
	.hero {
		min-height: 380px;
	}
	
	.hero-content {
		padding: 50px 30px;
	}
	
	.hero h1,
	.hero h2 {
		font-size: 40px;
	}
	
	.hero p {
		font-size: 17px;
	}
	
	.section-header h2 {
		font-size: 32px;
	}
	
	.section-header p {
		font-size: 16px;
	}
	
	.horizontal-section {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	
	.horizontal-section .horizontal-card:last-child {
		grid-column: 1 / -1;
	}
	
	.services-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	
	.contact-form-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.contact-section h2 {
		font-size: 36px;
	}
	
	.cta-content h2 {
		font-size: 32px;
	}
}

/* Small Desktop - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
	header.sticky ~ main .hero {
		padding-top: 120px;
	}
	
	.topnav .logo {
		font-size: 16px;
		max-width: 60%;
	}

	header.sticky .topnav .logo {
		/* Match base logo size for this breakpoint; JS handles visual shrink */
		font-size: 20px;
	}
	
	.topnav ul {
		gap: 20px;
	}
	
	.hero-content {
		padding: 60px 40px;
	}
	
	.hero h1,
	.hero h2 {
		font-size: 48px;
	}
	
	.hero p {
		font-size: 18px;
	}
	
	.section-header h2 {
		font-size: 36px;
	}
	
	.horizontal-section {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 40px;
	}
	
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}
	
	.contact-section h2 {
		font-size: 40px;
	}
	
	.cta-content h2 {
		font-size: 36px;
	}
}

/* Medium Desktop - 1024px to 1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
	.hero-content {
		max-width: 1000px;
		padding: 60px 48px;
	}
	
	.hero h1,
	.hero h2 {
		font-size: 52px;
	}
	
	.section-header h2 {
		font-size: 40px;
	}
	
	.contact-section h2 {
		font-size: 42px;
	}
	
	.cta-content h2 {
		font-size: 38px;
	}
}

/* Large Desktop - 1280px to 1535px */
@media (min-width: 1280px) and (max-width: 1535px) {
	.container {
		max-width: 1160px;
	}
	
	.topnav .logo {
		font-size: 24px;
	}
	
	.hero h1,
	.hero h2 {
		font-size: 58px;
	}
	
	.section-header h2 {
		font-size: 42px;
	}
	
	.contact-section h2 {
		font-size: 46px;
	}
	
	.cta-content h2 {
		font-size: 42px;
	}
}

/* Extra Large Desktop - 1536px and above */
@media (min-width: 1536px) {
	.container {
		max-width: 1280px;
	}
	
	.topnav .logo {
		font-size: 28px;
	}
	
	.hero h1,
	.hero h2 {
		font-size: 64px;
	}
	
	.hero p {
		font-size: 21px;
	}
	
	.section-header h2 {
		font-size: 48px;
	}
	
	.contact-section h2 {
		font-size: 50px;
	}
	
	.cta-content h2 {
		font-size: 46px;
	}
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.overflow-wrap {
	overflow-wrap: break-word;
}

.word-break {
	word-break: break-word;
}

.display-none {
	display: none;
}

.display-block {
	display: block;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.color-white {
	color: var(--color-dark-text) !important;
}

.color-gray {
	color: var(--color-gray-medium) !important;
}

.bg-dark {
	background-color: var(--color-dark-bg) !important;
}

.margin-0 {
	margin: 0 !important;
}

.padding-0 {
	padding: 0 !important;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	right: 0;
	bottom: 24px;
	z-index: 9999;
	width: 400px;
	max-height: 500px;
	background-color: #898989;
	border-radius: 7px;
	overflow-y: auto;
	transition: all 1s ease-in;
	box-shadow: var(--shadow-md);
	padding: 24px 24px 24px 24px;
	margin-top: 24px;
	margin-right: 24px;
	margin-bottom: 24px;
	margin-left: 24px;
	contain: content;
	bottom: -500px;
}

.cookie-banner h4 {
	color: var(--color-dark-text);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 4px;
	line-height: 1.25;
}

.cookie-banner p {
	color: var(--color-dark-text);
	font-size: 14px;
	line-height: 1.5;
	text-wrap: pretty;
	max-height: 200px;
	overflow-y: auto;
	margin-bottom: 8px;
}

.cookie-banner .accept-button {
	background-color: var(--color-dark-text);
	color: var(--color-dark-bg);
	min-height: 40px;
	border-radius: 4px;
	padding: 4px 16px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.071em;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-top: 24px;
	margin-right: 24px;
	margin-bottom: 24px;
	margin-left: 24px;
}

.cookie-banner .accept-button:hover {
	background-color: #ffffff;
	color: #000000;
}

/* ============================================================
   GRECAPTCHA BADGE
   ============================================================ */

.grecaptcha-badge {
	visibility: hidden;
}
