/*
Theme Name: Vestech Solar
Theme URI: https://vestech.com
Author: Your Name
Author URI: https://vestech.com
Description: Custom WordPress theme for Vestech Solar Company
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vestech
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    top: 0;
}

/* Admin bar adjustment */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header .header-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid white;
}

.site-logo{
    padding-left: 20px;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
}

/* Logo switching on scroll (only for light mode) */
.site-header[data-mode="light"].scrolled .header-logo-light {
    opacity: 0;
}

.site-header[data-mode="light"].scrolled .header-logo-dark {
    opacity: 1;
}

/* Navigation styling */
.main-navigation a {
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #858FF5;
}

/* Light mode - Menu starts white, changes to black on scroll */
.site-header[data-mode="light"] .main-navigation a {
    color: #fff;
}

.site-header[data-mode="light"].scrolled .main-navigation a {
    color: #333;
}

/* Dark mode - Menu stays black always */
.site-header[data-mode="dark"] .main-navigation a {
    color: #333;
}

.site-header[data-mode="dark"].scrolled .main-navigation a {
    color: #333;
}

/* Hover color for both modes */
.site-header .main-navigation a:hover {
    color: #858FF5;
}

/* Current page indicator */
.site-header .main-navigation .current-menu-item > a,
.site-header .main-navigation .current_page_item > a {
    color: #858FF5;
}

/* Light mode current page */
.site-header[data-mode="light"] .main-navigation .current-menu-item > a,
.site-header[data-mode="light"] .main-navigation .current_page_item > a {
    color: #858FF5;
}

/* Dark mode current page */
.site-header[data-mode="dark"] .main-navigation .current-menu-item > a,
.site-header[data-mode="dark"] .main-navigation .current_page_item > a {
    color: #858FF5;
}

/* Mobile Menu Styles */
.mobile-menu-sidebar {
    max-width: 100%;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu .current-menu-item a {
    color: #858FF5;
}

/* Prevent body scroll when mobile menu is open */
body.overflow-hidden {
    overflow: hidden;
}

/* Mobile Hamburger Color Handling */
.site-header[data-mode="light"] .mobile-menu-toggle {
    color: #fff;
}

.site-header[data-mode="light"].scrolled .mobile-menu-toggle {
    color: #333;
}

.site-header[data-mode="dark"] .mobile-menu-toggle {
    color: #858FF5;
}

/* Journey Mobile Slider */
.journey-mobile-slider {
    position: relative;
    touch-action: pan-y;
    width: 100%;
    overflow: hidden;
}

.journey-slider-track {
    display: flex;
    transition: transform 0.3s ease-out;
}

.journey-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .journey-slide {
        width: auto;
        flex: initial;
    }
}

.journey-progress-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.journey-progress-dot.active {
    width: 3rem;
    background-color: #858FF5;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    gap: 10px;
    max-width: 500px;
    background: #fff;
    padding: 8px;
    border-radius: 30px;
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
}

.hero-search button {
    background: #1e40af;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-search button:hover {
    background: #1e3a8a;
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 40px;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    min-width: 250px;
}

.hero-stats p {
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 10px;
}

.progress-label {
    font-size: 12px;
    color: #666;
}

/* Features Section */
.features-section {
    background: #1e293b;
    color: #fff;
    padding: 80px 40px;
}

.container {
    margin: 0 auto;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.features-header p {
    max-width: 400px;
    opacity: 0.8;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
}

.feature-item p {
    opacity: 0.7;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding: 80px 40px;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

/* Journey Section */
.journey-section {
    padding: 80px 40px;
    background: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
}

.journey-grid {
    display: grid;
    gap: 40px;
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-item:nth-child(even) {
    direction: rtl;
}

.journey-item:nth-child(even) .journey-content {
    direction: ltr;
}

.journey-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.journey-content p {
    color: #666;
    line-height: 1.8;
}

.journey-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Suitability Section */
.suitability-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
}

.suitability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.suitability-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.btn-submit {
    background: #fff;
    color: #1e40af;
    padding: 14px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 40px;
    background: #2d3748;
    color: #fff;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    order: -1;
}

.testimonials-label {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-width: 400px;
}

.testimonial-image-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    min-height: 400px;
    margin-top: 20px;
}

.testimonial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
    visibility: hidden;
}

.testimonial-image.active {
    opacity: 1 !important;
    z-index: 1;
    visibility: visible !important;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-badge {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    width: fit-content;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.testimonial-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0 !important;
    transform: translateX(50px) !important;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    pointer-events: none;
    visibility: hidden;
}

.testimonial-card.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto;
    visibility: visible;
}

.testimonial-card.slide-out-left {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
    visibility: visible;
}

.testimonial-card.slide-out-right {
    opacity: 0 !important;
    transform: translateX(50px) !important;
    visibility: visible;
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #858FF5;
    font-weight: 500;
}

.testimonial-service {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin: 10px 0;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}

.testimonial-nav {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-nav button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* App Section */
.app-section {
    padding: 80px 40px;
    background: #fff;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-image img {
    max-width: 400px;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.app-feature {
    display: flex;
    align-items: start;
    gap: 15px;
}

.app-feature-icon {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.qr-downloads {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.qr-code img {
    width: 120px;
    height: 120px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-buttons img {
    height: 40px;
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: #fff;
    color: #3b82f6;
    padding: 16px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 40px 40px;
}

/* Footer Top Section - Logo & Contact */
.footer-top {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-logo-section {
    grid-column: 1 / 2;
}

.footer-contact-info {
    grid-column: 2 / 5;
}

.footer-logo-section .footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.footer-logo-text .logo-icon {
    color: #6B7FD7;
    font-size: 28px;
}

.footer-contact-info {
    text-align: left;
}

.footer-phone,
.footer-email {
    font-size: 18px;
    color: #333;
    margin: 5px 0;
    font-weight: 500;
}

.footer-phone a,
.footer-email a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #6B7FD7;
}

/* Footer Divider */
.footer-divider {
    margin: 0 auto;
    border: none;
    border-top: 1px solid #e0e0e0;
}

/* Footer Bottom Content - 4 Columns */
.footer-bottom-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 40px 0;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.footer-tagline p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-menu li a {
    color: #7a8599;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #333;
}

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

.footer-social-links li a {
    color: #7a8599;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-social-links li a:hover {
    color: #333;
}

.footer-social-links .social-icon {
    width: 18px;
    height: 18px;
}

/* Footer Copyright */
.footer-copyright {
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.back-to-top {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: #6B7FD7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .features-content,
    .journey-item,
    .suitability-content,
    .testimonials-content,
    .app-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-top{
        display: block;
    }

    .footer-contact-info {
        margin-top: 15px;
    }

    .main-navigation {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
    }

    .testimonial-image-slider{
        min-height: 250px;
    }

    .testimonials-left-mobile{
        margin-top: 2rem;
    }

    .testimonials-title{
        font-size: 35px;
        font-weight: normal;
    }

    .testimonials-left-mobile{
        margin-top: 0;
    }
}

/* Contact Form Section - Match Image Height to Form Height */
.contact-form-section .h-full img {
    height: 100%;
    object-fit: cover;
}

.contact-form-container{
    padding: 4rem;
    border-radius: 20px;
    background-color: rgba(224,234,237,.4);
}

/* Button Professional Hover Animation */
.bg-gradient-to-r,
button[type="submit"].bg-gradient-to-r,
.inline-block.bg-gradient-to-r,
a.bg-gradient-to-r,
.block.bg-gradient-to-r {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(105, 201, 209, 0.2) !important;
}

/* Force inline-block only for inline elements */
a.bg-gradient-to-r:not(.block):not(.inline-block) {
    display: inline-block !important;
}

/* Ensure button text stays on top */
.bg-gradient-to-r > * {
    position: relative !important;
    z-index: 2 !important;
}

/* Shine effect - triggers on hover */
.bg-gradient-to-r::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -150% !important;
    width: 80% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    ) !important;
    transform: skewX(-20deg) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    transition: left 0.6s ease !important;
}

/* Trigger shine on hover */
.bg-gradient-to-r:hover::before {
    left: 150% !important;
}

/* Glow border layer */
.bg-gradient-to-r::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: inherit !important;
    padding: 2px !important;
    background: linear-gradient(135deg, #69C9D1, #858FF5, #A895EA) !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    opacity: 0 !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: -1 !important;
}

/* Hover effects */
.bg-gradient-to-r:hover {
    box-shadow:
        0 8px 25px rgba(105, 201, 209, 0.3),
        0 0 20px rgba(133, 143, 245, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    filter: brightness(1.1) saturate(1.1) !important;
}

.bg-gradient-to-r:hover::after {
    opacity: 1 !important;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* White Button Smooth Gradient Hover */
.bg-white.rounded-full {
    position: relative !important;
    overflow: hidden !important;
    transition: color 0.6s ease !important;
    isolation: isolate !important;
}

/* Gradient layer underneath */
.bg-white.rounded-full::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, #69C9D1, #858FF5, #A895EA) !important;
    border-radius: inherit !important;
    opacity: 0 !important;
    transition: opacity 0.6s ease !important;
    z-index: -1 !important;
}

/* Text stays on top */
.bg-white.rounded-full > *,
.bg-white.rounded-full {
    position: relative !important;
    z-index: 1 !important;
}

/* Fade in gradient and change text to white on hover */
.bg-white.rounded-full:hover::before {
    opacity: 1 !important;
}

.bg-white.rounded-full:hover,
.bg-white.rounded-full:hover *,
.bg-white.rounded-full:hover span {
    color: white !important;
}

/* Journey Section - Sticky Scroll Stacking Effect (Desktop Only) */
@media (min-width: 768px) {
    .journey-sticky-container {
        position: relative;
    }

    .journey-sticky-step {
        position: sticky;
        top: 100px;
        margin-bottom: 4rem;
    }

    .journey-sticky-step[data-step="1"] {
        z-index: 1;
    }

    .journey-sticky-step[data-step="2"] {
        z-index: 2;
    }

    .journey-sticky-step[data-step="3"] {
        z-index: 3;
    }

    .journey-sticky-step[data-step="4"] {
        z-index: 4;
    }

    .journey-sticky-step[data-step="5"] {
        z-index: 5;
    }
}

/* Prevent ScrollReveal from hiding slider content */
.journey-mobile-slider .journey-slide,
.journey-mobile-slider .journey-slide *,
.journey-mobile-slider .journey-slide img,
.journey-mobile-slider .journey-slide h3,
.journey-mobile-slider .journey-slide p,
.journey-mobile-slider .journey-slide div,
.power-slide,
.power-slide *,
.power-slide img,
.power-slide h2,
.power-slide h3,
.power-slide p,
.power-slide div,
.plan-slide,
.plan-slide *,
.plan-slide img,
.plan-slide h3,
.plan-slide p,
.plan-slide div {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}