/* Hero Section New Design */
.hero-section-new {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 50%, #3a7ca5 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home/hero-pattern.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.7);
    z-index: 1;
}

.hero-section-new .container {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-description {
    font-size: 18px;
    color: #e0e8f0;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-btn {
    background: #00a8e8;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.hero-btn:hover {
    background: #0087c1;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.3);
}

.hero-featured {
    margin-top: 40px;
}

.channel9-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.channel9-logos img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.featured-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    padding: 60px 0;
}

.stat-box {
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #265792;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

/* Services Cards Section */
.services-cards-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title-new {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-card-new {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #00a8e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-btn {
    color: #00a8e8;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #0087c1;
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .section-title-new {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-section-new {
        padding: 80px 0 60px;
    }
    
    .hero-main-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .channel9-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .featured-text {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .section-title-new {
        font-size: 28px;
    }
    
    .service-img-wrapper {
        height: 220px;
    }
}

/* Solar Miner Info Section */
.solar-miner-section {
    background: #ffffff;
    padding: 80px 0;
}

.service-icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    border-radius: 20px;
    border: 2px solid #00a8e8;
}

.service-icon-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
}

.service-icon-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ff8c00;
    margin: 0;
    line-height: 1.4;
}

.solar-miner-title {
    font-size: 36px;
    font-weight: 700;
    color: #0087c1;
    margin-bottom: 30px;
    line-height: 1.3;
}

.solar-miner-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 991px) {
    .solar-miner-section {
        padding: 60px 0;
    }
    
    .service-icons-row {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .service-icon-card {
        min-width: 150px;
        padding: 20px 25px;
    }
    
    .solar-miner-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .service-icons-row {
        gap: 15px;
    }
    
    .service-icon-card {
        min-width: 140px;
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon-card h4 {
        font-size: 16px;
    }
    
    .solar-miner-title {
        font-size: 24px;
    }
    
    .solar-miner-content p {
        font-size: 15px;
    }
}

/* Solar Packages Section */
.solar-packages-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.package-tab-btn {
    background: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-tab-btn:first-child {
    border-radius: 10px 0 0 10px;
}

.package-tab-btn:last-child {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.package-tab-btn.active {
    background: #ff8c00;
    color: #ffffff;
}

.package-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ff8c00;
}

.package-tab-btn:hover:not(.active) {
    background: rgba(255, 140, 0, 0.1);
}

.package-tab-content {
    display: none;
}

.package-tab-content.active {
    display: block;
}

.package-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
}

.package-size {
    font-size: 56px;
    font-weight: 800;
    color: #0087c1;
    margin: 0;
    line-height: 1;
}

.package-size sup {
    font-size: 24px;
    color: #0087c1;
}

.package-desc {
    font-size: 16px;
    color: #666;
    margin: 10px 0 0;
}

.package-savings {
    background: linear-gradient(135deg, #e6f7ff 0%, #cceeff 100%);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.savings-label {
    font-size: 14px;
    font-weight: 700;
    color: #0087c1;
    margin: 0 0 5px 0;
}

.savings-amount {
    font-size: 22px;
    font-weight: 800;
    color: #0087c1;
    margin: 0;
}

.package-specs {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.spec-item {
    text-align: center;
}

.spec-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.spec-item p {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.package-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-size: 20px;
    font-weight: bold;
}

.package-btn {
    background: #ff8c00;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.package-btn:hover {
    background: #e67e00;
    transform: scale(1.05);
}

.package-link {
    text-align: center;
    color: #0087c1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.package-link:hover {
    color: #006699;
    text-decoration: underline;
}

.package-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 30px;
    font-style: italic;
}

@media (max-width: 991px) {
    .solar-packages-section {
        padding: 60px 0;
    }
    
    .package-tab-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .package-size {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .package-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .package-tab-btn:first-child {
        border-radius: 10px 10px 0 0;
    }
    
    .package-tab-btn:last-child {
        border-radius: 0 0 10px 10px;
        border-left: 2px solid #ff8c00;
        border-top: none;
    }
    
    .package-tab-btn.active::after {
        display: none;
    }
    
    .package-size {
        font-size: 42px;
    }
    
    .package-card {
        margin-bottom: 20px;
    }
}
