/**
 * Liquid Glass Footer 2026 - v1.6
 * A&A Coffee - Polaris Child Theme
 *
 * v1.8 CHANGELOG:
 * - Naprawa grid: nth-child zamiast :has(.klasa) — CF7 używa data-name nie klas
 * - Layout: name+email+accept w lewej, textarea w prawej (row-span), submit bottom-right
 * - smooth scroll: html { scroll-behavior: smooth }
 * - Responsive: single-col poniżej 700px poprawiony
 */

/* ==========================================
   UKRYJ STARY FOOTER
   ========================================== */

footer.site-footer {
	display: none !important;
}

footer.liquid-glass-footer {
	display: block !important;
}

/* ==========================================
   RESET & BASE
   ========================================== */

.liquid-glass-footer {
	background: #381004 !important;
	color: #FFFFFF !important;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: none;
}

.liquid-glass-footer *,
.liquid-glass-footer *::before,
.liquid-glass-footer *::after {
	box-sizing: border-box;
}

.liquid-glass-footer a {
	text-decoration: none;
	color: inherit;
}

.liquid-glass-footer address {
	font-style: normal;
}

body.menu-open .liquid-glass-footer {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ==========================================
   CONTAINER & GRID
   ========================================== */

.footer-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 64px 24px;
}

.footer-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 48px 32px !important;
	margin-bottom: 80px;
}

/* ==========================================
   SECTION LABELS
   ========================================== */

.footer-section-label {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.label-number {
	color: #EA580C;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	white-space: nowrap;
}

.label-separator {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.06);
}

/* ==========================================
   GLASS EFFECTS
   ========================================== */

.glass-card {
	background: rgba(99, 38, 19, 0.42);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 32px;
	position: relative;
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* ==========================================
   EXPERIENCE EMBLEM - PROMIEŃ 34px, ZERO SPACING
   ========================================== */

.experience-emblem {
	position: absolute;
	top: -24px;
	right: -16px;
	width: 80px;
	height: 80px;
	/* background: rgba(99, 38, 19, 0.42);
	backdrop-filter: blur(24px); 
	-webkit-backdrop-filter: blur(24px);*/
	border: 1px solid rgba(234, 88, 12, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 32px 0 rgba(234, 88, 12, 0.15); */
	/* background-color: rgba(234, 88, 12, 0.1); */
	z-index: 10;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.experience-emblem:hover {
	transform: scale(1.02);
	opacity: 0.9;
}

/* SVG/img dla emblemu */
.emblem-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	object-fit: cover;
	border-radius: 50%;
}

/* Tekst wzdłuż krzywej - SZEROKI ŁUK 330° */
.emblem-curved-text {
	/* ROZMIAR I WAGA */
	font-size: 6.5px;
	font-weight: 700;
	text-transform: uppercase;
	
	/* UJEMNY SPACING - ŚCIEŚNIONE LITERY */
	letter-spacing: -0.5px; /* ← Ujemny = litery bliżej siebie */
	
	/* KOLOR */
	fill: rgba(232, 213, 196, 0.8);
	dominant-baseline: auto;
	
	/* ANIMACJA */
	transition: fill 0.3s ease;
}

/* Hover effect */
.experience-emblem:hover .emblem-curved-text {
	fill: rgba(232, 213, 196, 1);
}

/* Zawartość emblema (liczby i divider) */
.emblem-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
	z-index: 1;
}

.emblem-number {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	margin-bottom: -4px;
}

.emblem-value {
	font-size: 20px;
	font-weight: 900;
	color: #EA580C;
	letter-spacing: -0.01em;
}

.emblem-unit {
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #FFFFFF;
}

.emblem-divider {
	width: 32px;
	height: 1px;
	background: rgba(234, 88, 12, 0.2);
	margin: 4px 0;
}

/* Ukryj emblem w kolumnie Brand */
.footer-brand-col .experience-emblem {
	display: none !important;
}

/* ==========================================
   KOLUMNA 1: KONTAKT
   ========================================== */

.contact-brand {
	margin-bottom: 24px;
}

.brand-name {
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 4px 0;
	letter-spacing: -0.01em;
	color: #FFFFFF;
}

.brand-address {
	color: #A89085;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
}

.contact-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.contact-phone,
.contact-email {
	display: flex;
	align-items: center;
	gap: 12px;
	transition: color 0.3s ease;
}

.contact-phone {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
}

.contact-phone:hover {
	color: #EA580C;
}

.contact-email {
	font-size: 14px;
	color: #E8D5C4;
}

.contact-email:hover {
	color: #FFFFFF;
}

.contact-phone svg,
.contact-email svg {
	flex-shrink: 0;
	stroke: #EA580C;
}

.contact-email span {
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
	text-underline-offset: 4px;
}

.social-links {
	display: flex;
	gap: 16px;
	padding-top: 8px;
}

.social-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
	color: #FFFFFF;
}

.social-btn:hover {
	transform: scale(1.02);
	opacity: 0.9;
	background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   KOLUMNA 2: LINKI PRAWNE
   ========================================== */

.legal-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.legal-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	background: rgba(99, 38, 19, 0.42);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 32px 0 rgba(0, 0, 0, 0.2);
	color: #FFFFFF;
}

.legal-link:hover {
	background: rgba(255, 255, 255, 0.05);
}

.legal-link svg {
	stroke: #EA580C;
	transition: transform 0.3s ease;
}

.legal-link:hover svg {
	transform: translate(4px, -4px);
}

.legal-link-featured {
	background: rgba(234, 88, 12, 0.15);
	border-color: rgba(234, 88, 12, 0.3);
	font-weight: 700;
}

.legal-link-featured:hover {
	background: rgba(234, 88, 12, 0.25);
	border-color: rgba(234, 88, 12, 0.5);
}

/* ==========================================
   KOLUMNA 3: NEWSLETTER - SKRÓCONA
   ========================================== */

.newsletter-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.newsletter-description {
	color: #E8D5C4;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.newsletter-form-wrapper {
	margin: 0;
}

.newsletter-form-wrapper .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.newsletter-form-wrapper .wpcf7-form p {
	margin: 0 !important;
}

.newsletter-form-wrapper .wpcf7-form label {
	display: none !important;
}

.newsletter-form-wrapper .wpcf7-not-valid-tip {
	display: none !important;
}

.newsletter-form-wrapper .wpcf7-response-output {
	margin: 8px 0 0 0 !important;
	padding: 8px 12px !important;
	font-size: 12px !important;
	border-radius: 8px !important;
}

.newsletter-form-wrapper input[type="email"],
.newsletter-form-wrapper input[type="text"] {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 14px;
	color: #FFFFFF;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
	margin: 0 !important;
}

.newsletter-form-wrapper input[type="email"]:focus,
.newsletter-form-wrapper input[type="text"]:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: #EA580C;
	outline: none;
}

.newsletter-form-wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.newsletter-form-wrapper input[type="submit"],
.newsletter-form-wrapper button[type="submit"] {
	width: 100%;
	padding: 14px 20px;
	background: rgba(99, 38, 19, 0.42);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(234, 88, 12, 0.5);
	border-radius: 14px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 8px 32px 0 rgba(234, 88, 12, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 !important;
}

.newsletter-form-wrapper input[type="submit"]:hover,
.newsletter-form-wrapper button[type="submit"]:hover {
	transform: scale(1.02);
	opacity: 0.9;
	background: rgba(234, 88, 12, 0.35);
	border-color: #EA580C;
}

.newsletter-disclaimer {
	font-size: 10px;
	color: #A89085;
	font-weight: 500;
	margin: 0;
	line-height: 1.3;
}

/* ==========================================
   KOLUMNA 4: BRAND STORY
   ========================================== */

.footer-brand-col {
	display: none;
}

.glass-card-brand {
	border-style: dashed;
	border-color: rgba(255, 255, 255, 0.1);
}

.brand-story {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.brand-icon {
	stroke: #EA580C;
	width: 48px;
	height: 48px;
}

.brand-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	color: #FFFFFF;
}

.brand-description {
	font-size: 12px;
	color: #A89085;
	line-height: 1.6;
	margin: 0;
}

.brand-badges {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 8px;
}

.brand-badge {
	display: flex;
	align-items: center;
	gap: 8px;
}

.brand-badge svg {
	stroke: #EA580C;
	flex-shrink: 0;
}

.brand-badge span {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #E8D5C4;
}

/* ==========================================
   FOOTER BOTTOM
   ========================================== */

.footer-bottom {
	margin-top: 128px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.footer-copyright {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

.footer-copyright p {
	font-size: 11px;
	color: #A89085;
	letter-spacing: 0.15em;
	font-weight: 500;
	margin: 0;
}

.payment-icons {
	display: flex;
	gap: 20px;
	align-items: center;
}

.payment-icons svg {
	color: rgba(255, 255, 255, 0.5);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.payment-icons svg:hover {
	color: rgba(255, 255, 255, 0.9);
	opacity: 1;
	transform: translateY(-2px);
}

.footer-trust-badges {
	display: flex;
	gap: 32px;
	align-items: center;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #E8D5C4;
}

.trust-badge svg {
	stroke: #EA580C;
	flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE: TABLET
   ========================================== */

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 48px 32px !important;
	}
	
	.footer-contact-col {
		grid-column: 1 / -1;
	}
	
	.footer-brand-col {
		display: none !important;
	}
}

/* ==========================================
   RESPONSIVE: MOBILE
   ========================================== */

@media (max-width: 768px) {
	.footer-container {
		padding: 48px 16px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
		margin-bottom: 64px;
	}
	
	.footer-contact-col {
		grid-column: 1;
	}
	
	.glass-card {
		padding: 24px;
	}
	
	.experience-emblem {
		width: 72px;
		height: 72px;
		top: -20px;
		right: -12px;
	}
	
	.emblem-value {
		font-size: 18px;
	}
	
	/* MOBILE: Dostosowania dla tekstu */
	.emblem-curved-text {
		font-size: 6px;
		letter-spacing: -0.5px;
	}
	
	.brand-name {
		font-size: 20px;
	}
	
	.contact-phone {
		font-size: 16px;
	}
	
	.footer-bottom {
		margin-top: 48px;
		padding-top: 32px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	
	.footer-copyright {
		width: 100%;
	}
	
	.footer-trust-badges {
		width: 100%;
		justify-content: space-between;
	}
	
	.payment-icons {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.label-number {
		font-size: 10px;
	}
	
	.social-links {
		gap: 12px;
	}
	
	.social-btn {
		width: 36px;
		height: 36px;
	}
	
	.footer-trust-badges {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	
	/* SMALL MOBILE */
	.emblem-curved-text {
		font-size: 5.5px;
		letter-spacing: -0.5px;
	}
}

/* ==========================================
   DESKTOP LARGE: SHOW BRAND COLUMN
   ========================================== */

@media (min-width: 1025px) {
	.footer-brand-col {
		display: block !important;
	}
}

/* ==========================================
   FORCE OVERRIDES
   ========================================== */

body footer.liquid-glass-footer {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

body footer.site-footer {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

/* ==========================================
   SMOOTH SCROLL GLOBAL
   ========================================== */

html {
	scroll-behavior: smooth;
}

/* ==========================================
   SEKCJA: ZADAJ PYTANIE (v3.0)
   ========================================== */

.footer-ask-section {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 56px 0 48px;
}

.footer-ask-inner {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 64px;
	align-items: start;
}

.footer-ask-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent-orange-bright, #ff742e);
	margin-bottom: 16px;
}

.footer-ask-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
}

.footer-ask-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 28px;
	line-height: 1.6;
}

.footer-ask-guarantees {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-ask-guarantees li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-ask-guarantees li svg {
	flex-shrink: 0;
	color: var(--accent-orange-bright, #ff742e);
}

/* ==========================================
   CF7: GRID — lewa: name+email+accept, prawa: textarea+submit
   CF7 renderuje SPAN jako direct children (nie P!)
   fieldset(1), name(2), email(3), message(4), accept(5), input[submit](6), span[spinner](7), div(8)
   ========================================== */

.footer-ask-form .wpcf7 {
	margin: 0;
}

.footer-ask-form .wpcf7-form {
	display: grid !important;
	grid-template-columns: 1fr 1.4fr !important;
	grid-template-rows: auto auto auto !important;
	gap: 12px !important;
	margin: 0 !important;
	align-items: start !important;
}

.footer-ask-form .wpcf7-form > fieldset {
	display: none !important;
}

.footer-ask-form .wpcf7-form > span:nth-child(7) {
	display: none !important;
}

.footer-ask-form .wpcf7-form > div {
	margin: 0 !important;
	grid-column: 1 / -1 !important;
}

.footer-ask-form .wpcf7-form > span:nth-child(2) {
	grid-column: 1 !important;
	grid-row: 1 !important;
	display: block !important;
}

.footer-ask-form .wpcf7-form > span:nth-child(3) {
	grid-column: 1 !important;
	grid-row: 2 !important;
	display: block !important;
}

.footer-ask-form .wpcf7-form > span:nth-child(4) {
	grid-column: 2 !important;
	grid-row: 1 / 3 !important;
	display: flex !important;
	flex-direction: column !important;
}

.footer-ask-form .wpcf7-form > span:nth-child(4) .wpcf7-form-control-wrap {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
}

.footer-ask-form .wpcf7-form > span:nth-child(5) {
	grid-column: 1 !important;
	grid-row: 3 !important;
	display: flex !important;
	align-items: center !important;
}

.footer-ask-form .wpcf7-form > input[type="submit"]:nth-child(6) {
	grid-column: 2 !important;
	grid-row: 3 !important;
	width: 100% !important;
}

.footer-ask-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* ==========================================
   CF7: POLA — override Polaris z !important
   ========================================== */

.footer-ask-form input[type="text"],
.footer-ask-form input[type="email"],
.footer-ask-form input[type="tel"] {
	width: 100% !important;
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 10px !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-family: inherit !important;
	padding: 13px 16px !important;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	box-sizing: border-box !important;
	transition: border-color 0.2s ease, background 0.2s ease !important;
	margin: 0 !important;
	height: auto !important;
}

.footer-ask-form textarea {
	width: 100% !important;
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 10px !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-family: inherit !important;
	padding: 13px 16px !important;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	box-sizing: border-box !important;
	transition: border-color 0.2s ease, background 0.2s ease !important;
	margin: 0 !important;
	resize: none !important;
	min-height: 120px !important;
	flex: 1 !important;
}

.footer-ask-form input[type="text"]:focus,
.footer-ask-form input[type="email"]:focus,
.footer-ask-form textarea:focus {
	border-color: #ff742e !important;
	background: rgba(255, 255, 255, 0.09) !important;
	box-shadow: 0 0 0 3px rgba(255, 116, 46, 0.12) !important;
	outline: none !important;
}

.footer-ask-form input[type="text"]::-webkit-input-placeholder,
.footer-ask-form input[type="email"]::-webkit-input-placeholder,
.footer-ask-form textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.38) !important;
	opacity: 1 !important;
}

.footer-ask-form input[type="text"]::placeholder,
.footer-ask-form input[type="email"]::placeholder,
.footer-ask-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.38) !important;
	opacity: 1 !important;
}

/* ==========================================
   CF7: SUBMIT + ACCEPTANCE
   ========================================== */

.footer-ask-form .wpcf7-list-item {
	margin: 0;
}

.footer-ask-form input[type="submit"] {
	background: #ff742e !important;
	border: none !important;
	border-radius: 10px !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
	padding: 13px 28px !important;
	cursor: pointer !important;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
	flex-shrink: 0;
	width: auto !important;
	height: auto !important;
	box-shadow: none !important;
}

.footer-ask-form input[type="submit"]:hover {
	background: #e8612a !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(255, 116, 46, 0.35) !important;
}

.footer-ask-form input[type="submit"]:active {
	transform: translateY(0);
}

.footer-ask-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	line-height: 1.5;
}

.footer-ask-form .wpcf7-list-item input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px;
	accent-color: #ff742e;
	cursor: pointer;
	padding: 0 !important;
}

.footer-ask-form .wpcf7-list-item a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-ask-form .wpcf7-not-valid-tip {
	font-size: 11px;
	color: #ff6b6b;
	margin-top: 4px;
	display: block;
}

.footer-ask-form .wpcf7-not-valid {
	border-color: rgba(255, 107, 107, 0.6) !important;
}

.footer-ask-form .wpcf7-response-output {
	margin: 12px 0 0 !important;
	padding: 12px 18px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	border: none !important;
	grid-column: 1 / -1;
}

.footer-ask-form .wpcf7-mail-sent-ok {
	background: rgba(74, 222, 128, 0.12) !important;
	border: 1px solid rgba(74, 222, 128, 0.3) !important;
	color: #4ade80 !important;
}

.footer-ask-form .wpcf7-mail-sent-ng,
.footer-ask-form .wpcf7-spam-blocked {
	background: rgba(255, 107, 107, 0.12) !important;
	border: 1px solid rgba(255, 107, 107, 0.3) !important;
	color: #ff6b6b !important;
}

.footer-ask-form .wpcf7-spinner {
	display: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
	.footer-ask-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.footer-ask-title {
		font-size: 26px;
	}
}

@media (max-width: 700px) {
	.footer-ask-form .wpcf7-form {
		grid-template-columns: 1fr !important;
		grid-template-rows: unset !important;
	}

	.footer-ask-form .wpcf7-form > span:nth-child(2),
	.footer-ask-form .wpcf7-form > span:nth-child(3),
	.footer-ask-form .wpcf7-form > span:nth-child(4),
	.footer-ask-form .wpcf7-form > span:nth-child(5),
	.footer-ask-form .wpcf7-form > input[type="submit"]:nth-child(6) {
		grid-column: 1 !important;
		grid-row: auto !important;
	}

	.footer-ask-form textarea {
		min-height: 80px !important;
	}
}