.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding: 1.5rem 0;
}
.navbar.transparent {
background: transparent;
}
.navbar.scrolled {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
padding: 1rem 0;
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
} .logo {
font-size: 1.8rem;
font-weight: 700;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.8rem;
transition: all 0.3s ease;
}
.navbar.transparent .logo {
color: white;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled .logo {
color: #2c5f7f;
}
.logo-image,
.logo img,
.custom-logo {
height: 50px;
width: auto;
max-width: 228px;
object-fit: contain;
transition: all 0.3s ease;
filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}
.navbar.scrolled .logo-image,
.navbar.scrolled .logo img,
.navbar.scrolled .custom-logo {
height: 45px;
}
.logo:hover .logo-image,
.logo:hover img,
.logo:hover .custom-logo {
transform: scale(1.05);
}
.logo-text {
display: inline-block;
}
@media (max-width: 768px) {
.logo-image,
.logo img,
.custom-logo {
height: 40px;
max-width: 180px;
}
.navbar.scrolled .logo-image,
.navbar.scrolled .logo img,
.navbar.scrolled .custom-logo {
height: 35px;
}
.logo-text {
font-size: 1.2rem;
}
} .nav-links {
display: flex;
list-style: none;
gap: 2.5rem;
align-items: center;
}
.nav-links a {
text-decoration: none;
font-weight: 600;
font-size: 1rem;
position: relative;
transition: all 0.3s ease;
padding: 0.5rem 0;
}
.navbar.transparent .nav-links a {
color: white;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled .nav-links a {
color: #2c5f7f;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #4a9fd8;
transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}
.navbar.transparent .nav-links a:hover,
.navbar.transparent .nav-links a.active {
color: #4a9fd8;
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
color: #4a9fd8;
} .nav-cta {
background: linear-gradient(135deg, #4a9fd8, #2c5f7f) !important;
color: white !important;
padding: 0.8rem 2rem !important;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(74, 159, 216, 0.3);
text-shadow: none !important;
}
.nav-cta::after {
display: none;
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(74, 159, 216, 0.5);
} .burger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
z-index: 10000;
}
.burger span {
width: 28px;
height: 3px;
background: white;
border-radius: 3px;
transition: all 0.3s ease;
}
.navbar.scrolled .burger span {
background: #2c5f7f;
}
.burger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}
.burger.active span:nth-child(2) {
opacity: 0;
}
.burger.active span:nth-child(3) {
transform: rotate(-45deg) translate(8px, -8px);
} .dropdown {
position: relative;
}
.dropdown-content {
position: absolute;
top: 100%;
left: 0;
background: white;
min-width: 220px;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
padding: 1rem 0;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
margin-top: 1rem;
}
.dropdown:hover .dropdown-content {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown-content a {
display: block;
padding: 0.8rem 1.5rem;
color: #2c5f7f !important;
text-shadow: none !important;
transition: all 0.3s ease;
}
.dropdown-content a::after {
display: none;
}
.dropdown-content a:hover {
background: #4a9fd8;
color: white !important;
}
.dropdown > a::before {
content: '▼';
font-size: 0.7rem;
margin-left: 0.5rem;
transition: transform 0.3s ease;
display: inline-block;
}
.dropdown:hover > a::before {
transform: rotate(180deg);
}
@media (max-width: 1024px) {
.burger {
display: flex;
}
.nav-links {
position: fixed;
top: 0;
right: -100%;
height: 100vh;
width: 320px;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 3rem 2rem;
box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links.active {
right: 0;
}
.nav-links a {
color: #2c5f7f !important;
font-size: 1.2rem;
width: 100%;
text-shadow: none !important;
}
.nav-cta {
margin-top: 2rem;
text-align: center;
}
.dropdown-content {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background: rgba(74, 159, 216, 0.1);
margin: 0.5rem 0 0 1rem;
display: none;
}
.dropdown.active .dropdown-content {
display: block;
}
.dropdown > a::before {
content: '▶';
}
.dropdown.active > a::before {
transform: rotate(90deg);
}
} .home .site-content,
.home .content-area,
.home main {
max-width: 100% !important;
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
.home .sidebar,
.home .widget-area {
display: none !important;
}
.home .inside-article,
.home .entry-content,
.home article {
max-width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
.home .container.grid-container,
.home .site-content .grid-container {
max-width: 100% !important;
padding: 0 !important;
}
.home .ast-container,
.home .site-content .ast-container {
max-width: 100% !important;
padding: 0 !important;
}
.home .wp-block-group,
.home .wp-block-cover,
.home .wp-block-columns {
max-width: 100% !important;
}
.home body,
.home .site {
margin: 0 !important;
padding: 0 !important;
overflow-x: hidden;
}
.home #primary {
width: 100% !important;
max-width: 100% !important;
float: none !important;
}
.home #main {
width: 100% !important;
max-width: 100% !important;
}
.home .site-content {
display: block !important;
}
@media (max-width: 768px) {
.home .site-content,
.home .content-area {
padding: 0 !important;
}
}
.home .hero,
.home section {
margin: 0 !important;
width: 100vw !important;
max-width: 100vw !important;
} .site-footer {
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 100%);
color: white;
padding: 0;
margin-top: 2px;
border-top: 2px solid white;
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-column h3 {
color: white;
font-size: 1.2rem;
margin-bottom: 1.5rem;
font-weight: 700;
}
.footer-column p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.7;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #4a9fd8;
}
.footer-contact {
list-style: none;
padding: 0;
margin: 0;
}
.footer-contact li {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.footer-contact a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-contact a:hover {
color: #4a9fd8;
}
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social a {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
transition: all 0.3s ease;
}
.footer-social a:hover {
background: #4a9fd8;
transform: translateY(-3px);
}
.footer-social svg {
width: 20px;
height: 20px;
}
.footer-bottom {
padding: 2rem 0;
}
.footer-legal {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-legal p {
margin: 0;
color: rgba(255, 255, 255, 0.7);
}
.footer-legal-links {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
.footer-legal-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.3s ease;
font-size: 0.9rem;
}
.footer-legal-links a:hover {
color: #4a9fd8;
}
.footer-legal-links .separator {
color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-legal {
flex-direction: column;
text-align: center;
}
.footer-legal-links {
justify-content: center;
}
} .contact-hero {
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
padding: 4rem 2rem 3rem;
text-align: center;
color: white;
}
.contact-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 700;
}
.contact-hero p {
font-size: 1.3rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}
.contact-container {
max-width: 1200px;
margin: -2rem auto 0;
padding: 0 2rem 5rem;
position: relative;
z-index: 10;
}
.contact-layout {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 3rem;
align-items: start;
}
.contact-form-card {
background: white;
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.contact-form-card h2 {
color: #2c5f7f;
font-size: 2rem;
margin-bottom: 0.5rem;
}
.contact-form-card .subtitle {
color: #666;
margin-bottom: 1.5rem;
font-size: 1.05rem;
}
.contact-form-card form {
max-width: 100%;
}
.wpcf7-form p {
margin: 0 !important;
}
.wpcf7-form br {
display: none;
}
.wpcf7-form-control-wrap {
display: block;
width: 100%;
}
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.4rem;
color: #2c5f7f;
font-weight: 600;
font-size: 0.95rem;
}
.form-group label .required {
color: #e74c3c;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="file"],
.wpcf7-form select,
.wpcf7-form textarea {
width: 100%;
padding: 0.9rem;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
}
.wpcf7-form input[type="file"] {
padding: 0.7rem;
cursor: pointer;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
outline: none;
border-color: #4a9fd8;
box-shadow: 0 0 0 3px rgba(74, 159, 216, 0.1);
}
.wpcf7-form textarea {
resize: vertical;
min-height: 100px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1rem;
}
.form-col {
display: flex;
flex-direction: column;
}
.wpcf7-form .form-group {
margin-bottom: 1rem;
}
.wpcf7-form .form-group:last-of-type {
margin-bottom: 0;
}
.form-consent,
.consent-box {
margin: 1.2rem 0;
padding: 0.9rem;
background: #f8f9fa;
border-radius: 10px;
font-size: 0.9rem;
}
.wpcf7-form .wpcf7-acceptance {
display: flex;
align-items: start;
gap: 0.6rem;
}
.wpcf7-form input[type="checkbox"] {
margin-top: 0.2rem;
width: 18px;
height: 18px;
cursor: pointer;
}
.form-consent a,
.consent-box a {
color: #4a9fd8;
text-decoration: underline;
}
.wpcf7-form .wpcf7-submit,
.submit-btn {
width: 100%;
padding: 1.1rem;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(74, 159, 216, 0.3);
margin-top: 0.5rem;
}
.wpcf7-form .wpcf7-submit:hover,
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(74, 159, 216, 0.4);
}
.wpcf7-form .wpcf7-submit:active,
.submit-btn:active {
transform: translateY(0);
}
.wpcf7-response-output {
margin: 1rem 0 !important;
padding: 1rem !important;
border-radius: 10px !important;
border: none !important;
}
.wpcf7-mail-sent-ok {
background: #d4edda !important;
color: #155724 !important;
border: 2px solid #28a745 !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
background: #f8d7da !important;
color: #721c24 !important;
border: 2px solid #dc3545 !important;
}
.wpcf7-not-valid-tip {
color: #dc3545;
font-size: 0.85rem;
margin-top: 0.3rem;
}
.wpcf7-spinner {
margin-left: 1rem;
}
.contact-sidebar {
position: sticky;
top: 100px;
}
.trust-card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
margin-bottom: 2rem;
}
.trust-card h3 {
color: #2c5f7f;
font-size: 1.3rem;
margin-bottom: 1.5rem;
text-align: center;
}
.trust-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
margin-bottom: 0.8rem;
background: #f8f9fa;
border-radius: 10px;
}
.trust-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
flex-shrink: 0;
}
.trust-text {
flex: 1;
}
.trust-text strong {
display: block;
color: #2c5f7f;
margin-bottom: 0.2rem;
}
.trust-text span {
font-size: 0.9rem;
color: #666;
}
.direct-contact {
background: linear-gradient(135deg, #1a4d6b, #2c5f7f);
color: white;
border-radius: 20px;
padding: 2rem;
text-align: center;
}
.direct-contact h3 {
color: white;
font-size: 1.3rem;
margin-bottom: 1rem;
}
.direct-contact p {
opacity: 0.9;
margin-bottom: 1.5rem;
}
.direct-link {
display: block;
padding: 1rem;
background: white;
color: #2c5f7f;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
margin-bottom: 0.8rem;
transition: all 0.3s ease;
}
.direct-link:hover {
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.quick-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin: 3rem 0;
padding: 2rem;
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.urgency-badge {
display: inline-block;
background: #e74c3c;
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1rem;
}
@media (max-width: 968px) {
.contact-layout { grid-template-columns: 1fr; }
.contact-sidebar { position: static; }
.form-row { grid-template-columns: 1fr; }
.quick-stats { grid-template-columns: 1fr; gap: 1rem; }
.contact-hero h1 { font-size: 2rem; }
} .contact-map-section {
margin: 5rem 0 0;
padding: 0;
}
.map-header {
text-align: center;
margin-bottom: 3rem;
}
.map-header h2 {
color: #2c5f7f;
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
.map-header p {
color: #666;
font-size: 1.1rem;
}
.map-container {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
margin-bottom: 3rem;
}
.map-container iframe {
display: block;
width: 100%;
}
.map-info {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.map-info-item {
display: flex;
align-items: start;
gap: 1.5rem;
}
.map-info-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
flex-shrink: 0;
}
.map-info-text {
flex: 1;
}
.map-info-text strong {
display: block;
color: #2c5f7f;
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.map-info-text p {
color: #666;
margin: 0;
line-height: 1.6;
}
@media (max-width: 968px) {
.map-info { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
.map-header h2 { font-size: 2rem; }
.map-container iframe { height: 350px; }
} .enva-navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
background: transparent;
padding: 1rem 0;
}
.enva-navbar.scrolled {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
padding: 0.8rem 0;
}
.enva-nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 3rem;
}
.enva-logo {
display: flex;
align-items: center;
text-decoration: none;
transition: transform 0.3s ease;
flex-shrink: 0;
}
.enva-logo:hover { transform: scale(1.02); }
.enva-logo img,
.enva-logo .custom-logo {
height: 55px;
width: auto;
max-width: 240px;
object-fit: contain;
transition: all 0.3s ease;
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}
.enva-navbar.scrolled .enva-logo img,
.enva-navbar.scrolled .enva-logo .custom-logo { height: 48px; }
.enva-menu-wrapper {
display: flex;
align-items: center;
gap: 2rem;
flex: 1;
justify-content: flex-end;
}
.enva-menu {
display: flex;
list-style: none;
gap: 0.5rem;
margin: 0;
padding: 0;
}
.enva-menu > li { position: relative; }
.enva-menu > li > a {
display: flex;
align-items: center;
padding: 0.8rem 1.2rem;
color: white;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
border-radius: 10px;
position: relative;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.enva-navbar.scrolled .enva-menu > li > a { color: #2c5f7f; text-shadow: none; }
.enva-menu > li > a:hover,
.enva-menu > li.current-menu-item > a { background: rgba(74, 159, 216, 0.1); color: #4a9fd8; }
.enva-navbar.scrolled .enva-menu > li > a:hover,
.enva-navbar.scrolled .enva-menu > li.current-menu-item > a { background: rgba(74, 159, 216, 0.08); color: #4a9fd8; }
.enva-menu .sub-menu {
position: absolute;
top: calc(100% + 6px);
left: 0;
min-width: 240px;
background: linear-gradient(160deg, #1a4d6b 0%, #2c5f7f 100%);
border-radius: 12px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
padding: 0.5rem 0;
margin-top: 0;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all 0.25s ease;
list-style: none;
border: 1px solid rgba(255, 255, 255, 0.08);
}
.enva-menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.enva-menu .sub-menu li { margin: 0; }
.enva-menu .sub-menu li + li { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.enva-menu .sub-menu a {
display: block;
padding: 0.65rem 1.4rem;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
font-weight: 500;
font-size: 0.875rem;
transition: all 0.2s ease;
text-shadow: none;
white-space: nowrap;
}
.enva-menu .sub-menu a:hover {
background: rgba(255, 255, 255, 0.1);
color: white;
padding-left: 1.8rem;
}
.enva-menu > li.menu-item-has-children > a::after { content: '▼'; font-size: 0.65rem; margin-left: 0.4rem; transition: transform 0.25s ease; }
.enva-menu > li.menu-item-has-children:hover > a::after { transform: rotate(180deg); } .enva-menu .sub-menu .sub-menu {
position: absolute;
top: 0;
left: 100%;
margin-left: 6px;
min-width: 220px;
background: linear-gradient(160deg, #163d56 0%, #1a4d6b 100%);
border-radius: 12px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transform: translateX(-8px);
transition: all 0.25s ease;
list-style: none;
border: 1px solid rgba(255, 255, 255, 0.06);
}
.enva-menu .sub-menu li:hover > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateX(0);
} .enva-menu .sub-menu li.menu-item-has-children > a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.8rem;
}
.enva-menu .sub-menu li.menu-item-has-children > a::after {
content: '›';
font-size: 1.1rem;
line-height: 1;
opacity: 0.7;
flex-shrink: 0;
margin-left: auto;
} .enva-menu .sub-menu a {
display: flex;
align-items: center;
}
.enva-cta-btn {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.9rem 1.8rem;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
color: white;
text-decoration: none;
font-weight: 700;
font-size: 0.95rem;
border-radius: 50px;
box-shadow: 0 8px 25px rgba(74, 159, 216, 0.3);
transition: all 0.3s ease;
flex-shrink: 0;
}
.enva-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(74, 159, 216, 0.45); }
.enva-cta-icon { font-size: 1.1rem; }
.enva-burger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 10001;
transition: all 0.3s ease;
}
.enva-burger-line { width: 28px; height: 3px; background: white; border-radius: 3px; transition: all 0.3s ease; }
.enva-navbar.scrolled .enva-burger-line { background: #2c5f7f; }
.enva-burger.active .enva-burger-line:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.enva-burger.active .enva-burger-line:nth-child(2) { opacity: 0; }
.enva-burger.active .enva-burger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
.enva-mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 100%;
max-width: 400px;
height: 100vh;
background: white;
z-index: 10000;
transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
overflow-y: auto;
}
.enva-mobile-menu.active { right: 0; }
.enva-mobile-menu-content { padding: 6rem 2rem 3rem; }
.enva-mobile-nav { list-style: none; margin: 0; padding: 0; }
.enva-mobile-nav li { border-bottom: 1px solid rgba(74, 159, 216, 0.1); }
.enva-mobile-nav > li > a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.2rem 1rem;
color: #2c5f7f;
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
transition: all 0.3s ease;
}
.enva-mobile-nav > li > a:hover,
.enva-mobile-nav > li.current-menu-item > a { color: #4a9fd8; padding-left: 1.5rem; }
.enva-mobile-nav .sub-menu {
list-style: none;
padding: 0;
margin: 0;
background: rgba(74, 159, 216, 0.05);
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.enva-mobile-nav li.menu-item-has-children.active > .sub-menu { max-height: 500px; }
.enva-mobile-nav .sub-menu a {
display: block;
padding: 1rem 1.5rem 1rem 2rem;
color: #2c5f7f;
text-decoration: none;
font-size: 0.95rem;
transition: all 0.3s ease;
}
.enva-mobile-nav .sub-menu a:hover { color: #4a9fd8; padding-left: 2.5rem; }
.enva-mobile-nav > li.menu-item-has-children > a::after { content: '›'; font-size: 1.5rem; transition: transform 0.3s ease; }
.enva-mobile-nav > li.menu-item-has-children.active > a::after { transform: rotate(90deg); }
.enva-mobile-cta {
display: block;
margin-top: 2rem;
padding: 1.2rem;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
color: white;
text-align: center;
text-decoration: none;
font-weight: 700;
font-size: 1.05rem;
border-radius: 50px;
box-shadow: 0 8px 25px rgba(74, 159, 216, 0.3);
transition: all 0.3s ease;
}
.enva-mobile-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(74, 159, 216, 0.45); }
.enva-mobile-menu::before { display: none; }
@media (max-width: 1024px) {
.enva-menu-wrapper { display: none; }
.enva-burger { display: flex; }
}
@media (max-width: 768px) {
.enva-nav-container { padding: 0 1.5rem; }
.enva-logo img, .enva-logo .custom-logo { height: 45px; max-width: 180px; }
.enva-navbar.scrolled .enva-logo img, .enva-navbar.scrolled .enva-logo .custom-logo { height: 40px; }
.enva-mobile-menu { max-width: 100%; }
} .hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
color: white;
text-align: center;
padding: 8rem 2rem 4rem;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom center;
background-size: cover;
opacity: 0.3;
}
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.2); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.hero-title { font-size: 4rem; font-weight: 800; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); line-height: 1.2; }
.hero-subtitle { font-size: 1.5rem; opacity: 0.95; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 3rem; }
.hero-badge {
display: flex;
align-items: center;
gap: 0.8rem;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 1rem 1.5rem;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
}
.hero-badge:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-3px); }
.badge-icon { font-size: 1.5rem; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.services {
padding: 8rem 2rem;
background: linear-gradient(180deg, white 0%, #f0f7ff 100%);
position: relative;
overflow: hidden;
}
.services::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background:
radial-gradient(circle at 20% 30%, rgba(74, 159, 216, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(44, 95, 127, 0.08) 0%, transparent 50%);
pointer-events: none;
}
.section-header { text-align: center; max-width: 800px; margin: 0 auto 5rem; position: relative; z-index: 2; }
.section-title { font-size: 3rem; color: #2c5f7f; margin-bottom: 1rem; font-weight: 700; }
.section-subtitle { font-size: 1.2rem; color: #666; }
.services-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
position: relative;
z-index: 2;
}
.service-card-vertical { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; display: flex; flex-direction: column; }
.service-card-vertical:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
.service-card-image { width: 100%; height: 280px; overflow: hidden; position: relative; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-vertical:hover .service-card-image img { transform: scale(1.1); }
.service-card-content { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-content h3 { color: #2c5f7f; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.service-card-content p { color: #666; font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: #4a9fd8; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; align-self: flex-start; }
.service-card-link:hover { gap: 1rem; color: #2c5f7f; }
.why-enva { padding: 5rem 2rem; background: #f8f9fa; }
.why-enva h2 { text-align: center; color: #2c5f7f; font-size: 2.5rem; margin-bottom: 3rem; font-weight: 700; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.why-card { background: white; padding: 2.5rem; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }
.why-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.why-card h3 { color: #2c5f7f; font-size: 1.3rem; margin-bottom: 1rem; font-weight: 700; }
.why-card p { color: #666; line-height: 1.7; }
.stats-section { padding: 4rem 2rem; background: linear-gradient(135deg, #1a4d6b, #2c5f7f); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; color: white; }
.stat-label { font-size: 1.1rem; opacity: 0.9; font-weight: 600; }
.cta-section { padding: 5rem 2rem; background: white; }
.cta-container { max-width: 900px; margin: 0 auto; text-align: center; }
.cta-content h2 { color: #2c5f7f; font-size: 2.5rem; margin-bottom: 1rem; font-weight: 700; }
.cta-content p { color: #666; font-size: 1.2rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-button { display: inline-block; padding: 1.3rem 3rem; background: linear-gradient(135deg, #4a9fd8, #2c5f7f); color: white; text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 50px; box-shadow: 0 10px 30px rgba(74, 159, 216, 0.3); transition: all 0.3s ease; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(74, 159, 216, 0.4); }
@media (max-width: 968px) {
.hero-title { font-size: 2.5rem; }
.hero-subtitle { font-size: 1.2rem; }
.hero-badges { flex-direction: column; align-items: center; }
.hero-badge { width: 100%; max-width: 400px; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 640px) {
.hero { min-height: 80vh; padding: 6rem 1.5rem 3rem; }
.hero-title { font-size: 2rem; }
.hero-subtitle { font-size: 1.1rem; }
.stats-grid { grid-template-columns: 1fr; }
.stat-number { font-size: 2.5rem; }
}
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } }
@media (max-width: 768px) {
.services-grid { grid-template-columns: 1fr; }
.service-card-image { height: 240px; }
.service-card-content { padding: 2rem; }
.service-card-content h3 { font-size: 1.3rem; }
}  .page-template-default #primary,
.page-template-default #main,
.page-template-default .site-content,
.page-template-default .content-area,
.page-template-default .inside-article,
.page-template-default .entry-content,
.page-template-default article.page,
body:not(.home) #primary,
body:not(.home) #main,
body:not(.home) .inside-article,
body:not(.home) .entry-content {
background: transparent !important;
padding: 0 !important;
} .page-equipements {
background: linear-gradient(180deg, #ffffff 0%, #e8f4fd 40%, #f0f7ff 60%, #ffffff 100%);
position: relative;
overflow-x: hidden;
width: 100%;
display: block; min-height: 100vh;
} .page-equipements::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background:
radial-gradient(circle at 15% 25%, rgba(74, 159, 216, 0.13) 0%, transparent 40%),
radial-gradient(circle at 85% 55%, rgba(44, 95, 127, 0.13) 0%, transparent 40%),
radial-gradient(circle at 50% 85%, rgba(74, 159, 216, 0.09) 0%, transparent 40%);
pointer-events: none;
z-index: 0;
} .page-equipements .equipements-intro,
.page-equipements .services-grid,
.page-equipements .why-enva,
.page-equipements .cta-section {
background: transparent !important;
position: relative;
z-index: 1;
} .page-equipements .equipements-intro {
padding: 5rem 2rem 3rem;
text-align: center;
}
.page-equipements .equipements-intro h2 {
color: #2c5f7f;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.page-equipements .intro-text {
max-width: 900px;
margin: 0 auto;
font-size: 1.1rem;
line-height: 1.8;
color: #333;
} .page-equipements .services-grid {
padding: 1rem 2rem 5rem; } .page-equipements .services-grid .container,
.page-equipements .services-grid > .container {
max-width: 1400px !important;
margin: 0 auto !important;
padding: 0 !important;
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 2.5rem !important;
position: relative;
z-index: 2;
} @media (max-width: 1200px) {
.page-equipements .services-grid .container,
.page-equipements .services-grid > .container {
grid-template-columns: repeat(2, 1fr) !important;
}
}
@media (max-width: 700px) {
.page-equipements .services-grid .container,
.page-equipements .services-grid > .container {
grid-template-columns: 1fr !important;
}
} .page-equipements .service-card-vertical {
background: #ffffff;
border: 1px solid rgba(74, 159, 216, 0.15);
border-radius: 20px;
overflow: hidden;
box-shadow:
0 4px 6px rgba(74, 159, 216, 0.05),
0 10px 40px rgba(0, 0, 0, 0.07);
transition: all 0.35s ease;
display: flex;
flex-direction: column;
position: relative;
z-index: 1;
}
.page-equipements .service-card-vertical:hover {
transform: translateY(-10px);
box-shadow:
0 8px 16px rgba(74, 159, 216, 0.1),
0 20px 60px rgba(74, 159, 216, 0.2);
border-color: rgba(74, 159, 216, 0.3);
}
.page-equipements .service-card-image {
width: 100%;
height: 280px;
overflow: hidden;
position: relative;
background: #f0f5fa;
}
.page-equipements .service-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
transition: transform 0.5s ease;
display: block;
}
.page-equipements .service-card-vertical:hover .service-card-image img { transform: scale(1.08); }
.page-equipements .service-card-content {
padding: 2.5rem;
flex: 1;
display: flex;
flex-direction: column;
}
.page-equipements .service-card-content h3 { color: #2c5f7f; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.page-equipements .service-card-content p { color: #555; font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.page-equipements .service-card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: #4a9fd8; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; align-self: flex-start; }
.page-equipements .service-card-link:hover { gap: 1rem; color: #2c5f7f; } .page-equipements .why-enva { padding: 5rem 2rem; }
.page-equipements .why-enva h2 { text-align: center; color: #2c5f7f; font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; }
.page-equipements .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.page-equipements .why-card {
background: #ffffff;
border: 1px solid rgba(74, 159, 216, 0.15);
padding: 2.5rem;
border-radius: 20px;
text-align: center;
box-shadow: 0 4px 6px rgba(74, 159, 216, 0.05), 0 10px 30px rgba(0, 0, 0, 0.06);
transition: all 0.35s ease;
position: relative;
z-index: 1;
}
.page-equipements .why-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(74, 159, 216, 0.1), 0 15px 40px rgba(74, 159, 216, 0.18); border-color: rgba(74, 159, 216, 0.3); }
.page-equipements .why-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.page-equipements .why-card h3 { color: #2c5f7f; font-size: 1.3rem; margin-bottom: 1rem; font-weight: 700; }
.page-equipements .why-card p { color: #666; line-height: 1.7; } .page-equipements .stats-section {
padding: 4rem 2rem;
background: linear-gradient(135deg, #1a4d6b, #2c5f7f) !important;
color: white;
position: relative;
z-index: 1;
}
.page-equipements .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; max-width: 1200px; margin: 0 auto; }
.page-equipements .stat-item { padding: 1rem; }
.page-equipements .stat-number {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 0.5rem;
color: white !important;
background: none !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: white !important;
background-clip: unset !important;
}
.page-equipements .stat-label { font-size: 1.1rem; opacity: 0.9; font-weight: 600; color: white; } .page-equipements .cta-section { padding: 5rem 2rem; }
.page-equipements .cta-container { max-width: 900px; margin: 0 auto; text-align: center; }
.page-equipements .cta-content h2 { color: #2c5f7f; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.page-equipements .cta-content p { color: #666; font-size: 1.2rem; margin-bottom: 2rem; line-height: 1.7; }
.page-equipements .cta-button { display: inline-block; padding: 1.3rem 3rem; background: linear-gradient(135deg, #4a9fd8, #2c5f7f); color: white; text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 50px; box-shadow: 0 10px 30px rgba(74, 159, 216, 0.3); transition: all 0.3s ease; }
.page-equipements .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(74, 159, 216, 0.4); }
.page-equipements .container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; } @media (max-width: 1200px) { .page-equipements .services-grid .container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } }
@media (max-width: 768px) {
.page-equipements .services-grid .container { grid-template-columns: 1fr; }
.page-equipements .service-card-image { height: 240px; }
.page-equipements .service-card-content { padding: 2rem; }
.page-equipements .service-card-content h3 { font-size: 1.3rem; }
.page-equipements .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
.page-equipements .stats-grid { grid-template-columns: 1fr; }
.page-equipements .stat-number { font-size: 2.5rem; }
}  body.page-id-141 #primary,
body.page-id-141 #main,
body.page-id-141 .site-main,
body.page-id-141 article,
body.page-id-141 .inside-article,
body.page-id-141 .entry-content,
body.page-id-141 .entry-header {
background: transparent !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
max-width: 100% !important;
border: none !important;
} body.page-id-141 .page-equipements {
background: linear-gradient(180deg, #ffffff 0%, #e8f4fd 40%, #f0f7ff 60%, #ffffff 100%) !important;
min-height: 100vh;
width: 100%;
display: block;
} body.page-id-141 .page-equipements .equipements-intro,
body.page-id-141 .page-equipements .services-grid,
body.page-id-141 .page-equipements .why-enva,
body.page-id-141 .page-equipements .cta-section {
background: transparent !important;
border: none !important;
box-shadow: none !important;
} body.page-id-141 .page-equipements .stats-section {
background: linear-gradient(135deg, #1a4d6b, #2c5f7f) !important;
} body.page-id-141 .page-equipements .stat-number {
color: white !important;
-webkit-text-fill-color: white !important;
background: none !important;
}
body.page-id-141 .page-equipements .stat-label {
color: white !important;
}  .quick-stats .stat-number,
.quick-stats .stat-label {
color: #2c5f7f !important;
-webkit-text-fill-color: #2c5f7f !important;
background: none !important;
} body:not(.home) {
padding-top: 0 !important;
}
body:not(.home) .site,
body:not(.home) .site-main,
body:not(.home) .site-content,
body:not(.home) #primary,
body:not(.home) #main,
body:not(.home) .content-area,
body:not(.home) .grid-container {
padding-top: 0 !important;
margin-top: 0 !important;
}
body:not(.home) article.page,
body:not(.home) .inside-article,
body:not(.home) .entry-content {
padding-top: 0 !important;
margin-top: 0 !important;
}  .product-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
} .product-section {
margin: 5rem 0;
}
.product-section h2 {
color: #2c5f7f;
font-size: 2rem;
margin-bottom: 2rem;
font-weight: 700;
border-bottom: 3px solid #4a9fd8;
padding-bottom: 0.5rem;
}
.product-section h3 {
color: #1a4d6b;
font-size: 1.3rem;
margin: 2.5rem 0 1rem;
font-weight: 600;
}
.product-section p {
color: #444;
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 1.5rem;
} .content-with-image {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 4rem;
align-items: start;
margin: 3rem 0;
}
.product-image {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
} .pro-list {
list-style: none;
padding: 0;
margin: 1.5rem 0;
}
.pro-list li {
padding: 0.7rem 0 0.7rem 1.5rem;
border-bottom: 1px solid #f0f0f0;
color: #444;
font-size: 1.05rem;
line-height: 1.7;
position: relative;
}
.pro-list li::before {
content: '→';
position: absolute;
left: 0;
color: #4a9fd8;
font-weight: 700;
}
.pro-list li:last-child { border-bottom: none; }
.pro-list li strong { color: #2c5f7f; font-weight: 600; } .pro-list-disc {
list-style: disc;
padding-left: 2rem;
margin: 2rem 0;
}
.pro-list-disc li {
padding: 0.5rem 0;
margin-bottom: 0.5rem;
color: #444;
font-size: 1.05rem;
line-height: 1.7;
}
.pro-list-disc li strong { color: #2c5f7f; font-weight: 600; } .specs-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
background: white;
border: 1px solid #e0e0e0;
border-radius: 12px;
overflow: hidden;
}
.specs-table th {
background: #2c5f7f;
color: white;
padding: 1rem 1.2rem;
text-align: left;
font-weight: 600;
font-size: 1rem;
}
.specs-table td {
padding: 1rem 1.2rem;
border-bottom: 1px solid #e0e0e0;
color: #444;
font-size: 1rem;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c5f7f;
width: 35%;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: #f8f9fa; } .tech-block {
background: #f8f9fa;
border-left: 4px solid #4a9fd8;
padding: 2rem;
margin: 2rem 0;
border-radius: 0 12px 12px 0;
}
.tech-block h4 {
color: #2c5f7f;
margin-bottom: 1rem;
font-size: 1.15rem;
font-weight: 600;
}
.tech-block ul {
list-style: none;
padding: 0;
margin: 0;
}
.tech-block li {
padding: 0.5rem 0;
color: #444;
line-height: 1.7;
}
.tech-block p {
margin: 0;
color: #444;
line-height: 1.7;
}  .faq-item {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid #e8f4fd;
}
.faq-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.faq-question {
color: #2c5f7f;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.6rem;
line-height: 1.4;
}
.faq-answer {
color: #555;
line-height: 1.75;
font-size: 1rem;
} .product-cta {
background: linear-gradient(135deg, #1a4d6b 0%, #4a9fd8 100%);
padding: 6rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
margin: 5rem 0 0 0;
width: 100vw;
margin-left: calc(-50vw + 50%);
}
.product-cta::before {
content: '';
position: absolute;
width: 500px;
height: 500px;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
top: -250px;
right: -100px;
}
.product-cta::after {
content: '';
position: absolute;
width: 400px;
height: 400px;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
bottom: -200px;
left: -100px;
}
.product-cta-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
}
.product-cta h2 {
color: white;
font-size: 2.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
border: none !important;
}
.product-cta p {
color: rgba(255, 255, 255, 0.95);
font-size: 1.2rem;
line-height: 1.7;
margin-bottom: 2.5rem;
}
.product-cta-btn {
display: inline-block;
background: white;
color: #2c5f7f;
padding: 1.2rem 3rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.product-cta-btn:hover {
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
transform: translateY(-2px);
} @media (max-width: 768px) {
.content-with-image {
grid-template-columns: 1fr;
gap: 2rem;
}
.specs-table {
font-size: 0.9rem;
}
.specs-table th,
.specs-table td {
padding: 0.8rem;
}
.specs-table td:first-child {
width: auto;
}
.product-cta h2 {
font-size: 2rem;
}
.product-section h2 {
font-size: 1.6rem;
}
} html,
body {
overflow-x: hidden;
} .product-cta {
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
width: 100vw;
} .page-hero {
padding: 7rem 2rem 1.5rem;
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
color: white;
}
.page-hero .section-header {
color: white;
}
.page-hero .section-title {
color: white;
font-size: 2.4rem;
}
.page-hero .section-subtitle {
color: rgba(255, 255, 255, 0.9);
font-size: 1.05rem;
}
.hero-badges {
display: flex;
gap: 1.2rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 1.5rem;
}
.hero-badge-item {
display: flex;
align-items: center;
gap: 0.7rem;
background: rgba(255, 255, 255, 0.12);
padding: 0.8rem 1.5rem;
border-radius: 50px;
backdrop-filter: blur(10px);
font-weight: 600;
color: white;
} .video-wrapper {
max-width: 800px;
margin: 2rem auto;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
} .video-wrapper-small {
width: 300px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
margin: 2rem 0;
} .realisations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem 5rem;
}
.realisation-card {
position: relative;
border-radius: 16px;
overflow: hidden;
aspect-ratio: 4/3;
cursor: pointer;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.realisation-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.realisation-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
display: block;
}
.realisation-card:hover img {
transform: scale(1.07);
}
.realisation-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(26, 77, 107, 0.97) 0%,
rgba(44, 95, 127, 0.85) 50%,
rgba(74, 159, 216, 0.3) 100%
);
opacity: 0;
transition: opacity 0.35s ease;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 2rem;
}
.realisation-card:hover .realisation-overlay {
opacity: 1;
} .realisation-badge {
position: absolute;
bottom: 1rem;
left: 1rem;
background: rgba(26, 77, 107, 0.9);
color: white;
font-size: 0.8rem;
font-weight: 600;
padding: 0.35rem 0.9rem;
border-radius: 50px;
backdrop-filter: blur(8px);
transition: opacity 0.3s ease;
z-index: 1;
}
.realisation-card:hover .realisation-badge {
opacity: 0;
}
.realisation-overlay h3 {
color: white;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 0.5rem;
line-height: 1.3;
}
.realisation-overlay p {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 1.2rem;
}
.realisation-overlay .realisation-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: white;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
border: 2px solid rgba(255, 255, 255, 0.6);
padding: 0.5rem 1.2rem;
border-radius: 50px;
transition: all 0.3s ease;
align-self: flex-start;
}
.realisation-overlay .realisation-link:hover {
background: white;
color: #2c5f7f;
border-color: white;
}
@media (max-width: 768px) {
.realisations-grid {
grid-template-columns: 1fr;
padding: 0 1rem 3rem;
} .realisation-overlay {
opacity: 1;
background: linear-gradient(
to top,
rgba(26, 77, 107, 0.95) 0%,
transparent 60%
);
}
.realisation-badge { display: none; }
} .services-no-bottom {
padding-bottom: 0 !important;
} .product-image-small {
width: 100%;
max-width: 300px;
max-height: 300px;
object-fit: contain;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
margin: 0 auto;
display: block;
} .steps-list {
list-style: none;
padding: 0;
margin: 2rem 0;
}
.steps-list li {
padding: 1.2rem 0 1.2rem 0;
border-bottom: 1px solid #e8f4fd;
color: #444;
font-size: 1.05rem;
line-height: 1.8;
}
.steps-list li:last-child {
border-bottom: none;
}
.steps-list li strong {
color: #2c5f7f;
} .roadmap {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 0;
margin: 3rem -1rem;
position: relative;
overflow-x: visible;
padding: 1rem 1rem 2rem;
align-items: flex-start;
} .roadmap-step {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
min-width: 240px;
max-width: 320px;
position: relative;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.9s ease, transform 0.9s ease;
}
.roadmap-step.visible {
opacity: 1;
transform: translateY(0);
} .roadmap-step:nth-child(1) { transition-delay: 0s; }
.roadmap-step:nth-child(2) { transition-delay: 0.3s; }
.roadmap-step:nth-child(3) { transition-delay: 0.6s; }
.roadmap-step:nth-child(4) { transition-delay: 0.9s; }
.roadmap-step:nth-child(5) { transition-delay: 1.2s; }
.roadmap-step:nth-child(6) { transition-delay: 1.5s; } .roadmap-step::before {
content: '';
position: absolute;
top: 32px;
left: 50%;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #4a9fd8, #2c5f7f);
z-index: 0;
}
.roadmap-step:last-child::before {
display: none;
} .roadmap-number {
width: 64px;
height: 64px;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 800;
font-size: 1.3rem;
position: relative;
z-index: 1;
box-shadow: 0 4px 20px rgba(74, 159, 216, 0.4);
flex-shrink: 0;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.roadmap-step:hover .roadmap-number {
transform: scale(1.15);
box-shadow: 0 8px 30px rgba(74, 159, 216, 0.6);
} .roadmap-card {
background: white;
border-radius: 16px;
padding: 2rem;
margin-top: 1.5rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(74, 159, 216, 0.15);
text-align: center;
transition: all 0.3s ease;
width: 100%;
}
.roadmap-step:hover .roadmap-card {
box-shadow: 0 10px 35px rgba(74, 159, 216, 0.15);
border-color: rgba(74, 159, 216, 0.35);
transform: translateY(-4px);
}
.roadmap-card h3 {
color: #2c5f7f;
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.4;
}
.roadmap-card p {
color: #666;
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
} @media (max-width: 768px) {
.roadmap {
flex-direction: column;
align-items: center;
gap: 1.5rem;
}
.roadmap-step {
flex-direction: row;
align-items: flex-start;
gap: 1.2rem;
max-width: 100%;
min-width: unset;
width: 100%;
}
.roadmap-step::before {
top: 50%;
left: 28px;
width: 2px;
height: 100%;
background: linear-gradient(180deg, #4a9fd8, #2c5f7f);
}
.roadmap-card {
margin-top: 0;
text-align: left;
flex: 1;
}
} .enva-breadcrumb {
background: #f0f7ff;
padding: 0.6rem 2rem;
font-size: 0.82rem;
border-bottom: 1px solid #d6e8f5;
}
.enva-breadcrumb span,
.enva-breadcrumb a {
color: #4a9fd8;
text-decoration: none;
}
.enva-breadcrumb a:hover {
color: #1a4d6b;
text-decoration: underline;
}
.enva-breadcrumb .breadcrumb_last {
color: #888;
font-weight: 500;
} .enva-breadcrumb .separator {
color: #bbb;
margin: 0 0.3rem;
} .legal-hero {
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
padding: 7rem 2rem 4rem;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.legal-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
animation: slide 20s linear infinite;
}
@keyframes slide {
0% { transform: translate(0, 0); }
100% { transform: translate(100px, 100px); }
}
.legal-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
position: relative;
z-index: 2;
color: white;
}
.legal-hero p {
font-size: 1.2rem;
opacity: 0.9;
position: relative;
z-index: 2;
}
.legal-container {
max-width: 1200px;
margin: -3rem auto 4rem;
padding: 0 2rem;
position: relative;
z-index: 10;
}
.legal-card {
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
padding: 4rem;
margin-bottom: 2rem;
}
.legal-section {
margin-bottom: 3rem;
}
.legal-section h2 {
color: #2c5f7f;
font-size: 1.8rem;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 3px solid #4a9fd8;
display: inline-block;
}
.legal-section h3 {
color: #1a4d6b;
font-size: 1.3rem;
margin-top: 2rem;
margin-bottom: 1rem;
}
.legal-section p {
line-height: 1.8;
color: #555;
margin-bottom: 1rem;
}
.legal-section ul {
margin: 1rem 0 1rem 2rem;
}
.legal-section li {
margin-bottom: 0.8rem;
line-height: 1.7;
color: #555;
}
.legal-section strong { color: #2c5f7f; }
.legal-info-box {
background: linear-gradient(135deg, #f0f7ff 0%, #e3f2ff 100%);
border-left: 4px solid #4a9fd8;
padding: 1.5rem;
border-radius: 10px;
margin: 2rem 0;
}
.legal-info-box p { margin-bottom: 0.5rem; }
.legal-highlight {
background: #4a9fd8;
color: white;
padding: 0.2rem 0.6rem;
border-radius: 5px;
font-weight: 600;
}
.legal-contact {
background: linear-gradient(135deg, #1a4d6b 0%, #4a9fd8 100%);
color: white;
padding: 3rem;
border-radius: 15px;
text-align: center;
margin-top: 3rem;
}
.legal-contact h3 { color: white; margin-bottom: 1rem; }
.legal-contact a {
color: white;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid rgba(255,255,255,0.5);
transition: border-color 0.3s ease;
}
.legal-contact a:hover { border-color: white; }
.legal-nav-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.legal-nav-card {
background: linear-gradient(135deg, #f0f7ff, #e3f2ff);
padding: 2rem;
border-radius: 15px;
text-decoration: none;
color: #2c5f7f;
border-left: 4px solid #4a9fd8;
transition: transform 0.3s ease;
display: block;
}
.legal-nav-card:hover { transform: translateY(-4px); }
.legal-nav-card h3 { margin-bottom: 0.5rem; color: #2c5f7f; }
.legal-nav-card p { color: #666; margin: 0; }
@media (max-width: 768px) {
.legal-hero h1 { font-size: 2rem; }
.legal-card { padding: 2rem 1.5rem; }
} .legal-hero .update-date {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.8;
}
.rights-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.right-card {
background: linear-gradient(135deg, #f0f7ff, #ffffff);
border: 2px solid #e3f2ff;
border-radius: 15px;
padding: 1.5rem;
transition: all 0.3s ease;
}
.right-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(74, 159, 216, 0.2);
border-color: #4a9fd8;
}
.right-card h4 {
color: #2c5f7f;
margin-bottom: 0.5rem;
font-size: 1.1rem;
}
.right-card p {
color: #666;
font-size: 0.95rem;
margin: 0;
} .legal-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
}
.legal-table thead tr {
background: linear-gradient(135deg, #2c5f7f, #4a9fd8);
color: white;
}
.legal-table th {
padding: 1rem;
text-align: left;
}
.legal-table th:first-child { border-radius: 10px 0 0 0; }
.legal-table th:last-child { border-radius: 0 10px 0 0; }
.legal-table td {
padding: 1rem;
border-bottom: 1px solid #e3f2ff;
}
.legal-table tr:nth-child(odd) td { background: #f0f7ff; }
@media (max-width: 768px) {
.rights-grid { grid-template-columns: 1fr; }
} :root {
--enva-primary: #4a9fd8;
--enva-secondary: #2c5f7f;
--enva-dark: #1a4d6b;
--enva-light: #f0f7ff;
--enva-white: #ffffff;
}
.hero {
position: relative;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
}
.hero-slider {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
height: 100vh;
min-height: 600px;
z-index: 0;
}
.slide {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100vh;
min-height: 600px;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}
.slide::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(26,77,107,0.85) 0%, rgba(44,95,127,0.75) 50%, rgba(74,159,216,0.65) 100%);
}
.slider-controls {
position: absolute;
bottom: 100px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 1rem;
z-index: 3;
}
.slider-dot {
width: 12px; height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.4);
border: 2px solid white;
cursor: pointer;
transition: all 0.3s ease;
}
.slider-dot.active {
background: white;
width: 40px;
border-radius: 10px;
}
.slider-dot:hover { background: rgba(255,255,255,0.7); }
.hero::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(circle at 20% 50%, rgba(74,159,216,0.2) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(44,95,127,0.2) 0%, transparent 50%);
animation: pulse-hero 8s ease-in-out infinite;
z-index: 1;
}
@keyframes pulse-hero {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
.hero-shapes { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.shape {
position: absolute;
border-radius: 50%;
filter: blur(100px);
opacity: 0.3;
animation: float-shape 15s ease-in-out infinite;
}
.shape1 { width: 400px; height: 400px; background: var(--enva-primary); top: 10%; left: 10%; }
.shape2 { width: 300px; height: 300px; background: var(--enva-secondary); bottom: 20%; right: 15%; animation-delay: 3s; }
.shape3 { width: 250px; height: 250px; background: #4a9fd8; top: 50%; left: 50%; animation-delay: 6s; }
@keyframes float-shape {
0%, 100% { transform: translate(0,0) scale(1); }
33% { transform: translate(50px,-50px) scale(1.1); }
66% { transform: translate(-30px,30px) scale(0.9); }
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 1200px;
padding: 0 2rem;
}
.hero h1 {
font-size: 4rem;
font-weight: 700;
color: white;
margin-bottom: 1.5rem;
line-height: 1.2;
opacity: 0;
animation: slideUp 1s ease-out 0.3s forwards;
}
.hero h1 .highlight {
background: linear-gradient(90deg, #4a9fd8, #6bc5ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
display: inline-block;
}
.hero h1 .highlight::after {
content: '';
position: absolute;
bottom: -5px; left: 0;
width: 100%; height: 3px;
background: linear-gradient(90deg, #4a9fd8, #6bc5ff);
animation: expandWidth 1s ease-out 1s forwards;
transform: scaleX(0);
transform-origin: left;
}
@keyframes expandWidth { to { transform: scaleX(1); } }
.hero p {
font-size: 1.4rem;
color: rgba(255,255,255,0.9);
margin-bottom: 3rem;
opacity: 0;
animation: slideUp 1s ease-out 0.6s forwards;
}
@keyframes slideUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
opacity: 0;
animation: slideUp 1s ease-out 0.9s forwards;
}
.btn {
padding: 1.2rem 3rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
position: relative;
overflow: hidden;
cursor: pointer;
}
.btn-primary {
background: white;
color: var(--enva-secondary);
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.btn-primary::before {
content: '';
position: absolute;
top: 50%; left: 50%;
width: 0; height: 0;
border-radius: 50%;
background: var(--enva-primary);
transform: translate(-50%,-50%);
transition: width 0.6s, height 0.6s;
z-index: 0;
}
.btn-primary:hover::before { width: 300%; height: 300%; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(74,159,216,0.4); color: white; }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: var(--enva-secondary); transform: translateY(-3px); }
.scroll-indicator {
position: absolute;
bottom: 3rem; left: 50%;
transform: translateX(-50%);
animation: bounce-scroll 2s infinite;
z-index: 3;
cursor: pointer;
}
.scroll-indicator svg { width: 30px; height: 30px; stroke: white; fill: none; stroke-width: 2; }
@keyframes bounce-scroll {
0%, 20%, 50%, 80%, 100% { transform: translate(-50%,0); }
40% { transform: translate(-50%,-10px); }
60% { transform: translate(-50%,-5px); }
} .stats {
padding: 0;
margin-top: -40px;
position: relative;
z-index: 10;
}
.stats-container {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem 0;
} .why-us { padding: 8rem 2rem; background: white; overflow: hidden; }
.why-us-container {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
}
.why-us-content h2 { font-size: 3rem; color: var(--enva-secondary); margin-bottom: 2rem; font-weight: 700; }
.why-us-features { display: flex; flex-direction: column; gap: 2rem; }
.feature {
display: flex;
gap: 1.5rem;
align-items: flex-start;
padding: 2rem;
border-radius: 15px;
transition: all 0.3s ease;
opacity: 0;
transform: translateX(-50px);
}
.feature.visible { opacity: 1; transform: translateX(0); }
.feature:hover { background: var(--enva-light); transform: translateX(10px); }
.feature-icon {
width: 60px; height: 60px;
background: linear-gradient(135deg, var(--enva-primary), var(--enva-secondary));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
flex-shrink: 0;
}
.feature-content h3 { color: var(--enva-secondary); margin-bottom: 0.5rem; font-size: 1.3rem; }
.feature-content p { color: #666; line-height: 1.7; }
.why-us-visual { position: relative; height: 600px; }
.visual-shape {
position: absolute;
border-radius: 30px;
background: linear-gradient(135deg, var(--enva-primary), var(--enva-secondary));
opacity: 0.1;
}
.visual-shape-1 { width: 400px; height: 400px; top: 0; right: 0; animation: float-shape 10s ease-in-out infinite; }
.visual-shape-2 { width: 300px; height: 300px; bottom: 0; left: 0; animation: float-shape 12s ease-in-out infinite reverse; } .process { padding: 8rem 2rem; background: linear-gradient(180deg, var(--enva-light) 0%, white 100%); }
.process-container { max-width: 1200px; margin: 0 auto; }
.timeline { position: relative; padding: 3rem 0; }
.timeline::before {
content: '';
position: absolute;
left: 50%; top: 0; bottom: 0;
width: 3px;
background: linear-gradient(180deg, var(--enva-primary), var(--enva-secondary));
transform: translateX(-50%);
}
.timeline-item {
display: flex;
justify-content: flex-end;
padding-right: 50%;
position: relative;
margin-bottom: 4rem;
opacity: 0;
transform: translateX(-50px);
transition: all 0.8s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item:nth-child(even) {
justify-content: flex-start;
padding-left: 50%;
padding-right: 0;
transform: translateX(50px);
}
.timeline-item:nth-child(even).visible { transform: translateX(0); }
.timeline-content {
background: white;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
width: 90%;
transition: all 0.3s ease;
}
.timeline-content:hover { transform: scale(1.05); box-shadow: 0 20px 60px rgba(74,159,216,0.2); }
.timeline-content h3 { color: var(--enva-secondary); font-size: 1.5rem; margin-bottom: 1rem; }
.timeline-content p { color: #666; line-height: 1.7; }
.timeline-number {
position: absolute;
left: 50%; top: 50%;
transform: translate(-50%,-50%);
width: 60px; height: 60px;
background: linear-gradient(135deg, var(--enva-primary), var(--enva-secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
font-weight: 700;
box-shadow: 0 5px 20px rgba(74,159,216,0.4);
z-index: 2;
} .cta {
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
padding: 8rem 2rem;
position: relative;
overflow: hidden;
}
.cta::before {
content: '';
position: absolute;
inset: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
animation: slide-bg 20s linear infinite;
}
@keyframes slide-bg { 0% { transform: translate(0,0); } 100% { transform: translate(100px,100px); } }
.cta-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta h2 { font-size: 3.5rem; color: white; margin-bottom: 1.5rem; font-weight: 700; border: none !important; }
.cta p { font-size: 1.3rem; color: rgba(255,255,255,0.9); margin-bottom: 3rem; line-height: 1.8; } .fade-in { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); } @media (max-width: 1024px) {
.why-us-container { grid-template-columns: 1fr; gap: 3rem; }
.why-us-visual { height: 400px; }
.timeline::before { left: 30px; }
.timeline-item, .timeline-item:nth-child(even) { padding-left: 80px; padding-right: 0; justify-content: flex-start; }
.timeline-number { left: 30px; }
.timeline-content { width: 100%; }
}
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.hero p { font-size: 1.1rem; }
.hero-buttons { flex-direction: column; gap: 1rem; }
.btn { width: 100%; max-width: 300px; }
.cta h2 { font-size: 2rem; }
.cta p { font-size: 1.1rem; }
} .stat-number {
color: #2c5f7f !important;
-webkit-text-fill-color: #2c5f7f !important;
background: none !important;
-webkit-background-clip: unset !important;
background-clip: unset !important;
} .stats .stat-card .stat-number {
color: white !important;
-webkit-text-fill-color: white !important;
} .page-equipements .stat-number,
body.page-id-141 .page-equipements .stat-number {
color: white !important;
-webkit-text-fill-color: white !important;
}
.enva-mobile-menu-close {
position: absolute;
top: 1.5rem;
right: 1.5rem;
width: 40px;
height: 40px;
background: rgba(74, 159, 216, 0.1);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: #2c5f7f;
transition: all 0.3s ease;
}
.enva-mobile-menu-close:hover {
background: #4a9fd8;
color: white;
}
.stats {
background: white;
margin-top: -40px !important;
padding: 2rem 0;
}  .stats .stat-card {
background: linear-gradient(135deg, #1a4d6b, #2c5f7f) !important;
border-radius: 20px;
padding: 2.5rem 2rem;
text-align: center;
box-shadow: 0 15px 40px rgba(26, 77, 107, 0.3);
}
.stats .stat-card .stat-number {
color: white !important;
-webkit-text-fill-color: white !important;
background: none !important;
-webkit-background-clip: unset !important;
background-clip: unset !important;
font-size: 3rem;
font-weight: 800;
}
.stats .stat-card .stat-label {
color: rgba(255, 255, 255, 0.85) !important;
-webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
font-size: 0.95rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
@media (max-width: 900px) {
.stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
.stats-grid { grid-template-columns: 1fr; }
} .quick-stats .stat-number,
.quick-stats .stat-label {
color: #2c5f7f !important;
-webkit-text-fill-color: #2c5f7f !important;
background: none !important;
} .why-us {
background: linear-gradient(135deg, #1a4d6b 0%, #2c5f7f 50%, #4a9fd8 100%);
padding: 6rem 2rem;
overflow: hidden;
}
.why-us-container {
max-width: 1200px;
margin: 0 auto; display: block !important;
gap: unset !important;
} .why-us .section-header { margin-bottom: 4rem; }
.why-us .section-title { color: white !important; }
.why-us .section-subtitle { color: rgba(255, 255, 255, 0.8) !important; } .why-us-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
} .why-us-card {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 20px;
padding: 2.5rem 2rem;
text-align: center;
backdrop-filter: blur(10px);
transition: transform 0.3s ease, background 0.3s ease;
opacity: 0;
transform: translateY(30px);
}
.why-us-card.visible {
opacity: 1;
transform: translateY(0);
}
.why-us-card:hover {
transform: translateY(-6px);
background: rgba(255, 255, 255, 0.14);
} .why-us-icon {
width: 72px;
height: 72px;
background: rgba(255, 255, 255, 0.15);
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.8rem;
border: 1px solid rgba(255, 255, 255, 0.25);
transition: background 0.3s ease;
}
.why-us-card:hover .why-us-icon {
background: rgba(255, 255, 255, 0.25);
}
.why-us-icon svg {
width: 34px;
height: 34px;
stroke: white;
fill: none;
} .why-us-card h3 {
color: white !important;
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
}
.why-us-card p {
color: rgba(255, 255, 255, 0.85) !important;
font-size: 1rem;
line-height: 1.75;
margin: 0;
} .why-us-visual { display: none !important; } @media (max-width: 900px) {
.why-us-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
} .why-us-card {
opacity: 1;
transform: none;
}
} .process {
padding: 5rem 2rem;
background: linear-gradient(180deg, var(--enva-light) 0%, white 100%);
}
.process-container {
max-width: 1100px;
margin: 0 auto;
} .process-timeline {
display: flex;
align-items: flex-start;
gap: 0;
margin-top: 3rem;
} .process-step {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
text-align: center;
gap: 1.2rem;
} .process-dot {
width: 56px;
height: 56px;
background: linear-gradient(135deg, #4a9fd8, #2c5f7f);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 800;
font-size: 1.2rem;
flex-shrink: 0;
box-shadow: 0 6px 20px rgba(74, 159, 216, 0.35);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
z-index: 1;
}
.process-step:hover .process-dot {
transform: scale(1.15);
box-shadow: 0 10px 30px rgba(74, 159, 216, 0.5);
} .process-body h3 {
color: #2c5f7f;
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.process-body p {
color: #666;
font-size: 0.88rem;
line-height: 1.6;
margin: 0;
max-width: 180px;
} .process-connector {
flex: 0 0 60px;
height: 2px;
background: linear-gradient(90deg, #4a9fd8, #2c5f7f);
margin-top: 28px; opacity: 0.4;
} .timeline,
.timeline::before,
.timeline-item,
.timeline-content,
.timeline-number {
all: unset;
} @media (max-width: 768px) {
.process-timeline {
flex-direction: column;
align-items: flex-start;
gap: 0;
}
.process-step {
flex-direction: row;
text-align: left;
align-items: flex-start;
gap: 1.2rem;
padding: 1rem 0;
}
.process-body p {
max-width: 100%;
}
.process-connector {
width: 2px;
height: 30px;
flex: 0 0 30px;
margin-top: 0;
margin-left: 27px; background: linear-gradient(180deg, #4a9fd8, #2c5f7f);
}
} .btn-primary {
background: white;
color: var(--enva-secondary);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
border: 2px solid white;
transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
} .btn-primary::before {
display: none !important;
}
.btn-primary span {
position: static;
z-index: auto;
}
.btn-primary:hover {
background: transparent;
color: white;
border-color: white;
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}  .stats + .services::before,
.stats-container + hr,
.stats + hr {
display: none !important;
} .services {
position: relative;
}
.services::before {
content: '';
display: block;
width: 240px;
height: 4px;
background: linear-gradient(90deg, #4a9fd8, #2c5f7f);
border-radius: 4px;
margin: 0 auto 5rem;
position: relative;
top: 0;
}