/**
 * Apie mus, DUK, Kontaktai page styles
 *
 * @package Svaros_Partneriai
 */

/* ================================================================
   SHARED HERO STYLES
   ================================================================ */
.sp-about__hero,
.sp-faq__hero,
.sp-contact__hero {
	padding: clamp(80px, 8vw, 140px) 0 clamp(60px, 6vw, 100px);
	text-align: center;
	background: linear-gradient(135deg, #1d1e20 0%, #2a2b2e 100%);
	color: var(--sp-color-white);
	position: relative;
	overflow: hidden;
}

.sp-about__hero::before,
.sp-faq__hero::before,
.sp-contact__hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -30%;
	width: 80%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.sp-about__hero-label,
.sp-faq__hero-label,
.sp-contact__hero-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #00aeef;
	margin-bottom: 16px;
}

.sp-about__hero-title,
.sp-faq__hero-title,
.sp-contact__hero-title {
	font-size: var(--sp-text-4xl);
	font-weight: 800;
	line-height: var(--sp-leading-tight);
	color: #ffffff;
	margin-bottom: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.sp-about__hero-text,
.sp-faq__hero-text,
.sp-contact__hero-text {
	font-size: var(--sp-text-lg);
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto;
	line-height: var(--sp-leading-relaxed);
}

/* ================================================================
   ABOUT PAGE — STORY
   ================================================================ */
.sp-about__story {
	padding: var(--sp-section-padding) 0;
}

.sp-about__section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #00aeef;
	margin-bottom: 12px;
}

.sp-about__section-title,
.sp-about__value-title,
.sp-faq__category-title,
.sp-contact__form-title {
	color: #1d1e20;
}

.sp-about__section-title {
	font-size: var(--sp-text-3xl);
	font-weight: 800;
	margin-bottom: 24px;
	line-height: var(--sp-leading-tight);
}

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

@media (min-width: 768px) {
	.sp-about__story-grid {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}
}

.sp-about__story-content p {
	font-size: var(--sp-text-base);
	line-height: var(--sp-leading-relaxed);
	color: var(--sp-color-gray-600);
	margin-bottom: 16px;
}

.sp-about__story-content p:last-child {
	margin-bottom: 0;
}

.sp-about__story-card {
	position: relative;
	border-radius: var(--sp-radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, #00aeef 0%, #33bef2 55%, #008bbf 100%);
	color: #ffffff;
	aspect-ratio: 4 / 3;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 30px 60px -20px rgba(0, 139, 191, 0.45);
}

.sp-about__story-card::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 340px;
	height: 340px;
	background: #ffffff;
	opacity: 0.12;
	border-radius: 50%;
	pointer-events: none;
}

.sp-about__story-card::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -80px;
	width: 260px;
	height: 260px;
	background: #ffffff;
	opacity: 0.08;
	border-radius: 50%;
	pointer-events: none;
}

.sp-about__story-card > * {
	position: relative;
	z-index: 1;
}

.sp-about__story-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
}

.sp-about__story-card-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sp-about__story-card-num {
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.sp-about__story-card-label {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.9;
	letter-spacing: 0.01em;
}

.sp-about__story-card-quote {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
	font-style: italic;
	opacity: 0.95;
	max-width: 90%;
}

.sp-about__story-card-signature {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.75;
}

@media (max-width: 767px) {
	.sp-about__story-card {
		padding: 32px 24px;
		aspect-ratio: auto;
	}
	.sp-about__story-card-quote {
		font-size: 15px;
	}
}

/* ================================================================
   ABOUT PAGE — VALUES
   ================================================================ */
.sp-about__values {
	padding: var(--sp-section-padding) 0;
	background: var(--sp-color-gray-50);
}

.sp-about__values-header {
	text-align: center;
	margin-bottom: 48px;
}

.sp-about__values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.sp-about__values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.sp-about__values-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sp-about__value-card {
	background: #ffffff;
	border-radius: var(--sp-radius-lg);
	padding: 32px 24px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-about__value-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sp-shadow-lg);
}

.sp-about__value-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: rgba(0, 174, 239, 0.1);
	border-radius: var(--sp-radius-full);
	color: #00aeef;
	margin-bottom: 20px;
}

.sp-about__value-title {
	font-size: var(--sp-text-lg);
	font-weight: 700;
	margin-bottom: 8px;
}

.sp-about__value-text {
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-500);
	line-height: var(--sp-leading-relaxed);
}

/* ================================================================
   ABOUT PAGE — STATS
   ================================================================ */
.sp-about__stats {
	padding: var(--sp-section-padding) 0;
	background: #1d1e20;
	color: var(--sp-color-white);
}

.sp-about__stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	text-align: center;
}

@media (min-width: 768px) {
	.sp-about__stats-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sp-about__stat-number {
	display: block;
	font-size: var(--sp-text-4xl);
	font-weight: 800;
	color: #00aeef;
	line-height: 1;
	margin-bottom: 8px;
}

.sp-about__stat-label {
	font-size: var(--sp-text-sm);
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

/* ================================================================
   ABOUT PAGE — CTA
   ================================================================ */
.sp-about__cta {
	padding: var(--sp-section-padding) 0;
}

.sp-about__cta-card {
	text-align: center;
	background: linear-gradient(135deg, #00aeef 0%, #0096ce 100%);
	border-radius: var(--sp-radius-lg);
	padding: clamp(48px, 5vw, 80px) clamp(24px, 4vw, 64px);
	color: var(--sp-color-white);
}

.sp-about__cta-title {
	font-size: var(--sp-text-3xl);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
}

.sp-about__cta-text {
	font-size: var(--sp-text-lg);
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.sp-about__cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.sp-about__cta-buttons .btn--primary {
	background: #1d1e20;
	border-color: #1d1e20;
	color: #ffffff;
}

.sp-about__cta-buttons .btn--primary:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #1d1e20;
}

.sp-about__cta-buttons .btn--outline {
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

.sp-about__cta-buttons .btn--outline:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #00aeef;
}

/* ================================================================
   FAQ PAGE — ACCORDION
   ================================================================ */
.sp-faq__content {
	padding: var(--sp-section-padding) 0;
}

.sp-faq__category {
	margin-bottom: 48px;
}

.sp-faq__category:last-child {
	margin-bottom: 0;
}

.sp-faq__category-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--sp-color-gray-100);
}

.sp-faq__category-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(0, 174, 239, 0.1);
	border-radius: var(--sp-radius-full);
	color: #00aeef;
	flex-shrink: 0;
}

.sp-faq__category-title {
	font-size: var(--sp-text-xl);
	font-weight: 700;
	color: #1d1e20;
}

.sp-faq__item {
	border-bottom: 1px solid var(--sp-color-gray-100);
}

.sp-faq__item:last-child {
	border-bottom: none;
}

.sp-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	gap: 16px;
	font-size: var(--sp-text-base);
	font-weight: 600;
	color: #1d1e20;
	line-height: var(--sp-leading-snug);
	transition: color 0.2s ease;
}

.sp-faq__question:hover {
	color: #00aeef;
}

.sp-faq__chevron {
	flex-shrink: 0;
	color: var(--sp-color-gray-400);
	transition: transform 0.3s ease, color 0.3s ease;
}

.sp-faq__question[aria-expanded="true"] .sp-faq__chevron {
	transform: rotate(180deg);
	color: #00aeef;
}

.sp-faq__answer {
	padding: 0 0 20px;
	overflow: hidden;
}

.sp-faq__answer[hidden] {
	display: none;
}

.sp-faq__answer p {
	font-size: var(--sp-text-base);
	line-height: var(--sp-leading-relaxed);
	color: var(--sp-color-gray-600);
}

/* FAQ CTA */
.sp-faq__cta {
	padding: 0 0 var(--sp-section-padding);
}

.sp-faq__cta-card {
	text-align: center;
	background: var(--sp-color-gray-50);
	border-radius: var(--sp-radius-lg);
	padding: clamp(48px, 5vw, 80px) clamp(24px, 4vw, 64px);
}

.sp-faq__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: rgba(0, 174, 239, 0.1);
	border-radius: var(--sp-radius-full);
	color: #00aeef;
	margin-bottom: 24px;
}

.sp-faq__cta-title {
	font-size: var(--sp-text-3xl);
	font-weight: 800;
	color: #1d1e20 !important;
	margin-bottom: 12px;
}

.sp-faq__cta-text {
	font-size: var(--sp-text-lg);
	color: var(--sp-color-gray-500);
	margin-bottom: 32px;
}

.sp-faq__cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.sp-contact__main {
	padding: var(--sp-section-padding) 0;
}

.sp-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

@media (min-width: 1024px) {
	.sp-contact__grid {
		grid-template-columns: 1fr 1.2fr;
		gap: 64px;
	}
}

/* Contact Info Cards */
.sp-contact__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sp-contact__card {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: var(--sp-color-gray-50);
	border-radius: var(--sp-radius-lg);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-contact__card:hover {
	transform: translateY(-2px);
	box-shadow: var(--sp-shadow-md);
}

.sp-contact__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(0, 174, 239, 0.1);
	border-radius: var(--sp-radius-full);
	color: #00aeef;
	flex-shrink: 0;
}

.sp-contact__card-body {
	flex: 1;
	min-width: 0;
}

.sp-contact__card-title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--sp-color-gray-400);
	margin-bottom: 4px;
}

.sp-contact__card-value {
	font-size: var(--sp-text-lg);
	font-weight: 700;
	color: #1d1e20;
	text-decoration: none;
	transition: color 0.2s ease;
}

a.sp-contact__card-value:hover {
	color: #00aeef;
}

.sp-contact__card-hint {
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-400);
	margin-top: 2px;
}

/* Hours */
.sp-contact__hours {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 4px;
	width: 100%;
}

.sp-contact__hours-row {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-600);
	width: 100%;
}

.sp-contact__hours-row span:last-child {
	font-weight: 600;
	color: #1d1e20;
	white-space: nowrap;
}

/* Contact Form */
.sp-contact__form-card {
	background: #ffffff;
	border: 1px solid var(--sp-color-gray-100);
	border-radius: var(--sp-radius-lg);
	padding: clamp(32px, 4vw, 48px);
}

.sp-contact__form-title {
	font-size: var(--sp-text-2xl);
	font-weight: 800;
	color: #1d1e20;
	margin-bottom: 8px;
}

.sp-contact__form-text {
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-500);
	margin-bottom: 32px;
}

.sp-contact__form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.sp-contact__form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.sp-contact__form-group {
	margin-bottom: 20px;
}

.sp-contact__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #1d1e20;
	margin-bottom: 8px;
}

.sp-contact__label span {
	color: #00aeef;
}

.sp-contact__input {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--sp-color-gray-200);
	border-radius: var(--sp-radius-md);
	font-size: var(--sp-text-base);
	font-family: var(--sp-font-family);
	color: #1d1e20;
	background: #ffffff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sp-contact__input:focus {
	outline: none;
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.sp-contact__input::placeholder {
	color: var(--sp-color-gray-400);
}

.sp-contact__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 48px;
	cursor: pointer;
}

.sp-contact__textarea {
	resize: vertical;
	min-height: 120px;
}

/* Form Notice */
.sp-contact__form-notice {
	padding: 14px 18px;
	border-radius: var(--sp-radius-md);
	font-size: var(--sp-text-sm);
	font-weight: 600;
	margin-bottom: 20px;
}

.sp-contact__form-notice--success {
	background: rgba(46, 125, 50, 0.1);
	color: var(--sp-color-success);
	border: 1px solid rgba(46, 125, 50, 0.2);
}

.sp-contact__form-notice--error {
	background: rgba(198, 40, 40, 0.1);
	color: var(--sp-color-error);
	border: 1px solid rgba(198, 40, 40, 0.2);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 767px) {
	.sp-about__hero-title,
	.sp-faq__hero-title,
	.sp-contact__hero-title {
		font-size: var(--sp-text-3xl);
	}

	.sp-about__stats-grid {
		gap: 24px;
	}

	.sp-about__stat-number {
		font-size: var(--sp-text-3xl);
	}

	.sp-contact__card {
		padding: 20px;
	}
}

@media (max-width: 400px) {
	.sp-contact__hours-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.sp-contact__hours-row span:last-child {
		font-size: 13px;
	}
}

/* ==========================================================================
   Pristine white stats bar — same component used on the homepage
   (defined in pages/home.css). Duplicated here so the About page can use
   the markup without enqueuing the entire homepage stylesheet.
   ========================================================================== */

.stats-bar-pristine {
	background: #ffffff;
	padding: 40px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid-pristine {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.stats-bar-pristine .stat-item {
	text-align: center;
}

.stats-bar-pristine .stat-num {
	font-size: 48px;
	font-weight: 900;
	color: #00aeef;
	line-height: 1;
	margin-bottom: 8px;
}

.stats-bar-pristine .stat-label {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #1d1e20;
}

.stats-bar-pristine .stat-divider {
	width: 1px;
	height: 60px;
	background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.stats-bar-pristine .stats-grid-pristine {
		flex-direction: column;
		gap: 30px;
	}
	.stats-bar-pristine .stat-divider {
		width: 60px;
		height: 1px;
	}
}
