* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}
:root {
 --orange:#F26522;
 --dark:#d4551c;
 --black:#1A1A1A;
 --mid:#555;
 --light:#888;
 --gray:#F7F7F7;
 --border:#E8E8E8;
 --white:#fff;
}
html {
	scroll-behavior: smooth
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	color: var(--black);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden
}
a {
	text-decoration: none;
	color: inherit
}
/* ── NAV ── */
nav {
	background: var(--black);
	padding: 0 24px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 100
}
.nav-logo {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.5px;
	color: white
}
.nav-logo .you {
	color: var(--orange)
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 28px
}
.nav-links a {
	color: rgba(255,255,255,.65);
	font-size: 13px;
	font-weight: 600;
	transition: color .2s
}
.nav-links a:hover {
	color: white
}
.nav-cta {
	background: var(--orange);
	color: white!important;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 700;
	transition: background .2s;
	white-space: nowrap
}
.nav-cta:hover {
	background: var(--dark)!important
}
/* ── HERO ── */
.hero {
	background: var(--black);
	padding: 120px 24px 72px;
	position: relative;
	overflow: hidden
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 100%, rgba(242,101,34,.18) 0%, transparent 65%);
	pointer-events: none
}
.hero-inner {
	max-width: 780px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(242,101,34,.14);
	border: 1px solid rgba(242,101,34,.28);
	color: var(--orange);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 22px
}
.eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	animation: pulse 1.8s ease-in-out infinite;
	flex-shrink: 0
}
@keyframes pulse {
0%, 100% {
opacity:1
}
50% {
opacity:.35
}
}
.hero h1 {
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 800;
	color: white;
	letter-spacing: -2.5px;
	line-height: 1.07;
	margin-bottom: 18px
}
.hero h1 em {
	font-style: normal;
	color: var(--orange)
}
.hero-sub {
	font-size: clamp(15px, 1.8vw, 18px);
	color: rgba(255,255,255,.6);
	max-width: 540px;
	line-height: 1.75
}
/* ── CONTACT BODY ── */
.contact-body {
	padding: 80px 24px 96px;
	background: var(--white)
}
.contact-inner {
	max-width: 1060px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 64px;
	align-items: start
}

@media(max-width:860px) {
.contact-inner {
	grid-template-columns: 1fr;
	gap: 48px
}
}
/* ── LEFT: INFO ── */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px
}
.info-block {
}
.info-label {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--orange);
	margin-bottom: 10px
}
.info-block h2 {
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.1;
	margin-bottom: 16px
}
.info-block p {
	font-size: 15px;
	color: var(--mid);
	line-height: 1.75
}
/* Contact detail rows */
.detail-list {
	display: flex;
	flex-direction: column;
	gap: 18px
}
.detail-row {
	display: flex;
	align-items: flex-start;
	gap: 14px
}
.detail-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--gray);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0
}
.detail-content {
}
.detail-content strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 2px
}
.detail-content span, .detail-content a {
	font-size: 14px;
	color: var(--mid);
	line-height: 1.55
}
.detail-content a:hover {
	color: var(--orange)
}
/* Quick action chips */
.quick-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 4px
}
.qa-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	transition: all .2s;
	border: 1.5px solid var(--border)
}
.qa-btn:hover {
	border-color: var(--orange);
	color: var(--orange);
	transform: translateX(4px)
}
.qa-btn-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0
}
.qa-whatsapp .qa-btn-icon {
	background: #25D366;
	color: white
}
.qa-call .qa-btn-icon {
	background: var(--orange);
	color: white
}
.qa-email .qa-btn-icon {
	background: var(--black);
	color: white
}
.qa-calendly .qa-btn-icon {
	background: #006BFF;
	color: white
}
/* Social row */
.social-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 4px
}
.social-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1.5px solid var(--border);
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	transition: all .2s
}
.social-chip:hover {
	border-color: var(--orange);
	color: var(--orange)
}
.social-chip svg {
	flex-shrink: 0
}
/* ── RIGHT: FORM ── */
.contact-form-wrap {
}
.form-heading {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.8px;
	margin-bottom: 6px
}
.form-sub {
	font-size: 14px;
	color: var(--light);
	margin-bottom: 28px;
	line-height: 1.6
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px
}
.form-group label {
	font-size: 13px;
	font-weight: 700;
	color: var(--black)
}
.form-group label .req {
	color: var(--orange)
}
.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	color: var(--black);
	background: var(--white);
	transition: border-color .2s, box-shadow .2s;
	outline: none;
	-webkit-appearance: none
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(242,101,34,.1)
}
.form-group input::placeholder, .form-group textarea::placeholder {
color:#bbb
}
.form-group textarea {
	min-height: 120px;
	resize: vertical;
	line-height: 1.6
}
.form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px
}

@media(max-width:480px) {
.form-row-2 {
	grid-template-columns: 1fr
}
}
.form-submit .btn {
	width: 100%;
	justify-content: center;
	font-size: 15px;
	padding: 15px;
	margin-top: 4px
}
.form-note {
	font-size: 12px;
	color: var(--light);
	margin-top: 10px;
	text-align: center
}
.form-success {
	display: none;
	background: #f0faf4;
	border: 1.5px solid #4caf50;
	border-radius: 10px;
	padding: 24px;
	text-align: center;
	margin-top: 16px
}
.form-success h3 {
	font-size: 17px;
	font-weight: 800;
	color: #2e7d32;
	margin-bottom: 6px
}
.form-success p {
	font-size: 14px;
	color: #555
}
/* Shared btn */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all .2s
}
.btn-primary {
	background: var(--orange);
	color: white
}
.btn-primary:hover {
	background: var(--dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(242,101,34,.35)
}
/* ── MAP ── */
.map-section {
	background: var(--gray);
	padding: 0
}
.map-section iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: none
}
.map-caption {
	padding: 18px 24px;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px
}
.map-caption p {
	font-size: 13px;
	color: rgba(255,255,255,.55)
}
.map-caption strong {
	color: white
}
.map-directions {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--orange);
	color: white;
	padding: 9px 18px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	transition: background .2s
}
.map-directions:hover {
	background: var(--dark)
}
/* ── FOOTER ── */
footer {
	background: var(--black);
	padding: 36px 24px;
	text-align: center
}
.footer-logo {
	font-size: 18px;
	font-weight: 800;
	color: white;
	margin-bottom: 10px
}
.footer-logo .you {
	color: var(--orange)
}
footer p {
	font-size: 12px;
	color: rgba(255,255,255,1);
	line-height: 1.7
}
.footer-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 12px;
	flex-wrap: wrap
}
.footer-links a {
	color: rgba(255,255,255,.4);
	font-size: 12px;
	transition: color .2s
}
.footer-links a:hover {
	color: var(--orange)
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
nav .nav-links {
	display: none
}
.hero {
	padding: 100px 24px 56px
}
}
