/* PremiumWP Custom Styles - wpfinal-inspired redesign */

/* ===== HEADER ===== */
.pwp-header-top {
    background: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}
.pwp-header-top .pwp-search {
    position: relative;
    max-width: 400px;
}
.pwp-header-top .pwp-search input {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 20px;
    padding-right: 40px;
    font-size: 14px;
    height: 40px;
}
.pwp-header-top .pwp-search button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
}
.pwp-header-top .pwp-login-link {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
.pwp-header-top .pwp-login-link i {
    margin-right: 5px;
}
.pwp-header-top .pwp-login-link:hover {
    color: var(--colorPrimary);
}

/* ===== HERO ===== */
.pwp-hero {
    background: var(--gradientColor);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}
.pwp-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.pwp-hero h1 span {
    color: #ffd700;
    font-size: inherit;
}
.pwp-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.pwp-hero .pwp-hero-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.pwp-hero .pwp-hero-search input {
    border-radius: 30px;
    padding: 15px 25px;
    padding-right: 130px;
    font-size: 16px;
    border: none;
    height: 55px;
}
.pwp-hero .pwp-hero-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 25px;
    padding: 0 30px;
}

/* ===== STATS COUNTERS ===== */
.pwp-stats {
    padding: 60px 0;
    background: #fff;
}
.pwp-stats .pwp-stat-item {
    text-align: center;
    padding: 20px;
}
.pwp-stats .pwp-stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--colorBlack);
    margin-bottom: 5px;
}
.pwp-stats .pwp-stat-item h3 span {
    font-size: inherit;
    color: inherit;
}
.pwp-stats .pwp-stat-item p {
    font-size: 16px;
    color: var(--paraColor);
}

/* ===== BRAND LOGOS ===== */
.pwp-brands {
    padding: 50px 0;
    background: #f8f9fa;
}
.pwp-brands .pwp-brand-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}
.pwp-brands .pwp-brand-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.pwp-brands .pwp-brand-item img {
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* ===== FEATURES GRID ===== */
.pwp-features {
    padding: 80px 0;
    background: #fff;
}
.pwp-features .pwp-feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}
.pwp-features .pwp-feature-card:hover {
    box-shadow: var(--boxShadow);
    border-color: transparent;
}
.pwp-features .pwp-feature-card .pwp-feature-icon {
    width: 70px;
    height: 70px !important;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0,0,255,0.08), rgba(0,134,255,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pwp-features .pwp-feature-card .pwp-feature-icon i {
    font-size: 28px;
    background: var(--gradientColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pwp-features .pwp-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.pwp-features .pwp-feature-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===== REVIEWS ===== */
.pwp-reviews {
    padding: 80px 0;
    background: #f8f9fa;
}
.pwp-reviews .pwp-review-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.pwp-reviews .pwp-review-card .pwp-stars {
    color: var(--ratingColor);
    margin-bottom: 15px;
}
.pwp-reviews .pwp-review-card .pwp-review-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}
.pwp-reviews .pwp-review-card .pwp-reviewer {
    font-weight: 600;
    color: var(--colorBlack);
    font-size: 15px;
}

/* ===== CTA SECTION ===== */
.pwp-cta {
    padding: 80px 0;
    background: var(--gradientColor);
    text-align: center;
    color: #fff;
}
.pwp-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.pwp-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.pwp-cta .pwp-cta-btn {
    background: #fff;
    color: #0056ff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}
.pwp-cta .pwp-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== FOOTER REDESIGN ===== */
.pwp-footer {
    background: #1a1a2e !important;
    padding-top: 60px;
}
.pwp-footer .pwp-footer-logo img {
    max-width: 180px;
    height: auto !important;
}
.pwp-footer .pwp-footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.7;
}
.pwp-footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.pwp-footer ul li {
    margin-bottom: 10px;
}
.pwp-footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s;
}
.pwp-footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}
.pwp-footer .pwp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}
.pwp-footer .pwp-footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
}
.pwp-footer .pwp-social-links a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.3s;
}
.pwp-footer .pwp-social-links a:hover {
    background: var(--colorPrimary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .pwp-hero h1 { font-size: 32px; }
    .pwp-stats .pwp-stat-item h3 { font-size: 32px; }
    .pwp-cta h2 { font-size: 28px; }
}
@media (max-width: 767px) {
    .pwp-hero { padding: 50px 0 40px; }
    .pwp-hero h1 { font-size: 26px; }
    .pwp-hero p { font-size: 15px; }
    .pwp-stats .pwp-stat-item h3 { font-size: 28px; }
    .pwp-brands .pwp-brand-item { min-height: 60px; padding: 15px; }
}


/* New homepage sections */
.pwp-section { padding: 80px 0; }
.pwp-section-alt { padding: 80px 0; background: #f8f9fa; }
