/* ── Homepage Styles — DocShipper-inspired ── */

.sd-elementor-content:empty {
	display: none;
}

.sd-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Section labels & titles ── */
.sd-section-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--red);
	margin-bottom: 12px;
}

.sd-section-label--light {
	color: rgba(255, 255, 255, 0.7);
}

.sd-section-title {
	text-align: center;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 12px;
	font-weight: 800;
}

.sd-section-title em {
	font-style: italic;
	color: var(--red);
}

.sd-section-subtitle {
	text-align: center;
	color: var(--grey);
	max-width: 560px;
	margin: 0 auto 48px;
	font-size: 1rem;
	line-height: 1.7;
}

/* ── Buttons ── */
.sd-btn {
	display: inline-block;
	padding: 13px 32px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	cursor: pointer;
	border: 2px solid transparent;
}

.sd-btn-red {
	background: var(--red);
	color: var(--white);
	border-color: var(--red);
}

.sd-btn-red:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
	color: var(--white);
}

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

.sd-btn-outline-navy:hover {
	background: var(--navy);
	color: var(--white);
}

.sd-btn-lg {
	padding: 16px 40px;
	font-size: 1rem;
}

/* ══════════════════════════════
   HERO — Enlango style (split grid + floating cards)
   Alternate: inc/hero-fastchain.php + css/hero-fastchain.css
   ══════════════════════════════ */
.sd-hero {
	background: var(--site-bg);
	padding: 56px 0 72px;
	overflow: hidden;
}

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

.sd-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 6px 16px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 24px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.sd-hero-badge svg {
	color: var(--red);
	flex-shrink: 0;
}

.sd-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--navy);
}

.sd-hero h1 em {
	font-style: italic;
	color: var(--red);
}

.sd-hero-sub {
	color: var(--grey);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 480px;
}

.sd-hero-buttons {
	display: flex;
	gap: 14px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.sd-hero-stats-row {
	display: flex;
	gap: 40px;
}

.sd-hero-stat {
	display: flex;
	flex-direction: column;
}

.sd-hero-stat-num {
	font-family: 'Playfair Display', serif;
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--navy);
	line-height: 1.2;
}

.sd-hero-stat-label {
	font-size: 0.78rem;
	color: var(--grey);
	margin-top: 2px;
}

.sd-hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sd-hero-image-wrapper {
	position: relative;
	width: 100%;
}

.sd-hero-image {
	width: 100%;
	min-height: 440px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(11, 42, 82, 0.12);
}

.sd-hero-image-placeholder {
	background: linear-gradient(135deg, #dde3ec, #c8d0dc);
	border-radius: 20px;
	width: 100%;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #8b95a5;
	font-size: 0.85rem;
	box-shadow: 0 20px 60px rgba(11, 42, 82, 0.12);
}

.sd-hero-image-placeholder svg {
	color: #a0aab8;
}

.sd-float-card {
	position: absolute;
	background: var(--white);
	border-radius: 12px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy);
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	z-index: 2;
	white-space: nowrap;
}

.sd-float-card svg {
	flex-shrink: 0;
}

.sd-float-top-right {
	top: 24px;
	right: -20px;
}

.sd-float-mid-right {
	top: 50%;
	right: -32px;
	transform: translateY(-50%);
}

.sd-float-bottom-left {
	bottom: 32px;
	left: -24px;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding: 14px 20px;
	border-radius: 14px;
}

.sd-float-big-num {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--red);
	line-height: 1.1;
}

.sd-float-big-label {
	font-size: 0.72rem;
	color: var(--grey);
	font-weight: 500;
	white-space: normal;
	max-width: 140px;
	line-height: 1.3;
}

/* ══════════════════════════════
   STATS BAR
   ══════════════════════════════ */
.sd-stats-bar {
	background: var(--navy);
	padding: 40px 0;
}

.sd-stats-headline {
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 28px;
}

.sd-stats-headline strong {
	color: var(--white);
}

.sd-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.sd-stat-number {
	display: block;
	font-family: 'Playfair Display', serif;
	font-weight: 800;
	font-size: 2rem;
	color: var(--white);
	line-height: 1.2;
}

.sd-stat-label {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ══════════════════════════════
   SERVICES (3-UP)
   ══════════════════════════════ */
.sd-services {
	padding: 80px 0;
	background: var(--grey-light);
	text-align: center;
}

.sd-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.sd-service-card {
	background: var(--white);
	padding: 40px 28px 32px;
	border-radius: 10px;
	text-align: left;
	border: 1px solid var(--border);
	transition: box-shadow 0.25s, transform 0.25s;
}

.sd-service-card:hover {
	box-shadow: 0 12px 36px rgba(11, 42, 82, 0.08);
	transform: translateY(-4px);
}

.sd-service-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: #fdf0f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	margin-bottom: 20px;
}

.sd-service-card h3 {
	font-family: 'Inter', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.sd-service-card p {
	color: var(--grey);
	font-size: 0.9rem;
	line-height: 1.65;
	margin-bottom: 16px;
}

.sd-card-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--red);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.sd-card-link::after {
	content: '\2192';
	transition: transform 0.15s;
}

.sd-card-link:hover::after {
	transform: translateX(4px);
}

/* ══════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════ */
.sd-featured {
	padding: 80px 0;
	background: var(--white);
	text-align: center;
}

/* ══════════════════════════════
   WHY SHIPPING DELIGHT
   ══════════════════════════════ */
.sd-why {
	padding: 80px 0;
	background: var(--grey-light);
}

.sd-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.sd-why-text .sd-section-label {
	margin-bottom: 8px;
}

.sd-why-text h2 {
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	margin-bottom: 20px;
	text-align: left;
}

.sd-why-text h2 em {
	font-style: italic;
	color: var(--red);
}

.sd-why-text > p {
	color: var(--grey);
	line-height: 1.7;
	margin-bottom: 24px;
}

.sd-check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.sd-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 0;
	font-size: 0.92rem;
	color: var(--grey);
	line-height: 1.5;
}

.sd-check-list li svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.sd-why-img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(11, 42, 82, 0.1);
}

.sd-image-placeholder-large {
	background: linear-gradient(135deg, #eef1f5, #dde3ec);
	border-radius: 12px;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: #8b95a5;
	font-size: 0.85rem;
}

.sd-image-placeholder-large svg {
	color: #a0aab8;
}

/* ══════════════════════════════
   PARTNERS SLIDER
   ══════════════════════════════ */
.sd-partners {
	padding: 60px 0;
	background: var(--white);
	text-align: center;
	overflow: hidden;
}

.sd-partners-track {
	overflow: hidden;
	position: relative;
	margin-top: 32px;
}

.sd-partners-track::before,
.sd-partners-track::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.sd-partners-track::before {
	left: 0;
	background: linear-gradient(to right, var(--white), transparent);
}

.sd-partners-track::after {
	right: 0;
	background: linear-gradient(to left, var(--white), transparent);
}

.sd-partners-slide {
	display: flex;
	align-items: center;
	gap: 60px;
	animation: sd-scroll-partners 30s linear infinite;
	width: max-content;
}

.sd-partners-slide img {
	height: 60px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
}

@keyframes sd-scroll-partners {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ══════════════════════════════
   SIZE CATEGORIES
   ══════════════════════════════ */
.sd-categories {
	padding: 80px 0;
	background: var(--white);
	text-align: center;
}

.sd-categories-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.sd-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 16px;
	background: var(--grey-light);
	border: 2px solid var(--border);
	border-radius: 10px;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sd-cat-card:hover {
	border-color: var(--red);
	box-shadow: 0 8px 24px rgba(200, 16, 46, 0.1);
	transform: translateY(-3px);
}

.sd-cat-size {
	font-family: 'Playfair Display', serif;
	font-weight: 800;
	font-size: 1.8rem;
	color: var(--navy);
	line-height: 1.1;
	margin-bottom: 6px;
}

.sd-cat-card:hover .sd-cat-size {
	color: var(--red);
}

.sd-cat-name {
	font-size: 0.8rem;
	color: var(--grey);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ══════════════════════════════
   CTA BAND
   ══════════════════════════════ */
/* ══════════════════════════════
   HOME TESTIMONIALS
   ══════════════════════════════ */
.sd-home-testimonials {
	padding: 80px 0;
	background: var(--grey-light);
}

.sd-home-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.sd-btn-outline-navy {
	background: transparent;
	color: var(--navy);
	border: 2px solid var(--navy);
	padding: 12px 28px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s, color 0.2s;
}

.sd-btn-outline-navy:hover {
	background: var(--navy);
	color: var(--white);
}

/* ══════════════════════════════
   HOME CONTACT FORM
   ══════════════════════════════ */
.sd-home-contact {
	padding: 80px 0;
	background: var(--grey-light);
}

.sd-home-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: flex-start;
}

.sd-home-contact-text .sd-section-label {
	margin-bottom: 8px;
}

.sd-home-contact-text h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin-bottom: 16px;
	text-align: left;
}

.sd-home-contact-text h2 em {
	font-style: italic;
	color: var(--red);
}

.sd-home-contact-text > p {
	color: var(--grey);
	line-height: 1.7;
	margin-bottom: 28px;
}

.sd-home-contact-info {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sd-contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--grey);
}

.sd-contact-row a {
	color: var(--navy);
	text-decoration: none;
}

.sd-contact-row a:hover {
	color: var(--red);
}

.sd-contact-row svg {
	flex-shrink: 0;
}

.sd-home-contact-form {
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--border);
	padding: 32px;
}

/* ══════════════════════════════
   CTA BAND
   ══════════════════════════════ */
.sd-cta-band {
	background: var(--navy-light);
	padding: 72px 0;
}

.sd-cta-inner {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 48px;
	align-items: center;
}

.sd-cta-text h2 {
	color: var(--white);
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	margin-bottom: 12px;
}

.sd-cta-text h2 em {
	font-style: italic;
	color: var(--red);
}

.sd-cta-text p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

.sd-cta-action {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.sd-cta-phone {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.sd-cta-phone a {
	color: var(--white);
	text-decoration: none;
}

.sd-cta-phone a:hover {
	text-decoration: underline;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
	.sd-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sd-hero {
		padding: 40px 0 48px;
		text-align: center;
	}

	.sd-hero-badge {
		justify-content: center;
	}

	.sd-hero-sub {
		max-width: none;
	}

	.sd-hero-buttons {
		justify-content: center;
	}

	.sd-hero-stats-row {
		justify-content: center;
	}

	.sd-hero-image-placeholder {
		min-height: 300px;
	}

	.sd-float-top-right { right: 8px; top: 12px; }
	.sd-float-mid-right { right: 8px; }
	.sd-float-bottom-left { left: 8px; bottom: 16px; }

	.sd-services-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}

	.sd-why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sd-why-text h2,
	.sd-why-text .sd-section-label {
		text-align: center;
	}

	.sd-why-text > p {
		text-align: center;
	}

	.sd-categories-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sd-cta-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.sd-cta-action {
		align-items: center;
	}

	.sd-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

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

	.sd-home-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sd-home-contact-text h2,
	.sd-home-contact-text .sd-section-label {
		text-align: center;
	}

	.sd-home-contact-text > p {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.sd-hero {
		padding: 28px 0 40px;
	}

	.sd-hero-stats-row {
		gap: 24px;
	}

	.sd-float-card {
		font-size: 0.75rem;
		padding: 8px 12px;
	}

	.sd-float-big-num {
		font-size: 1.3rem;
	}

	.sd-services,
	.sd-featured,
	.sd-why,
	.sd-categories,
	.sd-home-testimonials,
	.sd-home-contact {
		padding: 56px 0;
	}

	.sd-cta-band {
		padding: 48px 0;
	}

	.sd-categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sd-home-contact-form {
		padding: 20px;
	}

	.sd-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sd-image-placeholder-large {
		min-height: 260px;
	}
}

/* ══════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════ */

/* Hero entrance — text from left, image from right */
.sd-hero-text {
	opacity: 0;
	transform: translateX(-60px);
	animation: sd-slide-in-left 0.8s ease forwards;
	animation-delay: 0.2s;
}

.sd-hero-visual {
	opacity: 0;
	transform: translateX(60px);
	animation: sd-slide-in-right 0.8s ease forwards;
	animation-delay: 0.4s;
}

@keyframes sd-slide-in-left {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes sd-slide-in-right {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Section reveal on scroll */
.sd-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.sd-reveal.sd-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered children */
.sd-reveal-children > * {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.sd-reveal-children.sd-visible > *:nth-child(1) { transition-delay: 0.1s; }
.sd-reveal-children.sd-visible > *:nth-child(2) { transition-delay: 0.2s; }
.sd-reveal-children.sd-visible > *:nth-child(3) { transition-delay: 0.3s; }
.sd-reveal-children.sd-visible > *:nth-child(4) { transition-delay: 0.4s; }
.sd-reveal-children.sd-visible > *:nth-child(5) { transition-delay: 0.5s; }
.sd-reveal-children.sd-visible > *:nth-child(6) { transition-delay: 0.6s; }
.sd-reveal-children.sd-visible > *:nth-child(7) { transition-delay: 0.7s; }
.sd-reveal-children.sd-visible > *:nth-child(8) { transition-delay: 0.8s; }

.sd-reveal-children.sd-visible > * {
	opacity: 1;
	transform: translateY(0);
}
