:root {
--bg-dark: #292929;
--color-accent: #A5BF13;
--color-light: #F0F0F0;
--color-secondary: #62929E;
--text-main: #F0F0F0;
--text-muted: #cccccc;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.6;
background-color: var(--bg-dark);
color: var(--text-main);
}
a {
color: var(--color-accent);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--color-secondary);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
h1, h2, h3 {
color: var(--text-main);
font-weight: 600;
margin-bottom: 1rem;
}
h2 {
font-size: 2rem;
text-align: center;
position: relative;
}
h2::after {
content: '';
display: block;
width: 60px;
height: 3px;
background-color: var(--color-accent);
margin: 0.5rem auto 0;
}:root {
--bg-dark: #292929;
--accent: #A5BF13;
--text-light: #F0F0F0;
--text-main: #D0D0D0;
--text-muted: #999;
--hover-bg: #62929E;
--error: #e53935;
--color-accent: #A5BF13;
--color-secondary: #62929E;
} .site-header {
background-color: var(--bg-dark);
padding: 0.5rem 0;
border-bottom: 1px solid #444;
position: sticky;
top: 0;
z-index: 1000;
}
.site-header .container {
max-width: 1440px;
padding: 0 2rem;
margin: 0 auto;
}
.site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.logo {
flex: 0 0 auto;
}
.logo img {
max-width: 160px;
height: auto;
display: block;
} .main-nav {
display: none;
flex: 1 1 auto;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.main-nav.active {
display: flex;
}
.nav-list {
display: flex;
list-style: none;
margin: 0;
padding: 0;
flex-wrap: wrap;
}
.nav-list li a {
font-size: 1rem;
font-weight: 500;
padding: 0.5rem 1rem;
color: var(--text-light);
background: none;
border: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
transition: color 0.3s ease;
text-decoration: none;
line-height: 1.5;
}
.nav-list li a:hover {
color: var(--accent);
}
.nav-list li.current > a {
color: var(--accent) !important;
font-weight: 600 !important;
} .header-actions {
flex: 0 0 auto;
display: flex;
align-items: center;
gap: 1rem;
white-space: nowrap; }
.header-actions .header-phones {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.4rem;
align-items: flex-end;
}
.header-actions .header-phones li a {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
color: var(--text-light);
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
white-space: nowrap; }
.header-actions .header-phones li a:hover {
color: var(--accent);
}
.header-actions .header-phones i {
color: var(--accent);
font-size: 1rem;
} .burger {
display: none;
font-size: 1.5rem;
color: var(--text-light);
background: none;
border: none;
cursor: pointer;
transition: transform 0.3s ease;
}
.burger.open i {
transform: rotate(90deg);
} @media (min-width: 1025px) {
.main-nav {
display: flex;
align-items: center;
justify-content: flex-end; gap: 2rem;
}
.header-actions {
display: flex;
gap: 1rem;
align-items: center;
}
} @media (max-width: 1024px) {
.site-header__inner {
display: flex;
flex-direction: column; align-items: center; gap: 0.75rem;
padding: 1rem;
}
.site-logo {
order: 1; margin-bottom: 0.5rem;
}
.header-actions {
order: 2; display: block;
text-align: left;
width: 100%;
}
.header-actions a {
display: block;
font-size: 1rem;
color: var(--accent);
text-decoration: none;
margin-bottom: 0.5rem;
}
.burger {
order: 3; display: block;
font-size: 1.8rem;
color: var(--text-light);
margin-left: auto; cursor: pointer;
}
.main-nav {
order: 4; flex-direction: column;
background-color: var(--bg-dark);
padding: 1rem;
border-top: 1px solid #444;
width: 100%;
}
.nav-list {
flex-direction: column;
gap: 1rem;
width: 100%;
text-align: left;
}
} .popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(2px);
display: none;
align-items: center;
justify-content: center;
z-index: 1000;
transition: opacity 0.3s ease;
}
.popup[aria-hidden="false"] {
display: flex;
}
.popup__content {
background: #fff;
padding: 1.5rem;
max-width: 480px;
width: 90%; border-radius: 12px;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.popup__close {
position: absolute;
top: 12px;
right: 12px;
background: none;
border: none;
font-size: 1.5rem;
color: #333;
cursor: pointer;
}
.popup__content h2 {
font-size: 1.4rem;
margin-bottom: 1rem;
text-align: center;
color: #333;
}
.popup form input,
.popup form textarea {
width: 100%;
padding: 12px 14px;
margin-bottom: 14px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1rem;
transition: border-color 0.2s ease;
}
.popup form input:focus,
.popup form textarea:focus {
border-color: var(--accent);
outline: none;
}
.popup form .btn {
display: block;
width: 100%; padding: 12px;
font-size: 1rem;
border-radius: 6px;
background-color: var(--accent);
color: var(--bg-dark);
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}
.popup form .btn:hover {
background-color: var(--hover-bg);
color: #fff;
}
.input-error {
border-color: var(--error) !important;
}
.global-form__error {
color: var(--error);
font-size: 0.875rem;
margin-top: 4px;
min-height: 16px;
}
@media (max-width: 530px) {
.header-actions .header-phones {
display: flex;
flex-direction: column;
gap: 0.4rem;
flex-wrap: wrap;
align-content: center;
justify-content: space-evenly;
align-items: center;
}
}
@media (max-width: 1025px) {
.header-actions .header-phones {
display: flex;
flex-direction: row;
gap: 0.4rem;
flex-wrap: wrap;
align-content: center;
justify-content: space-evenly;
align-items: center;
}
} .legal-page {
background: #f9f9f9; padding: 4rem 1.5rem;
font-family: "Segoe UI", Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.legal-page .container {
max-width: 900px;
margin: 0 auto;
background: #fff; padding: 3rem;
border-radius: 12px;
box-shadow: 0 0 25px rgba(0,0,0,0.08);
} .legal-page h1 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
color: #222;
text-align: center;
}
.legal-page h2 {
font-size: 1.5rem;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: #48D1CC; border-left: 4px solid #48D1CC;
padding-left: 0.6rem;
} .legal-page p {
margin-bottom: 1rem;
}
.legal-page ul {
margin: 0 0 1.5rem 1.2rem;
padding: 0;
}
.legal-page ul li {
margin-bottom: 0.5rem;
list-style: disc;
color: #444;
} .legal-page a {
color: #48D1CC;
text-decoration: none;
font-weight: 600;
}
.legal-page a:hover {
text-decoration: underline;
} .legal-page strong {
color: #000;
font-weight: 700;
} @media (max-width: 768px) {
.legal-page {
padding: 2rem 1rem;
}
.legal-page .container {
padding: 2rem;
}
.legal-page h1 {
font-size: 1.8rem;
}
.legal-page h2 {
font-size: 1.3rem;
}
}
@media (max-width: 768px) {
.site-header__inner {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0.8rem 1rem;
}
.logo {
flex: 0 0 auto; }
.header-actions {
flex: 0 1 auto; max-width: 60%; overflow: hidden; }
.header-actions .header-phones {
flex-direction: row;
gap: 0.6rem;
flex-wrap: wrap;
}
.header-actions .header-phones li:last-child {
display: none; }
.burger {
flex: 0 0 auto;
display: block;
margin-left: 0.5rem;
font-size: 1.6rem;
color: var(--accent);
background: none;
border: none;
cursor: pointer;
}
.logo img {
max-width: 125px;
}
.site-header .container {
padding: 0 0.5rem;
}
}
@media (max-width: 768px) { .header-actions .header-phones li:last-child {
display: none; } .burger {
display: block;
font-size: 1.6rem;
color: var(--accent);
background: none;
border: none;
cursor: pointer;
} .main-nav {
display: none;
flex-direction: column;
background-color: var(--bg-dark);
width: 100%;
text-align: center;
padding: 2rem 1rem;
} .main-nav.active {
display: flex;
align-items: center;
justify-content: center;
} .site-header.menu-open .logo,
.site-header.menu-open .header-actions {
display: none;
}
} .nav-list li.has-submenu {
position: relative;
}
.nav-list li.has-submenu .submenu {
display: none;
position: absolute;
top: 100%;
left: 0;
background: #111;
padding: 0.5rem 0;
border-radius: 8px;
min-width: 220px;
box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.nav-list li.has-submenu:hover .submenu {
display: block;
}
.nav-list li.has-submenu .submenu li {
display: block;
}
.nav-list li.has-submenu .submenu a {
display: block;
padding: 0.6rem 1rem;
color: #A5BF13;
text-decoration: none;
transition: background 0.3s ease, color 0.3s ease;
}
.nav-list li.has-submenu .submenu a:hover {
background: #222;
color: #B8D420;
}.site-footer {
background-color: var(--bg-dark);
color: var(--text-main);
padding: 4rem 0 2rem;
}
.site-footer .container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}
.footer-block h2 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
position: relative;
text-align: left;
}
.footer-block h2::after {
content: '';
display: block;
width: 40px;
height: 3px;
background-color: var(--color-accent);
margin-top: 0.5rem;
margin-left: 0;
}
.footer-about p {
margin-bottom: 1rem;
}
.footer-about .btn {
text-decoration: none;
margin-left: 0;
}
.footer-links ul,
.footer-solutions ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li + li,
.footer-solutions li + li {
margin-top: 0.5rem;
}
.footer-links a,
.footer-solutions a {
color: var(--text-main);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-solutions a:hover {
color: var(--color-secondary);
}
.footer-contacts p {
margin: 0.5rem 0;
}
.footer-contacts ul {
list-style: none;
padding: 0;
margin: 0.5rem 0 1rem;
}
.footer-contacts ul li {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
font-size: 1rem;
}
.footer-contacts ul li::before {
content: "📞";
font-size: 1rem;
color: var(--color-accent);
}
.footer-contacts a {
color: var(--text-main);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-contacts a:hover {
color: var(--color-secondary);
}
.footer-contacts .social-icons {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 0.5rem;
}
.social-icons a {
color: var(--text-main);
font-size: 1.2rem;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: var(--color-accent);
}
.footer-cta {
grid-column: 1 / -1;
text-align: center;
margin-top: 2rem;
}
.footer-cta .btn {
font-size: 1rem;
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
font-size: 0.85rem;
color: var(--text-muted);
}
.footer-about {
text-align: left; }
.footer-about .btn {
display: inline-block;
margin-left: 0; background-color: transparent;
color: var(--color-accent);
border: 2px solid var(--color-accent);
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-about .btn:hover {
background-color: var(--color-accent);
color: #fff;
transform: translateY(-2px);
}
@media (max-width: 600px) {
.site-footer .container {
grid-template-columns: 1fr;
}
.footer-about,
.footer-links,
.footer-solutions,
.footer-contacts,
.footer-block h2 {
text-align: center;
}
.footer-block h2::after {
margin-left: auto;
}
.footer-contacts ul li {
justify-content: center;
}
.footer-contacts p,
.footer-contacts a {
text-align: center;
}
.site-footer {
padding: 3rem 0 1.5rem;
}
.footer-cta {
margin-top: 1.5rem;
}
} :root {
--bg-section-color: #62929E;
--bg-section-image: url(//cascadeair.com.ua/wp-content/themes/cascadeair/assets/img/bg-form.jpg);
--bg-form: #F0F0F0;
--text-light: #F0F0F0;
--text-dark: #292929;
--accent-primary: #A5BF13;
--accent-secondary: #62929E;
}
.global-form {
position: relative;
background:
var(--bg-section-image) center/cover no-repeat,
var(--bg-section-color);
padding: 60px 0;
}
.global-form__overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}
.global-form__inner {
position: relative;
z-index: 2;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
color: var(--text-light);
}
.global-form__info {
background: rgba(0, 0, 0, 0.4);
padding: 20px;
border-radius: 4px;
text-align: left; }
.global-form__heading {
font-size: 2.5rem;
margin-bottom: 16px;
}
.global-form__list {
list-style: none;
margin: 0;
padding: 0;
}
.global-form__list li {
position: relative;
padding-left: 24px;
margin-bottom: 12px;
font-size: 1.125rem;
text-align: left; }
.global-form__list li::before {
content: '✓';
position: absolute;
left: 0;
top: 0;
color: var(--accent-primary);
}
.global-form__card {
background: var(--bg-form);
color: var(--text-dark);
padding: 32px;
border: 1px solid var(--accent-secondary);
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 16px;
}
.global-form__row {
display: flex;
flex-direction: column;
}
.global-form__row--full {
grid-column: 1 / -1;
}
.global-form__row label {
font-size: 14px;
margin-bottom: 4px;
color: var(--text-dark);
}
.global-form__row input,
.global-form__row textarea {
font-size: 16px;
padding: 8px 0;
border: none;
border-bottom: 1px solid var(--accent-secondary);
background: transparent;
transition: border-color 0.2s;
}
.global-form__row input::placeholder,
.global-form__row textarea::placeholder {
color: var(--accent-secondary);
}
.global-form__row input:focus,
.global-form__row textarea:focus {
outline: none;
border-bottom-color: var(--accent-primary);
}
.global-form__error {
font-size: 12px;
color: #D32F2F;
margin-top: 4px;
min-height: 16px;
}
.global-form__submit {
grid-column: 1 / -1;
background: var(--accent-primary);
color: var(--text-dark);
padding: 12px 0;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
cursor: pointer;
border-radius: 0px;
transition: background 0.2s;
}
.global-form__submit:hover {
background: #8CA10E;
}
.global-form__submit {
border: none; outline: none; }
.global-form__submit:focus {
outline: none; }
.global-form__status {
grid-column: 1 / -1;
margin-top: 8px;
font-size: 14px;
text-align: center;
color: var(--accent-primary);
}
@media (max-width: 900px) {
.global-form__inner {
grid-template-columns: 1fr;
text-align: center;
}
.global-form__info {
text-align: left; }
.global-form__heading {
font-size: 2.25rem;
}
.global-form__list li {
font-size: 1rem;
text-align: left; }
}
@media (max-width: 480px) {
.global-form__card {
grid-template-columns: 1fr;
}
} .contact-section {
background: var(--bg-dark);
padding: 5rem 2rem;
color: var(--text-main);
}
.contact-section h1 {
font-size: clamp(2rem, 5vw, 3rem);
color: var(--accent);
text-align: center;
margin-bottom: 2rem;
text-shadow: 0 0 20px rgba(165, 191, 19, 0.3);
}
.contact-section .intro {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 4rem;
text-align: center;
line-height: 1.6;
} .contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.contact-block {
background: var(--card-dark);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
transition: all 0.4s ease;
}
.contact-block:nth-child(even) {
background: var(--card-alt);
}
.contact-block:hover {
background: #333;
box-shadow: 0 10px 30px rgba(165, 191, 19, 0.3);
transform: translateY(-3px);
}
.contact-block h3 {
font-size: 1.2rem;
color: var(--accent);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.contact-block a {
color: var(--text-main);
text-decoration: none;
font-weight: 500;
}
.contact-block a:hover {
color: #B8D420;
} .contact-phones {
list-style: none;
padding: 0;
margin: 0.5rem 0 0;
}
.contact-phones li {
margin-bottom: 0.5rem;
font-size: 1rem;
}
.contact-phones a {
color: var(--text-main);
text-decoration: none;
transition: color 0.3s ease;
}
.contact-phones a:hover {
color: #B8D420;
} .map-link {
display: inline-block;
margin-top: 1rem;
font-size: 0.95rem;
color: var(--accent);
text-decoration: underline;
}
.contact-map iframe {
border-radius: 12px;
box-shadow: 0 10px 30px rgba(165, 191, 19, 0.2);
margin-bottom: 4rem;
} .contact-stats {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
margin-bottom: 4rem;
}
.stat-card {
flex: 1 1 200px;
background: var(--card-dark);
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
.stat-card:hover {
background: #333;
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.4);
}
.stat-card i {
font-size: 2rem;
color: var(--accent);
margin-bottom: 1rem;
}
.stat-card h4 {
font-size: 1.4rem;
color: var(--accent);
margin-bottom: 0.5rem;
}
.stat-card p {
font-size: 1rem;
color: var(--text-main);
} .contact-form-section {
max-width: 700px;
margin: 0 auto 4rem;
text-align: center;
}
.contact-form-section h2 {
font-size: 2rem;
color: var(--accent);
margin-bottom: 2rem;
}
#contactForm {
display: flex;
flex-direction: column;
gap: 1rem;
}
#contactForm input,
#contactForm select,
#contactForm textarea {
padding: 1rem;
border-radius: 8px;
border: none;
background: var(--card-dark);
color: var(--text-light);
font-size: 1rem;
}
#contactForm textarea {
resize: vertical;
min-height: 120px;
}
#contactForm button {
padding: 1rem 2rem;
background: linear-gradient(135deg, var(--accent), #B8D420);
color: var(--text-dark);
font-weight: 700;
border-radius: 40px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(165, 191, 19, 0.3);
}
#contactForm button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.5);
} .faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.faq-card {
background: var(--card-dark);
padding: 1.5rem;
border-radius: 12px;
text-align: left;
color: var(--text-main);
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
transition: all 0.3s ease;
display: flex;
align-items: flex-start;
gap: 1rem;
}
.faq-card i {
font-size: 1.5rem;
color: var(--accent);
margin-top: 0.2rem;
}
.faq-card:hover {
background: #333;
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.4);
} .contact-cta {
text-align: center;
opacity: 0;
transform: scale(0.9);
filter: blur(4px);
transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.contact-cta.visible {
opacity: 1;
transform: scale(1);
filter: blur(0);
}
.contact-cta p {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: var(--text-light);
}
.contact-cta a {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, var(--accent), #B8D420);
color: var(--text-dark);
font-weight: 700;
border-radius: 40px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(165, 191, 19, 0.3);
max-width: 90%;
width: fit-content;
}
.contact-cta a:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.5);
} @media (max-width: 720px) {
.contact-section {
padding: 3rem 1rem;
}
.contact-section h1 {
font-size: 2.2rem;
text-align: center;
}
.contact-section .intro {
font-size: 1rem;
padding: 0 1rem;
line-height: 1.5;
}
.contact-grid,
.contact-stats,
.faq-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.contact-block {
padding: 1.5rem;
text-align: center;
}
.contact-block h3 {
font-size: 1.1rem;
justify-content: center;
}
.contact-phones {
padding-left: 0;
}
.contact-phones li {
font-size: 0.95rem;
}
.map-link {
font-size: 0.9rem;
}
.contact-map iframe {
height: 300px;
}
.stat-card {
padding: 1.5rem;
}
.stat-card h4 {
font-size: 1.2rem;
}
.stat-card p {
font-size: 0.95rem;
}
.faq-card {
flex-direction: row;
align-items: center;
padding: 1.2rem;
}
.faq-card i {
font-size: 1.3rem;
}
.faq-card p {
font-size: 1rem;
}
.contact-form-section {
padding: 0 1rem;
}
.contact-form-section h2 {
font-size: 1.6rem;
}
#contactForm input,
#contactForm select,
#contactForm textarea {
font-size: 0.95rem;
padding: 0.8rem;
}
#contactForm button {
font-size: 1rem;
padding: 0.8rem 1.5rem;
}
.contact-cta p {
font-size: 1.1rem;
padding: 0 1rem;
}
.contact-cta a {
font-size: 1rem;
padding: 0.8rem 2rem;
}
.reviews-slider .container {
padding: 0 1rem;
}
.slider {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
gap: 1rem;
padding-bottom: 1rem;
}
.review-card {
min-width: 280px;
flex: 0 0 auto;
scroll-snap-align: start;
padding: 1.5rem;
text-align: center;
}
.review-card img.avatar {
width: 64px;
height: 64px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 1rem;
}
.review-title {
font-size: 1.1rem;
}
.stars i {
font-size: 1rem;
}
.client-name {
font-size: 0.9rem;
color: var(--text-muted);
}
} .faq-button-wrapper {
text-align: center;
margin-top: 2rem;
margin-bottom: 5rem;
}
.faq-button {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, var(--accent), #B8D420);
color: var(--text-dark);
font-weight: 700;
border-radius: 40px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(165, 191, 19, 0.3);
}
.faq-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.5);
} @media (max-width: 720px) {
.faq-button {
font-size: 1rem;
padding: 0.8rem 2rem;
}
}
.contact-section {
background: url(//cascadeair.com.ua/wp-content/themes/cascadeair/assets/img/contact-bg.jpg) no-repeat center center fixed;
background-size: cover;
} body.page-template-contacts { background: url(//cascadeair.com.ua/wp-content/themes/cascadeair/assets/img/contact-bg.jpg) no-repeat center center fixed;
background-size: cover;
position: relative;
} body.page-template-contacts::before {
content: "";
position: fixed;
inset: 0;
background: rgba(0,0,0,0.55); z-index: -1;
} .contact-section {
padding: 5rem 2rem;
color: var(--text-main);
position: relative;
z-index: 1; padding-bottom: 1rem;
} .contact-section h1 {
font-size: clamp(2rem, 5vw, 3rem);
color: var(--accent);
text-align: center;
margin-bottom: 2rem;
text-shadow: 0 0 25px rgba(165, 191, 19, 0.5);
} .contact-section .intro {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 4rem;
text-align: center;
line-height: 1.6;
color: var(--text-light);
} .contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.contact-block {
background: rgba(42,42,42,0.85); padding: 2rem;
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
transition: all 0.4s ease;
backdrop-filter: blur(6px); }
.contact-block:nth-child(even) {
background: rgba(51,51,51,0.85);
}
.contact-block:hover {
background: rgba(60,60,60,0.9);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.4);
transform: translateY(-5px);
} .contact-block h3 {
font-size: 1.3rem;
color: var(--accent);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
text-shadow: 0 0 15px rgba(165, 191, 19, 0.4);
} .contact-block a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
}
.contact-block a:hover {
color: #B8D420;
} .contact-map iframe {
border-radius: 16px;
box-shadow: 0 15px 40px rgba(0,0,0,0.4);
margin-bottom: 4rem;
} .stat-card {
background: rgba(42,42,42,0.85);
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0,0,0,0.4);
transition: all 0.3s ease;
}
.stat-card:hover {
background: rgba(60,60,60,0.9);
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.5);
}
.stat-card i {
font-size: 2rem;
color: var(--accent);
margin-bottom: 1rem;
filter: drop-shadow(0 0 10px rgba(165, 191, 19, 0.5));
} .contact-cta a {
background: linear-gradient(135deg, var(--accent), #B8D420);
color: var(--text-dark);
font-weight: 700;
border-radius: 40px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 15px 40px rgba(165, 191, 19, 0.5);
}
.contact-cta a:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(165, 191, 19, 0.6);
}
.faq-card {
background: #2a2a2a; padding: 1.5rem;
border-radius: 12px;
text-align: left;
color: var(--text-main);
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
transition: all 0.3s ease;
display: flex;
align-items: flex-start;
gap: 1rem;
}:root {
--bg-dark: #292929;
--accent: #A5BF13;
--accent-secondary: #62929E;
--text-light: #F0F0F0;
} .hero {
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: var(--text-light);
text-align: center;
position: relative;
background-color: var(--bg-dark);
}
.hero::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 1;
}
.hero .container {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
padding: 0 1.5rem;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
font-weight: 600;
color: var(--text-light);
}
.hero p {
font-size: 1.0rem;
margin-bottom: 2rem;
color: var(--text-light);
}
.btn-group {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
} .btn {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: 6px;
font-weight: 500;
text-decoration: none;
transition: background 0.3s ease, color 0.3s ease;
font-size: 1rem;
}
.btn-primary {
background-color: var(--accent);
color: #292929;
}
.btn-primary:hover {
background-color: #8fae10;
color: #fff;
}
.btn-secondary {
background-color: transparent;
color: var(--accent);
border: 2px solid var(--accent);
}
.btn-secondary:hover {
background-color: var(--accent);
color: #292929;
} @media (max-width: 768px) {
.hero {
padding: 4rem 0;
}
.hero h1 {
font-size: 1.75rem;
line-height: 1.3;
margin-bottom: 1rem;
}
.hero p {
font-size: 1rem;
margin-bottom: 1.5rem;
}
.btn-group {
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
.btn {
width: 100%;
max-width: 280px;
padding: 0.75rem 1rem;
}
} .solutions {
padding-bottom: 5rem;
color: #F0F0F0;
}
.solutions .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.solutions h2 {
font-size: 2rem;
margin: 3rem 0 1rem; font-weight: 600;
color: #F0F0F0;
}
.solutions p {
font-size: 1.1rem;
margin-bottom: 3rem;
color: #CCCCCC;
} .solutions-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}
.solution-card {
position: relative;
background-size: cover;
background-position: center;
border-radius: 12px;
overflow: hidden;
height: 320px;
display: flex;
align-items: flex-end;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
color: inherit;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.solution-card:hover {
transform: translateY(-6px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.solution-card .overlay {
background: rgba(41, 41, 41, 0.7);
color: #F0F0F0;
padding: 1.5rem;
width: 100%;
text-align: left;
transition: background 0.3s ease;
}
.solution-card:hover .overlay {
background: rgba(41, 41, 41, 0.85);
}
.solution-card h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.solution-card p {
font-size: 1rem;
margin: 0;
} .centered {
text-align: center;
margin-top: 2rem;
}
.btn-primary {
background-color: #A5BF13;
color: #1F1F1F;
padding: 0.75rem 1.5rem;
border-radius: 6px;
font-weight: 500;
text-decoration: none;
transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
display: inline-block;
font-size: 1rem;
box-shadow: 0 4px 10px rgba(165, 191, 19, 0.3);
}
.btn-primary:hover {
background-color: #8FAE10;
color: #FFFFFF;
transform: translateY(-2px);
} @media (max-width: 1024px) {
.solutions-grid {
grid-template-columns: repeat(2, 1fr);
}
.solution-card {
height: 280px;
}
}
@media (max-width: 600px) {
.solutions {
padding-bottom: 3rem;
}
.solutions h2 {
font-size: 1.5rem;
}
.solutions p {
font-size: 1rem;
margin-bottom: 2rem;
}
.solutions-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.solution-card {
height: 240px;
}
.solution-card .overlay {
padding: 1rem;
}
.btn-primary {
width: 100%;
max-width: 280px;
padding: 0.65rem 1.25rem;
font-size: 0.95rem;
}
}
.benefits {
background-color: #FAFAF7;
padding: 5rem 0;
color: #292929;
}
.benefits .container {
max-width: 1000px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.benefits h2 {
font-size: 2.2rem;
margin-bottom: 3rem;
font-weight: 600;
color: #1F1F1F;
text-transform: uppercase;
letter-spacing: 0.5px;
} .benefits-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
}
.benefits-list li {
background-color: #fff;
padding: 1.75rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits-list li:hover {
transform: translateY(-4px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.benefits-list i {
font-size: 1.6rem;
color: #A5BF13;
flex-shrink: 0;
} .benefits-list li:nth-child(5) {
grid-column: 1 / span 2;
justify-content: center;
text-align: center;
} @media (max-width: 768px) {
.benefits-list {
grid-template-columns: 1fr;
}
.benefits h2 {
font-size: 1.8rem;
}
.benefits-list li {
padding: 1.5rem;
font-size: 1rem;
}
.benefits-list i {
font-size: 1.4rem;
}
.benefits-list li:nth-child(5) {
grid-column: auto;
justify-content: flex-start;
text-align: left;
}
} .process {
background-color: #1F1F1F;
padding: 3rem 0;
color: #F0F0F0;
position: relative;
z-index: 1;
}
.process .container {
max-width: 1000px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.process h2 {
font-size: 2rem;
margin-bottom: 2.5rem;
font-weight: 600;
color: #A5BF13;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.process h2::after {
border: none;
background: none;
} .steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 2rem;
} .steps-row {
grid-column: 1 / span 3;
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 2rem;
}
.steps-row .step {
width: calc(50% - 1rem);
} .step {
background-color: #292929;
padding: 1.5rem;
border-radius: 12px;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
font-size: 1.05rem;
display: flex;
align-items: center;
gap: 1rem;
transition: transform 0.3s ease;
}
.step:hover {
transform: translateY(-4px);
}
.step i {
font-size: 1.6rem;
color: #A5BF13;
flex-shrink: 0;
} .centered {
text-align: center;
}
.btn.btn-primary {
display: inline-block;
padding: 0.75rem 1.5rem;
background-color: #A5BF13;
color: #1F1F1F;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn.btn-primary:hover {
background-color: #8CA312;
} @media (max-width: 768px) {
.steps-grid {
grid-template-columns: 1fr;
}
.steps-row {
flex-direction: column;
gap: 1.5rem;
margin-top: 1.5rem;
}
.steps-row .step {
width: 100%;
}
.step {
padding: 1.25rem;
font-size: 1rem;
text-align: left;
justify-content: flex-start;
}
.step i {
font-size: 1.4rem;
}
.btn.btn-primary {
width: 100%;
max-width: 320px;
}
} .projects {
background-color: #0F0F0F;
padding: 6rem 0;
color: #F0F0F0;
position: relative;
z-index: 1;
}
.projects .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.projects h2 {
font-size: 2.2rem;
margin-bottom: 1rem;
font-weight: 600;
color: #A5BF13;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.projects .subtitle {
font-size: 1.1rem;
margin-bottom: 1rem;
color: #ccc;
} .projects-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: auto;
gap: 2rem;
} .project-card {
background-color: #1F1F1F;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
}
.project-card:hover {
transform: translateY(-6px);
} .project-card.wide {
grid-column: span 2;
flex-direction: row;
align-items: center;
} .project-image {
width: 100%;
aspect-ratio: 1 / 1;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 12px 12px 0 0;
} .project-card.wide .project-image {
width: 50%;
aspect-ratio: 1 / 1;
border-radius: 12px 0 0 12px;
} .project-content {
padding: 1.5rem;
text-align: left;
}
.project-content h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: #fff;
}
.project-content p {
font-size: 1rem;
color: #ccc;
} .centered {
margin-top: 3rem;
}
.btn.btn-secondary {
display: inline-block;
padding: 0.75rem 1.5rem;
background-color: transparent;
border: 2px solid #A5BF13;
color: #A5BF13;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: background-color 0.3s ease, color 0.3s ease;
}
.btn.btn-secondary:hover {
background-color: #A5BF13;
color: #0F0F0F;
} @media (max-width: 768px) {
.projects-grid {
grid-template-columns: 1fr;
}
.project-card {
flex-direction: column;
}
.project-card.wide {
grid-column: auto;
}
.project-card .project-image,
.project-card.wide .project-image {
width: 100%;
aspect-ratio: 1 / 1;
border-radius: 12px 12px 0 0;
}
.project-content {
text-align: center;
padding: 1.25rem;
}
.project-content h3 {
font-size: 1.2rem;
}
.project-content p {
font-size: 0.95rem;
}
.btn.btn-secondary {
width: 100%;
max-width: 320px;
}
.projects h2 {
font-size: 1.4rem;
text-align: center;
margin-bottom: 1rem;
}
} .reviews-slider {
background-color: #fff;
padding: 5rem 0;
color: #1F1F1F;
}
.reviews-slider .container {
max-width: 800px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.reviews-slider h2 {
font-size: 2rem;
margin-bottom: 1rem;
font-weight: 600;
color: #333;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.reviews-slider .intro {
font-size: 1.05rem;
color: #666;
margin-bottom: 2.5rem;
}
.slider {
position: relative;
overflow: hidden;
height: auto;
min-height: 320px;
}
.review-card {
background-color: #f9f9f9;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
font-size: 1.1rem;
font-style: italic;
line-height: 1.6;
opacity: 0;
pointer-events: none;
position: absolute;
width: 100%;
top: 0;
left: 0;
transition: opacity 0.5s ease;
display: flex;
flex-direction: column;
align-items: center;
}
.review-card.active {
opacity: 1;
pointer-events: auto;
position: relative;
}
.review-card .avatar {
width: 70px;
height: 70px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}
.review-card .review-title {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.5rem;
font-style: normal;
color: #333;
}
.review-card .stars {
color: #FFD700;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.review-card p {
margin: 0;
}
.review-card .client-name {
display: block;
margin-top: 1rem;
font-size: 0.95rem;
color: #666;
font-style: normal;
} @media (max-width: 768px) {
.reviews-slider {
padding: 3rem 0;
}
.reviews-slider h2 {
font-size: 1.6rem;
}
.review-card {
padding: 1.5rem;
font-size: 1rem;
}
.review-card .review-title {
font-size: 1.1rem;
}
.review-card .stars {
font-size: 1rem;
}
.review-card .client-name {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.review-card {
padding: 1.2rem;
}
.review-card .avatar {
width: 60px;
height: 60px;
}
.review-card .review-title {
font-size: 1rem;
}
}
.air-section {
max-width: 800px;
margin: 5rem auto 5rem;
text-align: center;
}
.air-section h2 {
font-size: 2rem;
color: #B8D420;
margin-bottom: 1.5rem;
text-shadow: 0 0 15px rgba(165,191,19,0.3);
}
.air-section .intro {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 1.5rem;
color: #D0D0D0;
}
.air-content p {
font-size: 1.05rem;
line-height: 1.6;
color: #D0D0D0;
background: #2a2a2a;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.air-content p:hover {
background: #333;
box-shadow: 0 15px 40px rgba(165,191,19,0.3);
}
.air-section h2::after {
content: none; display: none; }.thank-you {
padding: 80px 0;
text-align: center;
background-color: #f9f9f9;
}
.thank-you__inner {
max-width: 600px;
margin: 0 auto;
padding: 0 20px;
}
.thank-you__icon {
font-size: 64px;
color: var(--accent-primary); margin-bottom: 20px;
}
.thank-you__title {
font-size: 32px;
margin-bottom: 16px;
color: #222;
}
.thank-you__text {
font-size: 18px;
margin-bottom: 32px;
color: #555;
}
.thank-you__btn {
display: inline-block;
padding: 12px 24px;
font-size: 16px;
text-decoration: none;
} @media (max-width: 480px) {
.thank-you__title {
font-size: 24px;
}
.thank-you__text {
font-size: 16px;
}
.thank-you__btn {
width: 100%;
padding: 14px;
font-size: 15px;
}
} .fade-in {
animation: fadeIn 0.6s ease-out forwards;
opacity: 0;
}
@keyframes fadeIn {
to { opacity: 1; }
}.hero-section {
position: relative;
width: 100%;
min-height: 85vh;
background-image: url(//cascadeair.com.ua/wp-content/themes/cascadeair/assets/img/hero-recuperation.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.hero-section::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to bottom right, rgba(0,0,0,0.35), rgba(0,0,0,0.6)); z-index: 1;
} .hero-block {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
padding: 7rem 2rem;
text-align: center;
color: #E0E0E0;
} .hero-block h1 {
font-size: clamp(2.8rem, 6vw, 3.8rem);
color: #A5BF13;
margin-bottom: 1rem;
text-shadow: 0 0 40px rgba(165, 191, 19, 0.5);
letter-spacing: 0.5px;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.4rem;
margin-bottom: 2.5rem;
line-height: 1.6;
opacity: 0.95;
color: #E0E0E0;
} .btn {
display: inline-block;
padding: 1rem 2.4rem;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.2s ease;
box-shadow: 0 0 0 transparent;
position: relative;
}
.btn-primary {
background: #A5BF13;
color: #1a1a1a;
}
.btn-primary:hover {
background: #B8D420;
box-shadow: 0 0 25px rgba(165,191,19,0.5), 0 4px 12px rgba(0,0,0,0.2);
transform: translateY(-2px);
}
.btn-secondary {
background: transparent;
border: 2px solid #A5BF13;
color: #A5BF13;
}
.btn-secondary:hover {
background: #A5BF13;
color: #1a1a1a;
box-shadow: 0 0 25px rgba(165,191,19,0.5), 0 4px 12px rgba(0,0,0,0.2);
transform: translateY(-2px);
} .cta-inline {
text-align: center;
margin: 4rem 0 2rem;
}
.cta-inline p {
font-size: 1.15rem;
margin-bottom: 1rem;
color: #D0D0D0;
opacity: 0.95;
} @media (max-width: 720px) {
.hero-block {
padding: 4rem 1rem;
}
.hero-block h1 {
font-size: 2.2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.btn {
padding: 0.9rem 2rem;
font-size: 0.95rem;
}
} .cascade-tech-section {
margin: 6rem auto;
color: #D0D0D0;
font-family: 'Inter', sans-serif;
} .tech-intro h2 {
font-size: 2.6rem;
color: #B8D420;
margin-bottom: 2.5rem;
text-shadow: 0 0 24px rgba(184, 212, 32, 0.3);
line-height: 1.2;
position: relative;
align-items: center;
justify-content: center;
gap: 0.6rem;
margin-left: auto;
margin-right: auto;
}
.tech-intro h2 i {
font-size: 1.8rem;
color: #B8D420;
}
.tech-intro h2::after {
content: "";
position: absolute;
bottom: -14px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background-color: #B8D420;
border-radius: 2px;
}
.tech-intro p {
font-size: 1.2rem;
line-height: 1.7;
max-width: 800px;
margin: 0 auto 3rem;
opacity: 0.95;
text-align: center;
} .tech-how h3,
.tech-benefits h3,
.tech-flow h3 {
font-size: 1.6rem;
color: #A5BF13;
margin-bottom: 2rem;
display: flex;
align-items: center;
gap: 0.5rem;
justify-content: center;
} .tech-grid,
.benefits-grid,
.flow-grid,
.gallery-grid,
.slider,
.suitable-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
max-width: 1200px;
margin: 0 auto;
} .tech-card,
.benefit-item,
.flow-card,
.suitable-card {
background: #2a2a2a;
padding: 2rem;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
text-align: center;
transition: all 0.2s ease;
}
.tech-card:hover,
.benefit-item:hover,
.flow-card:hover,
.suitable-card:hover {
background: #333;
box-shadow: 0 16px 50px rgba(165,191,19,0.3);
transform: translateY(-3px);
}
.tech-card i,
.benefit-item i,
.flow-card i,
.suitable-card i {
font-size: 2rem;
color: #A5BF13;
margin-bottom: 1rem;
display: block;
}
.tech-card h4,
.benefit-item h4,
.flow-card h4,
.suitable-card h3,
.review-title {
font-size: 1.2rem;
color: #A5BF13;
margin-bottom: 0.5rem;
line-height: 1.3;
}
.tech-card p,
.benefit-item p,
.flow-card p,
.suitable-card p,
.review-card p {
font-size: 1rem;
line-height: 1.6;
opacity: 0.95;
color: #D0D0D0;
} .gallery-section {
margin-bottom: 6rem;
text-align: center;
}
.gallery-section h2 {
font-size: 2rem;
color: #B8D420;
margin-bottom: 2rem;
}
.gallery-grid img {
width: 100%;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0,0,0,0.4);
transition: transform 0.2s ease;
}
.gallery-grid img:hover {
transform: scale(1.03);
} .flow-photo-wrapper {
grid-column: 1 / -1;
text-align: center;
}
.flow-photo {
max-width: 100%;
border-radius: 16px;
box-shadow: 0 6px 16px rgba(0,0,0,0.4);
transition: transform 0.3s ease;
}
.flow-photo:hover {
transform: scale(1.02);
}
.section-suitable {
background-color: #111;
padding: 6rem 2rem;
color: #D0D0D0;
text-align: center;
}
.section-suitable__title {
font-size: 2rem;
color: #B8D420;
margin-bottom: 3rem;
text-shadow: 0 0 24px rgba(184, 212, 32, 0.3);
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
margin-left: auto;
margin-right: auto;
}
.section-suitable__title::after {
content: "";
position: absolute;
bottom: -14px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background-color: #B8D420;
border-radius: 2px;
}
.section-suitable__grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 2rem;
justify-content: center;
margin-bottom: 4rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.suitable-card {
background: #2a2a2a;
padding: 2rem;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
text-align: center;
transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
will-change: transform, box-shadow;
}
.suitable-card:hover {
background: #333;
box-shadow: 0 16px 50px rgba(165,191,19,0.4), 0 0 0 2px rgba(165,191,19,0.2);
transform: translateY(-6px) scale(1.02);
cursor: pointer;
}
.suitable-card__icon {
font-size: 2rem;
color: #A5BF13;
margin-bottom: 1rem;
display: block;
transition: color 0.3s ease, text-shadow 0.3s ease;
}
.suitable-card:hover .suitable-card__icon {
color: #B8D420;
text-shadow: 0 0 12px rgba(184,212,32,0.4);
}
.suitable-card__title {
font-size: 1.2rem;
color: #A5BF13;
margin-bottom: 0.5rem;
line-height: 1.3;
}
.suitable-card__text {
font-size: 1rem;
line-height: 1.6;
opacity: 0.95;
color: #D0D0D0;
}
.section-suitable__cta {
text-align: center;
margin-top: 2rem;
}
.section-suitable__cta-text {
font-size: 1.15rem;
margin-bottom: 1rem;
color: #D0D0D0;
opacity: 0.95;
}
@media (max-width: 720px) {
.section-suitable {
padding: 4rem 1rem;
}
.section-suitable__title {
font-size: 1.6rem;
}
.section-suitable__title::after {
width: 40px;
height: 3px;
bottom: -12px;
}
.section-suitable__grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.suitable-card {
padding: 1.5rem;
}
.suitable-card__icon {
font-size: 1.6rem;
margin-bottom: 0.8rem;
}
.suitable-card__title {
font-size: 1.1rem;
}
.suitable-card__text {
font-size: 0.95rem;
}
.section-suitable__cta-text {
font-size: 1rem;
}
.btn {
padding: 0.9rem 2rem;
font-size: 0.95rem;
}
}
@media (max-width: 720px) {
.hero-block {
padding: 4rem 1rem;
}
.hero-block h1 {
font-size: 2.2rem;
}
.tech-intro h2 {
font-size: 1.8rem;
gap: 0.4rem;
}
.tech-intro h2::after,
.suitable-for h2::after {
width: 40px;
height: 3px;
bottom: -12px;
}
.tech-intro p,
.tech-card p,
.benefit-item p,
.flow-card p,
.suitable-card p,
.review-card p,
.cta-inline p {
font-size: 0.95rem;
}
.tech-card i,
.benefit-item i,
.flow-card i,
.suitable-card i {
font-size: 1.6rem;
}
.gallery-grid img,
.flow-photo {
border-radius: 10px;
}
.review-title {
font-size: 1.05rem;
}
.reviews-slider h2,
.gallery-section h2,
.suitable-for h2 {
font-size: 1.6rem;
}
.suitable-for {
padding: 4rem 1rem;
}
.suitable-card p {
font-size: 0.95rem;
}
.cta-inline p {
font-size: 1rem;
}
} .gallery-section {
margin: 6rem auto;
padding: 0 2rem;
text-align: center;
color: #D0D0D0;
}
.gallery-section h2 {
font-size: 2rem;
color: #B8D420;
margin-bottom: 2.5rem;
text-shadow: 0 0 24px rgba(184, 212, 32, 0.3);
} .gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto 4rem;
}
.gallery-grid img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.4);
transition: transform 0.3s ease, box-shadow 0.3s ease;
object-fit: cover;
}
.gallery-grid img:hover {
transform: scale(1.03);
box-shadow: 0 16px 50px rgba(165,191,19,0.3);
} .cta-inline {
text-align: center;
margin-top: 2rem;
}
.cta-inline p {
font-size: 1.15rem;
margin-bottom: 1rem;
color: #D0D0D0;
opacity: 0.95;
}
.section-process-link {
background-color: #111;
padding: 6rem 2rem;
text-align: center;
color: #D0D0D0;
border-top: 1px solid rgba(255,255,255,0.05);
}
.process-link__inner {
max-width: 900px;
margin: 0 auto;
}
.process-link__title {
font-size: 2rem;
color: #A5BF13;
margin-bottom: 1.5rem;
text-shadow: 0 0 24px rgba(165, 191, 19, 0.3);
}
.process-link__text {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 2.5rem;
opacity: 0.95;
}
@media (max-width: 720px) {
.section-process-link {
padding: 4rem 1rem;
}
.process-link__title {
font-size: 1.6rem;
}
.process-link__text {
font-size: 1rem;
}
.btn {
padding: 0.9rem 2rem;
font-size: 0.95rem;
}
} .tech-how {
background-color: #fff; color: #222; padding: 3rem 2rem;
} .benefits-section {
background-color: #fff; color: #222;
padding: 3rem 2rem;
} .tech-grid .tech-card,
.benefits-grid .benefit-item {
background-color: #444; border: 1px solid #eee;
border-radius: 6px;
padding: 1.5rem;
} .tech-how h3,
.benefits-section h3 {
color: #000; } .tech-card h4,
.benefit-item h4 {
color: #00b5ad; } .tech-card i,
.benefit-item i {
color: #fff; padding: 0.5rem;
}
.tech-flow h3 {
margin-top: 2rem
}
.flow-grid {
margin-bottom: 4rem;
} .ventilation-hero {
position: relative;
min-height: 85vh;
background: url(//cascadeair.com.ua/wp-content/themes/cascadeair/assets/img/hero-supply-exhaust.jpg) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.ventilation-hero::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to bottom right, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}
.ventilation-hero__content {
position: relative;
z-index: 1;
max-width: 1000px;
padding: 6rem 2rem;
color: #E0E0E0;
}
.ventilation-hero__title {
font-size: clamp(2.6rem, 6vw, 3.6rem);
color: #A5BF13;
margin-bottom: 1rem;
text-shadow: 0 0 40px rgba(165,191,19,0.5);
}
.ventilation-hero__subtitle {
font-size: 1.4rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}
.ventilation-hero__btn {
display: inline-block;
padding: 1rem 2.4rem;
border-radius: 12px;
font-weight: 600;
background: #A5BF13;
color: #1a1a1a;
transition: all 0.3s ease;
}
.ventilation-hero__btn:hover {
background: #B8D420;
box-shadow: 0 0 25px rgba(165,191,19,0.5);
transform: translateY(-2px);
} .ventilation-tech {
font-family: 'Inter', sans-serif;
color: #D0D0D0;
}
.ventilation-tech__heading {
font-size: 2.4rem;
color: #B8D420;
text-align: center;
margin-bottom: 2.5rem;
margin-top: 2rem;
text-shadow: 0 0 24px rgba(184,212,32,0.3);
}
.ventilation-tech__text {
font-size: 1.2rem;
line-height: 1.7;
max-width: 800px;
margin: 0 auto 3rem;
text-align: center;
opacity: 0.95;
}
.ventilation-tech__subheading {
font-size: 2.2rem;
color: #A5BF13;
text-align: center;
margin-bottom: 2rem;
} .ventilation-section__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.ventilation-card {
background: #222;
padding: 2rem;
border-radius: 16px;
text-align: center;
box-shadow: 0 8px 24px rgba(0,0,0,0.4);
transition: all 0.3s ease;
}
.ventilation-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 40px rgba(165,191,19,0.4);
}
.ventilation-card__icon {
font-size: 2rem;
color: #48D1CC;
margin-bottom: 1rem;
transition: color 0.3s ease, text-shadow 0.3s ease;
}
.ventilation-card:hover .ventilation-card__icon {
color: #B8D420;
text-shadow: 0 0 12px rgba(184,212,32,0.4);
}
.ventilation-card__title {
font-size: 1.3rem;
font-weight: 600;
color: #A5BF13;
margin-bottom: 0.8rem;
}
.ventilation-card__text {
font-size: 1rem;
line-height: 1.6;
color: #D0D0D0;
opacity: 0.95;
} .ventilation-section--light {
background: #fff;
color: #222;
padding: 3rem 2rem;
}
.ventilation-section--light .ventilation-card {
background: #f5f5f5;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ventilation-section--light .ventilation-card__title,
.ventilation-section--light .ventilation-card__icon {
color: #00b5ad; }
.ventilation-section--light .ventilation-card__text {
color: #333;
} .ventilation-section--dark {
background: #292929;
color: #D0D0D0;
padding: 3rem 2rem;
} .ventilation-tech__image {
max-width: 100%;
border-radius: 16px;
box-shadow: 0 6px 16px rgba(0,0,0,0.4);
transition: transform 0.3s ease;
display: block;
margin: 2rem auto;
}
.ventilation-tech__image:hover {
transform: scale(1.02);
} .ventilation-tech__cta {
text-align: center;
margin-top: 3rem;
}
.ventilation-tech__btn {
display: inline-block;
margin-top: 1rem;
padding: 0.9rem 2rem;
background: #A5BF13;
color: #1a1a1a;
border-radius: 12px;
text-decoration: none;
margin-bottom: 2rem;
font-weight: 600;
transition: all 0.2s ease;
}
.ventilation-tech__btn:hover {
background: #B8D420;
box-shadow: 0 0 25px rgba(165,191,19,0.5);
transform: translateY(-2px);
} @media (max-width: 720px) {
.ventilation-hero__content {
padding: 4rem 1rem;
}
.ventilation-hero__title {
font-size: 2.2rem;
}
.ventilation-hero__subtitle {
font-size: 1.1rem;
}
.ventilation-tech__heading {
font-size: 1.8rem;
}
.ventilation-tech__subheading {
font-size: 1.4rem;
}
.ventilation-tech__text {
font-size: 1rem;
}
.ventilation-card {
padding: 1.5rem;
}
.ventilation-card__title {
font-size: 1.1rem;
}
.ventilation-card__text {
font-size: 0.95rem;
}
} .ventilation-section--light .ventilation-tech__subheading {
color: #000; } .ventilation-section--light .ventilation-card {
background: #444;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ventilation-section--light .ventilation-card__title {
color: #00b5ad; }
.ventilation-section--light .ventilation-card__icon {
color: #fff; }
.ventilation-section--light .ventilation-card__text {
color: #fff;
} .ventilation-tech__how .ventilation-card__icon {
color: #fff; font-size: 2rem;
margin-bottom: 1rem;
}
.ventilation-tech__benefits .ventilation-card {
background: none;
box-shadow: none;
}
.vent-types-summary {
padding: 3rem 0;
background-color: var(--bg-dark);
color: var(--text-light);
}
.vent-types__note {
background: rgba(255,255,255,0.05);
border-left: 4px solid var(--accent);
padding: 1rem 1.5rem;
border-radius: 6px;
margin-bottom: 2rem;
max-width: 1200px;
margin: 3rem auto;
text-align: center;
}
.vent-types__note p {
margin: 0;
font-size: 1.1rem;
line-height: 1.5;
color: var(--text-main);
}
.vent-types__note i {
color: var(--accent);
margin-right: 0.5rem;
}
@media (max-width: 768px) {
.fade-in,
.fade-in-left,
.fade-in-right {
opacity: 1 !important; transform: none !important; transition: none !important; }
.visible {
opacity: 1 !important;
transform: none !important;
}
} .drying-list,
.humidification-list {
list-style: none;
margin: 0;
padding: 0;
}
.ventilation-tech__flow .ventilation-tech__subheading {
margin-top: 2rem;
}
.ventilation-section--dark .ventilation-tech__subheading::after {
content: '';
display: block;
width: 60px;
height: 3px;
background-color: var(--color-accent);
margin: 0.5rem auto 0;
}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}