/* ===== General Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

/* Custom Container Width */
.container {
    max-width: 1400px !important;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px !important;
    }
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.section-title-small {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* ===== Hero Video Section ===== */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

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

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-video-section .hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-video-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-video-section .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-video-section .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-video-section .btn-hero {
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-video-section .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.hero-video-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hero-video-section .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-video-section .btn-outline-light:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-video-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-video-section .hero-title {
        font-size: 2.2rem;
    }

    .hero-video-section .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-video-section .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-video-section .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-video-section {
        height: 60vh;
        min-height: 450px;
    }

    .hero-video-section .hero-title {
        font-size: 1.8rem;
    }

    .hero-video-section .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== Header/Navigation ===== */
.main-header {
    position: relative;
    z-index: 1050;
}

.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08) !important;
    background: rgba(255,255,255,0.98) !important;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-name {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    max-height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: rotate(5deg);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.btn-nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 30px;
    padding: 10px 28px !important;
    margin-left: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
}

.btn-nav-cta::before {
    display: none;
}

.btn-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white !important;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Custom Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 8px;
    outline: none;
    position: relative;
    width: 40px;
    height: 40px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 2px;
    background: #667eea;
    display: block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: #667eea;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Sidebar Navigation */
@media (max-width: 991px) {
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: none;
    }

    .menu-overlay.show {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        padding: 0;
        transition: left 0.35s ease-in-out;
        box-shadow: 5px 0 40px rgba(0,0,0,0.3);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1051;
        display: block !important;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-collapse.show {
        left: 0 !important;
    }

    /* Sidebar Header */
    .navbar-collapse::before {
        content: '';
        display: block;
        height: 180px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }

    /* Close button in sidebar */
    .navbar-collapse .close-sidebar {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.25);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        color: white;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .navbar-collapse .close-sidebar:hover {
        background: rgba(255,255,255,0.35);
        transform: rotate(90deg);
        border-color: rgba(255,255,255,0.5);
    }

    /* Brand in Sidebar */
    .navbar-collapse::after {
        content: '☀️ SolarClean';
        position: absolute;
        top: 70px;
        left: 30px;
        color: white;
        font-size: 1.8rem;
        font-weight: 800;
        z-index: 5;
    }

    .navbar-nav {
        padding: 20px 0;
        align-items: stretch;
        margin-top: 0;
    }

    .navbar-nav .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }

    .navbar-nav .nav-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .navbar-nav .nav-item:hover::before,
    .navbar-nav .nav-item.active::before {
        transform: scaleY(1);
    }

    .navbar-nav .nav-link {
        color: #2c3e50;
        padding: 18px 30px;
        border-radius: 0;
        font-size: 1.05rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .navbar-nav .nav-link::before {
        content: '';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: #667eea;
        font-size: 1.1rem;
        display: none;
    }

    .navbar-nav .nav-item:nth-child(1) .nav-link::before {
        content: '\f015';
        display: inline-block;
    }

    .navbar-nav .nav-item:nth-child(2) .nav-link::before {
        content: '\f0ad';
        display: inline-block;
    }

    .navbar-nav .nav-item:nth-child(3) .nav-link::before {
        content: '\f05a';
        display: inline-block;
    }

    .navbar-nav .nav-item:nth-child(4) .nav-link::before {
        content: '\f02b';
        display: inline-block;
    }

    .navbar-nav .nav-item:nth-child(5) .nav-link::before {
        content: '\f164';
        display: inline-block;
    }

    .navbar-nav .nav-item:nth-child(6) .nav-link::before {
        content: '\f0e0';
        display: inline-block;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(102, 126, 234, 0.08);
        color: #667eea;
        padding-left: 35px;
    }

    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(102, 126, 234, 0.15) 0%, rgba(102, 126, 234, 0.05) 100%);
        color: #667eea;
    }

    .btn-nav-cta {
        margin: 25px 20px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        text-align: center;
        font-size: 1.1rem;
        padding: 15px 24px !important;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    }

    .btn-nav-cta:hover {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }

    /* Social Icons in Sidebar */
    .navbar-collapse .sidebar-footer {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 20px 30px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .sidebar-footer .social-icons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 15px;
    }

    .sidebar-footer .social-icons a {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .sidebar-footer .social-icons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .sidebar-footer .contact-info {
        text-align: center;
        font-size: 0.85rem;
        color: #7f8c8d;
    }

    .sidebar-footer .contact-info i {
        color: #667eea;
        margin-right: 5px;
    }
}

/* ===== Hero Slider Section ===== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.05), transparent);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-badge i {
    margin-right: 8px;
}

.section-divider {
    margin: 30px auto 50px;
    text-align: center;
}

.section-divider::before,
.section-divider::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    vertical-align: middle;
}

.divider-icon {
    display: inline-block;
    margin: 0 20px;
    color: #667eea;
    font-size: 1.2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.service-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.15) rotate(2deg);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-card:hover .overlay-content {
    transform: translateY(0);
}

.service-overlay i {
    color: white;
}

.service-body {
    padding: 35px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-rating {
    margin-bottom: 15px;
}

.service-rating i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.rating-text {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-left: 8px;
}

.service-description {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    font-size: 1.8rem;
    color: #667eea;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 700;
}

.highlight-item span {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #27ae60;
    margin-right: 12px;
    font-size: 1.1rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f1f3f5;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.btn-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
}

.btn-service i {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-price {
        text-align: center;
    }
    
    .btn-service {
        width: 100%;
        justify-content: center;
    }
}


/* ===== Vision & Mission Section ===== */
.vision-mission-section {
    padding: 80px 0;
    background: white;
}

.icon-box {
    display: inline-block;
}

.icon-box i {
    color: #667eea;
}

.vision-text,
.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.stats-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: #555;
}

.mission-list li i {
    color: #27ae60;
    margin-right: 10px;
}

/* ===== Cost Effective Section ===== */
.cost-effective-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pricing-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pricing-desc {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.pricing-value {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.roi-calculator {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.savings-info h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.savings-list {
    list-style: none;
    padding: 0;
}

.savings-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: white;
}

.savings-list li i {
    margin-right: 15px;
    color: #f39c12;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.trust-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-desc {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-rating {
    color: #f39c12;
    margin-bottom: 15px;
}

.testimonial-rating i {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Partners */
.partners-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
}

.faq-section.bg-light {
    background: #f8f9fa;
}

.faq-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-question.collapsed i {
    transform: rotate(0deg);
}

.faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-info-box h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info-box p {
    color: #7f8c8d;
    margin: 0;
}

.contact-info-box a {
    color: #667eea;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link-contact {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form .form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-submit-contact {
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 25px;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===== Footer Section ===== */
.footer-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #667eea;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form .input-group {
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #667eea;
}

.btn-newsletter {
    background: #667eea;
    color: white;
    border: none;
}

.btn-newsletter:hover {
    background: #764ba2;
}

.cert-badges img {
    max-width: 60px;
    filter: brightness(0) invert(1);
}

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

.copyright-text {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-slider-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-box .row {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

/* WhatsApp CTA Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    line-height: 60px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: "Chat with us!";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #128C7E;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* WhatsApp button responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 90px;
        right: 20px;
    }

    .whatsapp-float::before {
        display: none;
    }

    .whatsapp-float i {
        line-height: 55px;
    }
}
