: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; }
}.parallax-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.parallax-circle {
position: absolute;
border-radius: 50%;
opacity: 0.03;
animation: float-random 20s ease-in-out infinite;
}
.parallax-circle:nth-child(1) {
width: 300px;
height: 300px;
background: #A5BF13;
top: 10%;
left: 5%;
animation-delay: 0s;
}
.parallax-circle:nth-child(2) {
width: 200px;
height: 200px;
background: #62929E;
top: 60%;
right: 10%;
animation-delay: 3s;
}
.parallax-circle:nth-child(3) {
width: 400px;
height: 400px;
background: #A5BF13;
bottom: 5%;
left: 40%;
animation-delay: 6s;
}
@keyframes float-random {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -50px) scale(1.1); }
66% { transform: translate(-20px, 30px) scale(0.9); }
}
section {
position: relative;
z-index: 1;
} .hero {
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #1a1a1a 0%, #292929 50%, #1a1a1a 100%);
padding: 4rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 30%, rgba(165, 191, 19, 0.15) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(98, 146, 158, 0.15) 0%, transparent 40%);
animation: pulse-bg 8s ease-in-out infinite;
z-index: 0;
}
@keyframes pulse-bg {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
.hero-content {
position: relative;
z-index: 1;
max-width: 1000px;
width: 100%;
}
.hero-icon {
font-size: 6rem;
margin-bottom: 2rem;
animation: float-hero 4s ease-in-out infinite;
filter: drop-shadow(0 0 30px rgba(165, 191, 19, 0.5));
}
@keyframes float-hero {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
.hero h1 {
font-size: 4rem;
color: #A5BF13;
margin-bottom: 1.5rem;
line-height: 1.1;
text-shadow: 0 0 40px rgba(165, 191, 19, 0.3);
animation: glow-text 3s ease-in-out infinite;
}
@keyframes glow-text {
0%, 100% { text-shadow: 0 0 20px rgba(165, 191, 19, 0.3); }
50% { text-shadow: 0 0 40px rgba(165, 191, 19, 0.6), 0 0 60px rgba(165, 191, 19, 0.3); }
}
.hero .subtitle {
font-size: 1.6rem;
color: #fff;
margin-bottom: 2rem;
font-weight: 600;
letter-spacing: 1px;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 3rem;
flex-wrap: wrap;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 3rem;
font-weight: 700;
color: #A5BF13;
display: block;
text-shadow: 0 0 20px rgba(165, 191, 19, 0.4);
}
.stat-label {
color: #D0D0D0;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 2px;
}
.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
animation: bounce 2s infinite;
z-index: 1;
}
.scroll-indicator::before {
content: '↓';
font-size: 2rem;
color: #A5BF13;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
40% { transform: translateX(-50%) translateY(-10px); }
60% { transform: translateX(-50%) translateY(-5px); }
} .intro-section {
background: #3a3a3a;
padding: 5rem 2rem;
text-align: center;
position: relative;
}
.intro-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, transparent, #A5BF13, transparent);
}
.intro-content {
max-width: 900px;
margin: 0 auto;
}
.intro-highlight {
font-size: 2rem;
color: #A5BF13;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.4;
}
.intro-text {
font-size: 1.2rem;
color: #D0D0D0;
line-height: 1.8;
} @media (max-width: 720px) {
.hero {
padding-top: 100px; padding-bottom: 2rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
min-height: auto;
flex-direction: column;
text-align: center;
}
.hero-content {
max-width: 100%;
padding: 0 1rem;
}
.hero-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}
.hero h1 {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 1rem;
}
.hero .subtitle {
font-size: 1.2rem;
margin-bottom: 1.5rem;
letter-spacing: 0.5px;
}
.hero-stats {
display: none; }
.scroll-indicator::before {
font-size: 1.5rem;
}
.intro-section {
padding: 3rem 1.5rem;
}
.intro-highlight {
font-size: 1.6rem;
margin-bottom: 1rem;
}
.intro-text {
font-size: 1rem;
line-height: 1.6;
}
.parallax-circle:nth-child(1),
.parallax-circle:nth-child(2),
.parallax-circle:nth-child(3) {
transform: scale(0.6);
opacity: 0.02;
}
} .process-section {
background: #292929;
padding: 6rem 2rem;
position: relative;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-icon {
font-size: 4rem;
margin-bottom: 1rem;
display: inline-block;
animation: rotate-slow 20s linear infinite;
color: #A5BF13;
}
@keyframes rotate-slow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.section-header h2 {
font-size: 3rem;
color: #A5BF13;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-header h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, transparent, #62929E, transparent);
}
.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
margin-top: 3rem;
perspective: 1000px;
}
.process-card {
background: linear-gradient(145deg, #3a3a3a, #2f2f2f);
padding: 3rem 2rem;
border-radius: 20px;
border: 1px solid #62929E;
transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
position: relative;
overflow: hidden;
transform-style: preserve-3d;
}
.process-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(165, 191, 19, 0.1) 0%, transparent 100%);
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
}
.process-card:hover {
transform: translateY(-12px) rotateX(4deg);
border-color: #A5BF13;
box-shadow:
0 20px 60px rgba(0, 0, 0, 0.5),
0 0 40px rgba(165, 191, 19, 0.3);
}
.process-card:hover::before {
opacity: 1;
}
.process-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 70px;
height: 70px;
background: linear-gradient(135deg, #A5BF13, #B8D420);
color: #292929;
border-radius: 50%;
font-weight: 700;
font-size: 2rem;
margin-bottom: 1.5rem;
box-shadow: 0 8px 20px rgba(165, 191, 19, 0.4);
transition: transform 0.4s ease;
z-index: 1;
}
.process-card:hover .process-number {
transform: scale(1.1) rotate(360deg);
}
.process-card h3 {
color: #A5BF13;
font-size: 1.4rem;
margin-bottom: 1rem;
position: relative;
z-index: 1;
}
.process-card p {
color: #D0D0D0;
font-size: 1.05rem;
line-height: 1.7;
position: relative;
z-index: 1;
} @media (max-width: 720px) {
.process-section {
padding: 4rem 1.5rem;
}
.section-header h2 {
font-size: 2.2rem;
}
.section-icon {
font-size: 3rem;
}
.process-card {
padding: 2rem 1.5rem;
}
.process-number {
width: 60px;
height: 60px;
font-size: 1.6rem;
margin-bottom: 1rem;
}
.process-card h3 {
font-size: 1.2rem;
}
.process-card p {
font-size: 1rem;
line-height: 1.6;
}
} .objects-section {
background: #1a1a1a;
padding: 6rem 2rem;
}
.objects-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
margin-top: 3rem;
}
.object-card {
background: linear-gradient(145deg, #292929, #222);
padding: 3rem;
border-radius: 25px;
border: 2px solid #62929E;
transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
position: relative;
overflow: hidden;
cursor: pointer;
}
.object-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(165, 191, 19, 0.1) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
}
.object-card:hover {
transform: scale(1.03);
border-color: #A5BF13;
box-shadow: 0 15px 50px rgba(165, 191, 19, 0.25);
}
.object-card:hover::before {
opacity: 1;
}
.object-header {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 2rem;
position: relative;
z-index: 1;
}
.object-icon {
font-size: 4rem;
filter: drop-shadow(0 0 20px rgba(165, 191, 19, 0.3));
transition: transform 0.3s ease;
color: #A5BF13;
}
.object-card:hover .object-icon {
transform: scale(1.2) rotate(10deg);
}
.object-card h3 {
font-size: 2rem;
color: #A5BF13;
position: relative;
z-index: 1;
}
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin-top: 2rem;
position: relative;
z-index: 1;
}
.feature-badge {
background: rgba(98, 146, 158, 0.2);
padding: 0.8rem 1rem;
border-radius: 10px;
border-left: 3px solid #A5BF13;
color: #F0F0F0;
font-size: 0.95rem;
transition: background 0.3s ease, transform 0.3s ease;
}
.feature-badge:hover {
background: rgba(165, 191, 19, 0.2);
transform: translateX(5px);
} @media (max-width: 720px) {
.objects-section {
padding: 4rem 1.5rem;
}
.objects-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.object-card {
padding: 2rem;
}
.object-icon {
font-size: 3rem;
}
.object-card h3 {
font-size: 1.6rem;
}
.features-grid {
grid-template-columns: 1fr;
gap: 0.75rem;
margin-top: 1.5rem;
}
.feature-badge {
font-size: 0.9rem;
padding: 0.7rem 0.9rem;
}
} .benefits-section {
background: #292929;
padding: 6rem 2rem;
position: relative;
}
.benefits-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
90deg,
transparent,
transparent 100px,
rgba(165, 191, 19, 0.02) 100px,
rgba(165, 191, 19, 0.02) 101px
);
pointer-events: none;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.benefit-card {
background: #3a3a3a;
padding: 2.5rem 1.5rem;
border-radius: 15px;
text-align: center;
border: 1px solid #62929E;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.benefit-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0;
background: linear-gradient(to top, rgba(165, 191, 19, 0.2), transparent);
transition: height 0.4s ease;
}
.benefit-card:hover {
transform: translateY(-10px);
border-color: #A5BF13;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.benefit-card:hover::after {
height: 100%;
}
.benefit-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
display: block;
color: #A5BF13;
transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon {
transform: scale(1.15) rotate(-10deg);
}
.benefits-section h2 {
color: #A5BF13;
font-size: 2.5rem;
text-align: center;
margin-bottom: 2rem;
text-shadow: 0 0 20px rgba(165, 191, 19, 0.3);
}
.benefit-card h3 {
color: #A5BF13;
font-size: 1.1rem;
margin-bottom: 0.8rem;
position: relative;
z-index: 1;
}
.benefit-card p {
color: #D0D0D0;
font-size: 0.9rem;
line-height: 1.5;
position: relative;
z-index: 1;
} .cta-section {
background: linear-gradient(135deg, #1a1a1a 0%, #292929 50%, #1a1a1a 100%);
text-align: center;
padding: 8rem 2rem;
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(165, 191, 19, 0.1) 0%, transparent 70%);
animation: pulse-cta 4s ease-in-out infinite;
}
@keyframes pulse-cta {
0%, 100% {
transform: translate(-50%, -50%) scale(1);
opacity: 0.5;
}
50% {
transform: translate(-50%, -50%) scale(1.2);
opacity: 1;
}
}
.cta-content {
position: relative;
z-index: 1;
}
.cta-section h2 {
font-size: 3.5rem;
color: #A5BF13;
margin-bottom: 1.5rem;
text-shadow: 0 0 30px rgba(165, 191, 19, 0.4);
}
.cta-section p {
font-size: 1.3rem;
color: #D0D0D0;
margin-bottom: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.cta-button {
display: inline-block;
padding: 1.5rem 4rem;
background: linear-gradient(135deg, #A5BF13, #B8D420);
color: #292929;
font-size: 1.2rem;
font-weight: 700;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.4s ease;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
box-shadow: 0 10px 40px rgba(165, 191, 19, 0.4);
position: relative;
overflow: hidden;
}
.cta-button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.cta-button:hover::before {
width: 300px;
height: 300px;
}
.cta-button:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 60px rgba(165, 191, 19, 0.6);
}
.cta-button span {
position: relative;
z-index: 1;
} @media (max-width: 1024px) {
.objects-grid {
grid-template-columns: 1fr;
}
.benefits-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero-icon {
font-size: 4rem;
}
.hero-stats {
gap: 2rem;
}
.stat-number {
font-size: 2rem;
}
.section-header h2 {
font-size: 2rem;
}
.process-grid,
.features-grid,
.benefits-grid {
grid-template-columns: 1fr;
}
.cta-section h2 {
font-size: 2rem;
}
.cta-section p {
font-size: 1.1rem;
}
.cta-button {
padding: 1.2rem 3rem;
font-size: 1rem;
}
}
.hero {
background-image: linear-gradient(rgba(6, 18, 30, 0.55), rgba(6, 18, 30, 0.35)), url(//cascadeair.com.ua/assets/img/hero-montazh-7.jpg);
background-size: cover; background-position: center center; background-repeat: no-repeat; background-color: #071428; } .vent-steps {
background-color: #fff;
color: #1a1a1a;
padding-block: clamp(4rem, 8vw, 6rem);
}
.vent-steps__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
list-style: none;
padding: 0;
margin: 4rem 0;
counter-reset: step;
}
.vent-step {
background-color: #f5f5f5;
padding: 2rem;
border-radius: 14px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
text-align: center;
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vent-step:hover {
transform: translateY(-6px);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.vent-step::before {
counter-increment: step;
content: counter(step);
position: absolute;
top: -1.2rem;
left: 50%;
transform: translateX(-50%);
background-color: var(--accent);
color: #fff;
font-weight: 700;
font-size: 1rem;
padding: 0.4rem 0.8rem;
border-radius: 50px;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.vent-step__icon {
font-size: 2rem;
color: var(--accent);
margin-bottom: 1rem;
}
.vent-step__title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: #1a1a1a;
font-weight: 600;
}
.vent-step__desc {
font-size: 1rem;
color: #555;
line-height: 1.5;
} .centered {
text-align: center;
margin-top: 3rem;
}
.btn--primary {
background-color: var(--accent);
color: #fff;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: background 0.3s ease, transform 0.2s ease;
display: inline-block;
}
.btn--primary:hover {
background-color: #c3d94b;
transform: translateY(-2px);
}
.vent-steps h2 {
color: #a5bf13; } @media (max-width: 768px) {
.vent-step {
padding: 1.5rem;
}
.vent-step__icon {
font-size: 1.6rem;
}
.vent-step__title {
font-size: 1rem;
}
.vent-step__desc {
font-size: 0.95rem;
}
.vent-steps__grid {
grid-template-columns: 1fr;
}
}
.object-gallery {
padding: 60px 0;
background-color: #f9f9f9;
}
.object-gallery .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.object-gallery h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center;
font-weight: 600;
color: #A5BF13;
}
.object-photo-slider .swiper-slide {
display: flex;
justify-content: center;
align-items: center;
}
.object-photo-slider img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.object-photo-slider .swiper-slide {
display: flex;
justify-content: center;
align-items: center;
}
.object-photo-slider img {
height: 400px; width: auto; object-fit: cover; border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}.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}