/* ==========================================================================
   Shunya Logistics — Mobile-first responsive stylesheet
   Base styles (mobile) first; min-width media queries add desktop styles.
   ========================================================================== */

:root {
	--portora-primary: #FE762A;
	--portora-primary-dark: #E8641F;
	--portora-primary-light: #FFA366;
	--portora-navy: #0B2A4A;
	--portora-navy-2: #0F3763;
	--portora-navy-light: #14487F;
	--portora-dark: #0B2A4A;
	--portora-dark-2: #0F3763;
	--portora-text: #5B6B7D;
	--portora-heading: #0C2135;
	--portora-bg-alt: #F4F7FA;
	--portora-border: #E4E9F0;
	--portora-white: #FFFFFF;
	--portora-radius: 10px;
	--portora-shadow: 0 10px 30px rgba(11, 42, 74, 0.09);
	--portora-shadow-hover: 0 20px 44px rgba(11, 42, 74, 0.18);
	--portora-gradient-navy: linear-gradient(135deg, #0B2A4A 0%, #0F3763 55%, #14487F 100%);
	--portora-gradient-accent: linear-gradient(135deg, #FE762A 0%, #FF9147 100%);
	--portora-container: 1200px;
	--portora-gap: 1.25rem;
	--portora-transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ----- Reset & base ----- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--portora-text);
	background: var(--portora-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins", sans-serif;
	color: var(--portora-heading);
	line-height: 1.25;
	margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1.25rem; }

a {
	color: var(--portora-primary);
	text-decoration: none;
	transition: color var(--portora-transition);
}
a:hover { color: var(--portora-primary-dark); }

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul { list-style: none; padding: 0; margin: 0; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	display: block;
	font-size: 1em;
	font-weight: 700;
	padding: 15px 23px 14px;
	background: var(--portora-white);
	color: var(--portora-heading);
	z-index: 100000;
	top: 0;
	left: 0;
}

.container {
	width: 100%;
	max-width: var(--portora-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* ----- Buttons ----- */
.portora-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.95rem 1.75rem;
	border-radius: var(--portora-radius);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all var(--portora-transition);
	white-space: nowrap;
}

.portora-btn--primary {
	background: var(--portora-gradient-accent);
	color: var(--portora-white);
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(254, 118, 42, 0.28);
}
.portora-btn--primary:hover {
	background: var(--portora-primary-dark);
	border-color: var(--portora-primary-dark);
	color: var(--portora-white);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(254, 118, 42, 0.4);
}

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

.portora-btn--outline-light {
	background: transparent;
	color: var(--portora-white);
	border-color: rgba(255, 255, 255, 0.55);
}
.portora-btn--outline-light:hover {
	border-color: var(--portora-white);
	background: rgba(255, 255, 255, 0.1);
	color: var(--portora-white);
}

.portora-btn--sm {
	padding: 0.7rem 1.35rem;
	font-size: 0.85rem;
}

.portora-text-primary { color: var(--portora-primary); }

/* ----- Eyebrow labels ----- */
.portora-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--portora-primary);
	margin-bottom: 1rem;
}
.portora-eyebrow--dark { color: var(--portora-primary); }
.portora-eyebrow__icon {
	display: inline-flex;
	width: 1.4em;
	height: 1.4em;
	align-items: center;
	justify-content: center;
}
.portora-eyebrow__icon svg,
.portora-eyebrow__icon i { width: 100%; height: 100%; }

/* ----- Top bar ----- */
.portora-topbar {
	background: var(--portora-dark);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
}
.portora-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	justify-content: space-between;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.portora-topbar__info {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.portora-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: rgba(255, 255, 255, 0.85);
}
.portora-topbar__item:hover { color: var(--portora-primary); }
.portora-topbar__icon { display: inline-flex; width: 1em; height: 1em; }
.portora-topbar__icon svg { width: 100%; height: 100%; }
.portora-topbar__social {
	display: flex;
	gap: 0.85rem;
}
.portora-topbar__social a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
}
.portora-topbar__social a:hover { color: var(--portora-primary); }

/* ----- Header ----- */
.portora-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--portora-white);
	box-shadow: 0 2px 12px rgba(20, 23, 27, 0.06);
	transition: background var(--portora-transition), box-shadow var(--portora-transition);
}
.portora-header--transparent {
	background: transparent;
	box-shadow: none;
	position: absolute;
	width: 100%;
}

/* Overlay header: floats over the hero section on the front page.
   Works with the absolute-positioned transparent header; the hero keeps
   its own top padding so the content starts below the floating bar. */
.portora-header--overlay {
	z-index: 101;
}
.portora-header--transparent.portora-header--scrolled {
	background: var(--portora-white);
	box-shadow: 0 2px 12px rgba(20, 23, 27, 0.08);
	position: fixed;
}
.portora-header--transparent.portora-header--scrolled .portora-header__logo-fallback strong,
.portora-header--transparent.portora-header--scrolled .portora-nav a,
.portora-header--transparent.portora-header--scrolled .portora-header__toggle i {
	color: var(--portora-heading);
}
.portora-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}
.portora-header__side {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.portora-header__side--start { flex-shrink: 0; }
.portora-header__side--center {
	flex: 1 1 auto;
	justify-content: center;
}
.portora-header__side--end { flex-shrink: 0; }
.portora-header__logo-fallback {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--portora-heading);
	white-space: nowrap;
}
.portora-header--transparent:not(.portora-header--scrolled) .portora-header__logo-fallback {
	color: var(--portora-white);
}
.portora-header--transparent:not(.portora-header--scrolled) .portora-nav > li > a {
	color: var(--portora-white);
}
.custom-logo-link img {
	max-height: 52px;
	width: auto;
}
.portora-header--transparent:not(.portora-header--scrolled) .custom-logo-link img {
	filter: brightness(0) invert(1);
	transition: filter var(--portora-transition);
}

/* Mobile nav — right slide-in drawer */
.portora-mobile-drawer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 110;
}
.portora-mobile-drawer.portora-nav--open {
	display: block;
	animation: portoraDrawerFadeIn 0.3s ease both;
}
@keyframes portoraDrawerFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.portora-drawer__backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20, 23, 27, 0.55);
	backdrop-filter: blur(4px);
	z-index: 111;
}
.portora-nav--open + .portora-drawer__backdrop {
	display: block;
	animation: portoraDrawerFadeIn 0.3s ease both;
}
.portora-drawer__inner {
	position: absolute;
	top: 0;
	right: 0;
	width: min(86vw, 340px);
	height: 100%;
	background: var(--portora-white);
	box-shadow: -12px 0 40px rgba(20, 23, 27, 0.25);
	display: flex;
	flex-direction: column;
	padding: 1.25rem;
	z-index: 112;
	transform: translateX(105%);
	transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.portora-nav--open .portora-drawer__inner {
	transform: translateX(0);
}
.portora-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--portora-border);
}
.portora-drawer__brand {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--portora-heading);
	white-space: nowrap;
}
.portora-drawer__brand img { max-height: 44px; width: auto; }
.portora-drawer__brand strong {
	line-height: 1.4;
	font-size: 1.1rem;
}
.portora-drawer__close {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--portora-border);
	border-radius: 50%;
	color: var(--portora-heading);
	font-size: 1rem;
	cursor: pointer;
}
.portora-drawer__close:hover {
	background: var(--portora-primary);
	border-color: var(--portora-primary);
	color: var(--portora-white);
}
.portora-nav--vertical {
	flex: 1 1 auto;
	overflow-y: auto;
	padding-top: 1rem;
}
.portora-nav--vertical > li > a {
	padding-top: 1rem;
	padding-bottom: 1rem;
	line-height: 1.6;
}
.portora-drawer__foot {
	padding-top: 1rem;
	border-top: 1px solid var(--portora-border);
}
.portora-drawer__foot .portora-btn { width: 100%; }

/* Legacy mobile nav kept for older markups */
.portora-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	margin-left: 0.75rem;
	line-height: 1;
	flex-shrink: 0;
}
.portora-header__toggle i {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--portora-white);
	margin: 4px 0;
	transition: transform var(--portora-transition), opacity var(--portora-transition);
}
.portora-header--scrolled .portora-header__toggle i,
:not(.portora-header--transparent) .portora-header__toggle i {
	background: var(--portora-heading);
}
.portora-header__toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.portora-header__toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.portora-header__toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.portora-nav {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--portora-white);
	box-shadow: 0 12px 30px rgba(20, 23, 27, 0.12);
	padding: 1rem 1.25rem;
	gap: 0;
}
.portora-nav.portora-nav--open { display: flex; }
.portora-nav li { position: relative; }
.portora-nav > li > a {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--portora-heading);
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--portora-border);
}
.portora-nav > li:last-child > a { border-bottom: 0; }
.portora-nav > li.current-menu-item > a,
.portora-nav > li.current_page_item > a { color: var(--portora-primary); }

.portora-nav .sub-menu { display: none; padding-left: 1rem; }
.portora-nav .sub-menu.portora-sub--open { display: block; }
.portora-nav .sub-menu a {
	display: block;
	font-size: 0.9rem;
	color: var(--portora-text);
	padding: 0.5rem 0;
}
.portora-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 0.5rem;
	vertical-align: middle;
}

.portora-header__cta { display: none; }

/* ----- Hero ----- */
.portora-hero {
	position: relative;
	background: var(--portora-gradient-navy);
	background-size: cover;
	background-position: center;
	color: var(--portora-white);
	padding: 7rem 0 4rem;
	overflow: hidden;
}
.portora-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 80% at 85% 15%, rgba(254, 118, 42, 0.22) 0%, rgba(254, 118, 42, 0) 60%);
	pointer-events: none;
}
.portora-hero[style*="background-image"]::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(11, 42, 74, 0.92) 0%, rgba(11, 42, 74, 0.75) 55%, rgba(15, 55, 99, 0.6) 100%);
	pointer-events: none;
}
.portora-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
.portora-hero__title .portora-text-primary { color: var(--portora-primary); }
.portora-hero h1,
.portora-hero h2,
.portora-hero h3,
.portora-hero .portora-hero__title {
	color: var(--portora-white);
}
.portora-hero__desc { color: rgba(255, 255, 255, 0.85); }
.portora-hero__title {
	font-family: "Poppins", sans-serif;
}
.portora-hero__desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.02rem;
	max-width: 60ch;
}
.portora-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

/* Quote form card */
.portora-hero__form-wrap { max-width: 460px; }
.portora-quote-form {
	background: var(--portora-white);
	border-radius: calc(var(--portora-radius) + 4px);
	padding: 1.5rem;
	color: var(--portora-heading);
	box-shadow: var(--portora-shadow-hover);
}
.portora-quote-form h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}
.portora-quote-form input,
.portora-quote-form textarea {
	width: 100%;
	font: inherit;
	border: 1px solid var(--portora-border);
	border-radius: 6px;
	padding: 0.75rem 0.9rem;
	margin-bottom: 0.85rem;
	color: var(--portora-heading);
	background: var(--portora-bg-alt);
	transition: border-color var(--portora-transition);
}
.portora-quote-form input:focus,
.portora-quote-form textarea:focus {
	outline: none;
	border-color: var(--portora-primary);
}
.portora-quote-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
.portora-quote-form__submit { width: 100%; }

/* ----- Sections ----- */
.portora-section { padding: 3.5rem 0; }
.portora-section--alt { background: var(--portora-bg-alt); }
.portora-section__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.5rem;
}
.portora-section__header p { font-size: 1rem; }

/* ----- About / Journey ----- */
.portora-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
.portora-about__image-wrap img {
	border-radius: calc(var(--portora-radius) + 4px);
	box-shadow: var(--portora-shadow);
}
.portora-about__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.25rem;
}
.portora-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: rgba(254, 118, 42, 0.08);
	color: var(--portora-heading);
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.7rem 1.1rem;
	border-radius: 999px;
}
.portora-chip__icon { display: inline-flex; width: 1.15em; height: 1.15em; color: var(--portora-primary); }
.portora-chip__icon svg { width: 100%; height: 100%; }

/* ----- Services ----- */
.portora-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--portora-gap);
}
.portora-service-card {
	position: relative;
	background: var(--portora-white);
	border: 1px solid var(--portora-border);
	border-radius: var(--portora-radius);
	padding: 1.5rem;
	overflow: hidden;
	transition: transform var(--portora-transition), box-shadow var(--portora-transition), border-color var(--portora-transition);
}
.portora-service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--portora-gradient-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--portora-transition);
}
.portora-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--portora-shadow-hover);
	border-color: transparent;
}
.portora-service-card:hover::before { transform: scaleX(1); }
.portora-service-card__number {
	position: absolute;
	top: -14px;
	right: 1.25rem;
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: 1rem;
	color: var(--portora-white);
	background: var(--portora-gradient-navy);
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	box-shadow: 0 6px 14px rgba(11, 42, 74, 0.3);
}
.portora-service-card__image img {
	border-radius: 6px;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
	margin-bottom: 1rem;
}
.portora-service-card h3 a { color: inherit; }
.portora-service-card h3 a:hover { color: var(--portora-primary); }
.portora-service-card p { font-size: 0.95rem; }
.portora-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}
.portora-service-card__link svg { width: 1em; height: 1em; }

/* ----- Categories ----- */
.portora-categories__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--portora-gap);
}
.portora-category-card {
	position: relative;
	border-radius: var(--portora-radius);
	overflow: hidden;
	box-shadow: var(--portora-shadow);
	transition: box-shadow var(--portora-transition);
}
.portora-category-card:hover { box-shadow: var(--portora-shadow-hover); }
.portora-category-card__image img {
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.portora-category-card:hover .portora-category-card__image img { transform: scale(1.06); }
.portora-category-card__image--placeholder {
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--portora-bg-alt);
	color: var(--portora-primary);
	font-size: 2.5rem;
}
.portora-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(11, 42, 74, 0.85) 0%, rgba(11, 42, 74, 0) 55%);
	pointer-events: none;
}
.portora-category-card h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0.9rem 1rem 1rem;
	color: var(--portora-white);
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.45;
	margin-top: -3.5rem;
}

/* ----- Why choose us ----- */
.portora-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
.portora-support-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	background: var(--portora-white);
	border: 1px solid var(--portora-border);
	border-left: 4px solid var(--portora-primary);
	border-radius: var(--portora-radius);
	padding: 1.25rem;
	margin: 1.5rem 0;
	box-shadow: var(--portora-shadow);
	transition: box-shadow var(--portora-transition), transform var(--portora-transition);
}
.portora-support-card:hover {
	box-shadow: var(--portora-shadow-hover);
	transform: translateY(-3px);
}
.portora-support-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75em;
	height: 2.75em;
	border-radius: 50%;
	background: rgba(254, 118, 42, 0.1);
	color: var(--portora-primary);
	padding: 0.6em;
}
.portora-support-card__icon svg { width: 100%; height: 100%; }
.portora-support-card h3 { margin-bottom: 0.25rem; }
.portora-why__list { padding-left: 0; margin: 0; }
.portora-why__list li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.75rem;
}
.portora-why__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 0.65em;
	height: 0.65em;
	background: var(--portora-primary);
	border-radius: 50%;
}
.portora-why__media img {
	border-radius: calc(var(--portora-radius) + 4px);
	box-shadow: var(--portora-shadow);
}

/* ----- Stats ----- */
.portora-stats {
	position: relative;
	background: var(--portora-gradient-navy);
	color: var(--portora-white);
	padding: 3rem 0;
	overflow: hidden;
}
.portora-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(50% 90% at 10% 100%, rgba(254, 118, 42, 0.16) 0%, rgba(254, 118, 42, 0) 60%);
	pointer-events: none;
}
.portora-stats__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 1rem;
	text-align: center;
}
.portora-stat__number {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: clamp(2rem, 6vw, 2.75rem);
	color: var(--portora-primary);
	line-height: 1.1;
}
.portora-stat__label { font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); }

/* ----- Blog ----- */
.portora-blog__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--portora-gap);
}
.portora-post-card {
	background: var(--portora-white);
	border: 1px solid var(--portora-border);
	border-radius: var(--portora-radius);
	overflow: hidden;
	transition: transform var(--portora-transition), box-shadow var(--portora-transition);
}
.portora-post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--portora-shadow-hover);
}
.portora-post-card__image img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.portora-post-card__body { padding: 1.35rem; }
.portora-post-card__meta {
	font-size: 0.8rem;
	color: #9AA1AC;
	margin-bottom: 0.5rem;
}
.portora-post-card h3 { margin-bottom: 0.6rem; }
.portora-post-card h3 a { color: inherit; }
.portora-post-card h3 a:hover { color: var(--portora-primary); }
.portora-post-card p { font-size: 0.95rem; }

/* ----- CTA bands ----- */
.portora-cta__grid {
	display: grid;
	grid-template-columns: 1fr;
}
.portora-cta__band {
	padding: 2.5rem 1.5rem;
}
.portora-cta__band--dark { background: var(--portora-gradient-navy); color: var(--portora-white); }
.portora-cta__band--dark h2 { color: var(--portora-white); }
.portora-cta__band--dark p { color: rgba(255, 255, 255, 0.85); }
.portora-cta__band--accent { background: var(--portora-gradient-accent); color: var(--portora-white); }
.portora-cta__band--accent h2 { color: var(--portora-white); }
.portora-cta__band--accent p { color: rgba(255, 255, 255, 0.9); }

/* ----- Newsletter ----- */
.portora-newsletter {
	background: var(--portora-dark);
	background-size: cover;
	background-position: center;
	color: var(--portora-white);
	text-align: center;
	padding: 3.5rem 0;
}
.portora-newsletter h2 { color: var(--portora-white); }
.portora-newsletter p { color: rgba(255, 255, 255, 0.85); }
.portora-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	max-width: 520px;
	margin: 1.5rem auto 0;
}
.portora-newsletter__form input {
	font: inherit;
	border: 0;
	border-radius: var(--portora-radius);
	padding: 0.95rem 1.1rem;
}

/* Breadcrumb */
.portora-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: #9AA1AC;
	margin-top: 0.5rem;
}
.portora-breadcrumb a { color: #9AA1AC; }
.portora-breadcrumb a:hover { color: var(--portora-primary); }
.portora-breadcrumb__sep { color: #CBD1DA; }

/* ----- Page templates ----- */
.portora-page { padding: 3rem 0; }

@keyframes portoraFadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Brand-styled inner page banner (dark charcoal + orange pattern). */
.portora-banner {
	position: relative;
	background:
		linear-gradient(135deg, var(--portora-dark) 0%, var(--portora-dark-2) 60%, var(--portora-navy-light) 100%);
	color: var(--portora-white);
	padding: 5.5rem 0 4rem;
	overflow: hidden;
}
.portora-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 80%, rgba(254, 118, 42, 0.18), transparent 35%),
		radial-gradient(circle at 85% 15%, rgba(254, 118, 42, 0.14), transparent 30%);
	pointer-events: none;
}
.portora-banner__pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}
.portora-banner__pattern::before,
.portora-banner__pattern::after {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	border: 24px solid rgba(254, 118, 42, 0.10);
	border-radius: 50%;
}
.portora-banner__pattern::before {
	top: -90px;
	right: -70px;
}
.portora-banner__pattern::after {
	bottom: -110px;
	left: -80px;
	width: 320px;
	height: 320px;
	border-color: rgba(255, 255, 255, 0.05);
}
/* Diagonal brand accent stripe */
.portora-banner__inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--portora-primary), transparent);
}
.portora-banner__inner {
	position: relative;
	text-align: left;
	z-index: 1;
}
.portora-banner__title {
	font-size: clamp(1.75rem, 5vw, 2.75rem);
	font-weight: 800;
	color: var(--portora-white);
	margin: 0 0 0.6rem;
}
.portora-banner__title .portora-text-primary { color: var(--portora-primary); }
.portora-banner .portora-breadcrumb { color: rgba(255, 255, 255, 0.75); }
.portora-banner .portora-breadcrumb a { color: rgba(255, 255, 255, 0.75); }
.portora-banner .portora-breadcrumb a:hover { color: var(--portora-primary); }
.portora-banner .portora-eyebrow {
	color: var(--portora-primary);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
/* Entrance animation */
.portora-banner .portora-banner__title,
.portora-banner .portora-eyebrow,
.portora-banner .portora-breadcrumb {
	opacity: 0;
	transform: translateY(14px);
	animation: portoraFadeUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.portora-banner .portora-eyebrow { animation-delay: 0.08s; }
.portora-banner .portora-banner__title { animation-delay: 0.18s; }
.portora-banner .portora-breadcrumb { animation-delay: 0.28s; }

@media (min-width: 768px) {
	.portora-banner { padding: 7rem 0 5rem; }
}
@media (min-width: 1024px) {
	.portora-banner { padding: 8.5rem 0 5.5rem; }
}
.portora-content {
	max-width: 860px;
	margin: 0 auto;
}
.portora-content h1,
.portora-content h2,
.portora-content h3 { margin-top: 1.75rem; }
.portora-content a { text-decoration: underline; }
.portora-content blockquote {
	border-left: 4px solid var(--portora-primary);
	background: var(--portora-bg-alt);
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	font-style: italic;
}
.portora-page__lead {
	max-width: 720px;
	margin: 0 auto 2rem;
	font-size: 1.05rem;
}
.portora-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 960px;
	margin: 0 auto 2rem;
}
@media (min-width: 768px) {
	.portora-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.portora-contact-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 180px;
}
.portora-contact-block {
	background: var(--portora-white);
	border: 1px solid #EDEFF3;
	border-radius: var(--portora-radius);
	padding: 1.5rem;
	text-align: center;
}
.portora-contact-block h4 {
	color: var(--portora-primary);
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
}
.portora-contact-block p { margin: 0; }

/* Single post */
.portora-post__image img {
	width: 100%;
	border-radius: var(--portora-radius);
	margin-bottom: 1.5rem;
}
.portora-post__meta {
	display: flex;
	gap: 1rem;
	font-size: 0.85rem;
	color: #9AA1AC;
	margin-bottom: 0.75rem;
}
.portora-post__tags { display: block; margin-top: 1.5rem; }
.portora-post__tags a {
	display: inline-block;
	background: var(--portora-bg-alt);
	color: var(--portora-text);
	font-size: 0.8rem;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	margin: 0 0.35rem 0.35rem 0;
}
.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--portora-border);
}
.post-navigation a { max-width: 48%; }
.nav-subtitle { display: block; font-size: 0.8rem; color: var(--portora-primary); font-weight: 600; text-transform: uppercase; }
.nav-title { font-weight: 500; color: var(--portora-heading); }

/* Archive layout */
.portora-archive__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
.portora-recent-posts li {
	border-bottom: 1px solid var(--portora-border);
	padding: 0.5rem 0;
}
.portora-recent-posts a { color: var(--portora-heading); font-weight: 500; }
.portora-recent-posts a:hover { color: var(--portora-primary); }
.widget ul:not(.portora-recent-posts):not(.portora-widget-services):not(.portora-widget-contact) li {
	border-bottom: 1px solid var(--portora-border);
	padding: 0.45rem 0;
}

/* Search form */
.portora-search-form {
	display: flex;
	border: 1px solid var(--portora-border);
	border-radius: var(--portora-radius);
	overflow: hidden;
	max-width: 480px;
	margin: 1.25rem auto;
}
.portora-search-form input {
	flex: 1;
	border: 0;
	font: inherit;
	padding: 0.8rem 1rem;
	min-width: 0;
}
.portora-search-form input:focus { outline: none; }
.portora-search-form button {
	border: 0;
	background: var(--portora-primary);
	color: var(--portora-white);
	padding: 0 1.1rem;
	cursor: pointer;
}

/* 404 */
.portora-404 {
	text-align: center;
	padding: 3rem 0;
}
.portora-404 h1 { font-size: 6rem; color: var(--portora-primary); margin-bottom: 0; line-height: 1; }

/* ----- Pagination ----- */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.pagination .page-numbers {
	min-width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--portora-border);
	border-radius: 6px;
	color: var(--portora-heading);
	font-weight: 500;
	padding: 0 0.75rem;
}
.pagination .page-numbers.current {
	background: var(--portora-primary);
	border-color: var(--portora-primary);
	color: var(--portora-white);
}
.page-links { margin-top: 1.5rem; }
.page-links a {
	background: var(--portora-primary);
	color: var(--portora-white);
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
	margin-right: 0.35rem;
}

/* ----- Comments ----- */
.portora-comments { max-width: 860px; margin: 2.5rem auto 0; }
.portora-comments__list { padding-left: 0; }
.portora-comments__list .children { padding-left: 1.5rem; }
.comment-list li { margin-bottom: 1.5rem; }
.comment-body { border: 1px solid var(--portora-border); border-radius: var(--portora-radius); padding: 1.25rem; }
.comment-meta { font-size: 0.85rem; color: #9AA1AC; margin-bottom: 0.6rem; }
.portora-comment-form textarea,
.portora-comment-form input[type="text"],
.portora-comment-form input[type="email"],
.portora-comment-form input[type="url"] {
	width: 100%;
	font: inherit;
	border: 1px solid var(--portora-border);
	border-radius: 6px;
	padding: 0.75rem;
	margin-bottom: 0.85rem;
}
.portora-comment-form input[type="submit"] {
	font: inherit;
	background: var(--portora-primary);
	color: var(--portora-white);
	border: 0;
	border-radius: var(--portora-radius);
	padding: 0.85rem 1.75rem;
	cursor: pointer;
	font-weight: 600;
}

/* ----- Sidebar widgets ----- */
.widget h2.wp-block-heading {
	font-size: 1.1rem !important;
	font-weight: 600;
	line-height: 1.4;
	color: var(--portora-heading, var(--portora-dark));
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}
.widget .widget-title,
.portora-archive__sidebar .widget-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.portora-archive__sidebar .widget { margin-bottom: 2rem; }
.portora-archive__sidebar input[type="text"],
.portora-archive__sidebar input[type="search"] {
	width: 100%;
}

/* ----- Footer ----- */
.portora-footer {
	background: var(--portora-dark);
	color: rgba(255, 255, 255, 0.8);
	padding-top: 3rem;
	font-size: 0.95rem;
}
.portora-footer .widget-title {
	color: var(--portora-white);
	font-size: 1.05rem;
	margin-bottom: 1.25rem;
}
.portora-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
}
.portora-footer__logo {
	display: inline-block;
	margin-bottom: 1.25rem;
}
.portora-footer__logo img {
	display: block;
	max-width: 180px;
	height: auto;
}
.portora-footer__logo-fallback strong {
	color: var(--portora-white);
	font-size: 1.3rem;
}
.portora-footer__logo-fallback:hover strong {
	color: var(--portora-primary);
}
.portora-footer__social { display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem; }
.portora-footer__social a {
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}
.portora-footer__social a:hover {
	background: var(--portora-primary);
	border-color: var(--portora-primary);
	color: var(--portora-white);
}
.portora-footer__links li { padding: 0.3rem 0; }
.portora-footer__links a { color: rgba(255, 255, 255, 0.8); }
.portora-footer__links a:hover { color: var(--portora-primary); }
.portora-footer__articles li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.portora-footer__articles a { color: rgba(255, 255, 255, 0.8); }
.portora-footer__articles a:hover { color: var(--portora-primary); }
.portora-footer__contact li {
	display: flex;
	gap: 0.7rem;
	padding: 0.35rem 0;
}
.portora-footer__icon { display: inline-flex; width: 1em; height: 1em; color: var(--portora-primary); margin-top: 0.35em; }
.portora-footer__icon svg { width: 100%; height: 100%; }
.portora-footer__contact a { color: rgba(255, 255, 255, 0.8); }
.portora-footer__contact a:hover { color: var(--portora-primary); }

.portora-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.portora-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	align-items: center;
	text-align: center;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	font-size: 0.85rem;
}
.portora-footer__copy { margin: 0; }
.portora-footer__legal { display: flex; gap: 1.25rem; }
.portora-footer__legal a { color: rgba(255, 255, 255, 0.7); }
.portora-footer__legal a:hover { color: var(--portora-primary); }

/* ----- Scroll reveal ----- */
.portora-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.portora-reveal--visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.portora-reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Floating WhatsApp button ----- */
.portora-fab {
	position: fixed;
	right: 1.1rem;
	bottom: 1.1rem;
	z-index: 90;
	width: 54px;
	height: 54px;
	background: #25D366;
	color: var(--portora-white);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
	transition: transform var(--portora-transition), box-shadow var(--portora-transition);
	-webkit-tap-highlight-color: transparent;
	animation: portora-fab-in 0.6s cubic-bezier(0.25, 1, 0.4, 1) 0.4s both;
}
@keyframes portora-fab-in {
	from { transform: translateY(24px) scale(0.8); opacity: 0; }
	to { transform: translateY(0) scale(1); opacity: 1; }
}
.portora-fab::before,
.portora-fab::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.45);
	z-index: -1;
	animation: portora-fab-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.portora-fab::after { animation-delay: 1.2s; }
@keyframes portora-fab-pulse {
	0% { transform: scale(0.9); opacity: 0.8; }
	80%, 100% { transform: scale(1.7); opacity: 0; }
}
.portora-fab:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6); }
.portora-fab:hover::before, .portora-fab:hover::after { animation-play-state: paused; }
.portora-fab svg { width: 30px; height: 30px; }
/* WhatsApp tooltip */
.portora-fab-label {
	position: absolute;
	right: calc(100% + 0.85rem);
	top: 50%;
	transform: translateY(-50%) translateX(6px);
	background: var(--portora-white);
	color: var(--portora-heading);
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(20, 23, 27, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.portora-fab-label::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-left-color: var(--portora-white);
}
.portora-fab:hover .portora-fab-label {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}
@media (max-width: 480px) {
	.portora-fab-label { display: none; }
}

/* ----- Back to top ----- */
.portora-back-to-top {
	position: fixed;
	right: 1.1rem;
	bottom: 4.6rem;
	z-index: 90;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: var(--portora-primary);
	color: var(--portora-white);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: background var(--portora-transition), transform var(--portora-transition);
}
.portora-back-to-top:hover { background: var(--portora-primary-dark); transform: translateY(-3px); }

/* ----- Notices ----- */
.portora-notice {
	max-width: 860px;
	margin: 1rem auto;
	padding: 0.9rem 1.25rem;
	border-radius: var(--portora-radius);
	font-size: 0.95rem;
}
.portora-notice--success { background: #E8F7EF; color: #1E7A45; border: 1px solid #C6EDD8; }
.portora-notice--error { background: #FDEEEA; color: #B3351E; border: 1px solid #F7D4C9; }

/* ----- Admin setup page ----- */
.portora-setup-card {
	background: var(--portora-white);
	border: 1px solid var(--portora-border);
	border-radius: var(--portora-radius);
	padding: 1.5rem;
	margin: 1rem 0;
	max-width: 720px;
}

/* ==========================================================================
   TABLET — min-width 576px
   ========================================================================== */
@media (min-width: 576px) {
	.portora-categories__grid { grid-template-columns: repeat(2, 1fr); }
	.portora-quote-form__row { grid-template-columns: 1fr 1fr; }
	.portora-stats__grid { grid-template-columns: repeat(4, 1fr); }
	.portora-cta__grid { grid-template-columns: 1fr 1fr; }
	.portora-newsletter__form { flex-direction: row; }
	.portora-newsletter__form input { flex: 1; }
}

/* ==========================================================================
   TABLET LARGE — min-width 768px
   ========================================================================== */
@media (min-width: 768px) {
	.portora-section { padding: 5rem 0; }
	.portora-services__grid { grid-template-columns: repeat(3, 1fr); }
	.portora-blog__grid { grid-template-columns: repeat(2, 1fr); }
	.portora-categories__grid { grid-template-columns: repeat(3, 1fr); }
	.portora-categories__grid .portora-category-card:last-child {
		grid-column: span 1;
	}
	.portora-about__grid,
	.portora-why__grid { grid-template-columns: 1fr 1fr; }
	.portora-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.portora-footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
	.portora-archive__grid { grid-template-columns: 2.4fr 1fr; }
	.portora-hero { padding: 9rem 0 5.5rem; }
	.portora-post-card__body { padding: 1.5rem; }
	.portora-cta__band { padding: 3.5rem 2rem; }
}

/* ==========================================================================
   DESKTOP — min-width 992px
   ========================================================================== */
@media (min-width: 992px) {
	/* Desktop nav */
	.portora-header__toggle { display: none; }
	.portora-nav {
		display: flex;
		flex-direction: row;
		position: static;
		background: transparent;
		box-shadow: none;
		padding: 0;
		align-items: center;
		justify-content: center;
		gap: 0.25rem;
	}
	.portora-nav > li > a {
		border-bottom: 0;
		padding: 0.5rem 0.85rem;
		border-radius: 6px;
		position: relative;
	}
	.portora-nav > li > a::after {
		content: "";
		position: absolute;
		left: 0.85rem;
		right: 0.85rem;
		bottom: 0.4rem;
		height: 2px;
		background: var(--portora-primary);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	}
	.portora-nav > li:hover > a::after,
	.portora-nav > li.current-menu-item > a::after,
	.portora-nav > li.current_page_item > a::after {
		transform: scaleX(1);
		transform-origin: left;
	}
	.portora-nav > li:hover > a {
		color: var(--portora-primary);
	}
	.portora-nav .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 230px;
		background: var(--portora-white);
		box-shadow: var(--portora-shadow-hover);
		border-radius: var(--portora-radius);
		padding: 0.6rem 0;
		display: none;
	}
	.portora-nav li:hover > .sub-menu { display: block; }
	.portora-nav .sub-menu a { padding: 0.55rem 1.25rem; }
	.portora-nav .sub-menu a:hover { color: var(--portora-primary); background: var(--portora-bg-alt); }
	.portora-nav .menu-item-has-children > a::after { margin-left: 0.35rem; }
	.portora-header__cta { display: inline-flex; flex-shrink: 0; white-space: nowrap; }
	.portora-header__inner { flex-wrap: nowrap; }
	.portora-header__nav { flex: 1 1 auto; min-width: 0; }
	.portora-hero__grid { grid-template-columns: 1.35fr 1fr; gap: 3rem; }
	.portora-categories__grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.portora-categories__grid .portora-category-card:last-child {
		grid-column: span 2;
	}
	.portora-categories__grid .portora-category-card:last-child .portora-category-card__image img {
		min-height: 260px;
	}
	.portora-footer__grid { grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr; }
}

/* ==========================================================================
   LARGE DESKTOP — min-width 1200px
   ========================================================================== */
@media (min-width: 1200px) {
	.portora-blog__grid { grid-template-columns: repeat(3, 1fr); }
	.portora-hero__title { font-size: 3.6rem; }
}

/* ==========================================================================
   WIDE / MAC DESKTOPS — min-width 1400px
   ========================================================================== */
@media (min-width: 1400px) {
	:root { --portora-container: 1320px; }
	.portora-hero { min-height: 92vh; display: flex; align-items: center; }
}

/* ==========================================================================
   SMALL PHONES — max-width 359px
   ========================================================================== */
@media (max-width: 359px) {
	.portora-hero__actions { flex-direction: column; align-items: stretch; }
	.portora-topbar__info { flex-direction: column; gap: 0.25rem; }
	h1 { font-size: 1.75rem; }
}

/* ----- Contact Form 7 -----
   Selectors deliberately generic (no wrapper class) so they beat the
   Contact Form 7 plugin stylesheet, which loads after the theme CSS. */
.portora-contact-form .wpcf7 form,
form.wpcf7-form {
	display: grid;
	gap: 1.25rem;
}
.wpcf7-form br { display: none !important; }
.portora-contact-form label,
.wpcf7-form label {
	display: block !important;
	float: none !important;
	width: 100% !important;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--portora-heading);
	line-height: 1.4;
	margin-bottom: 0.4rem;
}
.wpcf7-form input.wpcf7-text,
.wpcf7-form input.wpcf7-email,
.wpcf7-form input.wpcf7-tel,
.wpcf7-form textarea.wpcf7-textarea {
	width: 100% !important;
	min-width: 100% !important;
	float: none !important;
	padding: 0.85rem 1rem !important;
	border: 1px solid var(--portora-border) !important;
	border-radius: var(--portora-radius) !important;
	font-family: inherit !important;
	font-size: 1rem !important;
	color: var(--portora-heading) !important;
	background: var(--portora-white) !important;
	transition: border-color var(--portora-transition);
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	outline: none !important;
	border-color: var(--portora-primary) !important;
}
.wpcf7-form textarea {
	min-height: 140px;
	resize: vertical;
}
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
	display: inline-block !important;
	float: none !important;
	background: var(--portora-primary) !important;
	color: var(--portora-white) !important;
	font-family: "Poppins", sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	border: 0 !important;
	border-radius: var(--portora-radius) !important;
	padding: 0.85rem 1.75rem !important;
	cursor: pointer !important;
	transition: background var(--portora-transition), transform var(--portora-transition) !important;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
	background: var(--portora-primary-dark) !important;
	transform: translateY(-2px);
}
.wpcf7-form .wpcf7-spinner {
	margin: 0 !important;
	box-shadow: none !important;
}
.wpcf7-form .wpcf7-not-valid-tip {
	color: #d93025 !important;
	font-size: 0.8rem !important;
	margin-top: 0.25rem !important;
}
.wpcf7-form .wpcf7-response-output {
	margin: 1rem 0 0 !important;
	border-radius: var(--portora-radius) !important;
	padding: 0.75rem 1rem !important;
}
.wpcf7-form .wpcf7-mail-sent-ok {
	border-color: #1e7e34 !important;
	background: #e6f4ea !important;
	color: #0d5f23 !important;
}
.wpcf7-form .wpcf7-validation-errors {
	border-color: #d93025 !important;
	background: #fdecea !important;
	color: #a41f17 !important;
}

/* Print styles */
@media print {
	.portora-header, .portora-topbar, .portora-fab, .portora-back-to-top,
	.portora-cta, .portora-newsletter, .portora-footer, .portora-hero__form-wrap {
		display: none !important;
	}
	body { color: #000; }
}
