/*
Theme Name: IPTV Review Pro
Theme URI: https://example.com/iptv-review-pro
Author: IPTV Review Pro
Author URI: https://example.com
Description: A lightweight, Elementor-optimized WordPress theme designed for IPTV service review blogs. Fully compatible with Elementor page builder with custom review post type support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-review-pro
Tags: elementor, reviews, blog, one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options
*/

/* === Reset & Base === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-primary: #1a1a2e;
    --color-primary-light: #16213e;
    --color-accent: #4ECDC4;
    --color-accent-hover: #3dbdb5;
    --color-gold: #FFC107;
    --color-orange: #FF6B35;
    --color-green: #2E7D32;
    --color-green-bg: #E8F5E9;
    --color-red: #C62828;
    --color-red-bg: #FFEBEE;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #E8E8E8;
    --color-bg: #F8F9FA;
    --color-white: #FFFFFF;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --max-width: 1200px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--color-accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-accent-hover); }
img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--color-primary); }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1em; }

/* WordPress Core */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute !important; width: 1px; word-wrap: normal !important;
}

/* ============ HEADER ============ */
.site-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .brand-icon { font-size: 24px; color: var(--color-accent); }
.site-title { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -0.5px; }
.site-title a { color: var(--color-white); text-decoration: none; }
.site-title a:hover { color: var(--color-accent); }
.site-description { display: none; }
.main-navigation { display: flex; align-items: center; gap: 8px; }
.primary-menu { list-style: none; display: flex; gap: 0; margin: 0; padding: 0; }
.primary-menu li { position: relative; }
.primary-menu li a {
    display: block; padding: 8px 18px; color: rgba(255,255,255,0.85);
    font-size: 15px; font-weight: 500; border-radius: var(--radius-sm); transition: all 0.3s ease;
}
.primary-menu li a:hover,
.primary-menu li.current-menu-item a,
.primary-menu li.current_page_item a { color: var(--color-white); background: rgba(78,205,196,0.15); }
.primary-menu li.current-menu-item a,
.primary-menu li.current_page_item a { color: var(--color-accent); }
.primary-menu .sub-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--color-white); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); min-width: 200px; padding: 8px 0; list-style: none; z-index: 100;
}
.primary-menu li:hover > .sub-menu { display: block; }
.primary-menu .sub-menu li a { color: var(--color-text); padding: 10px 20px; font-size: 14px; border-radius: 0; }
.primary-menu .sub-menu li a:hover { background: var(--color-bg); color: var(--color-accent); }
.header-cta .btn-cta {
    display: inline-block; background: var(--color-accent); color: var(--color-primary) !important;
    padding: 9px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; transition: all 0.3s ease;
}
.header-cta .btn-cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 12px; color: var(--color-white); font-size: 28px; line-height: 1;
    position: relative; z-index: 1001; min-width: 48px; min-height: 48px;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
@media (max-width: 900px) {
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    .main-navigation { display: none; }
    .main-navigation.toggled {
        display: flex; flex-direction: column; position: absolute;
        top: 70px; left: 0; right: 0; background: var(--color-primary);
        padding: 20px; box-shadow: var(--shadow-lg); z-index: 1000;
    }
    .primary-menu { flex-direction: column; width: 100%; }
    .primary-menu li a { padding: 12px 15px; }
    .header-cta { margin-top: 12px; }
}

/* ============ HERO SECTIONS ============ */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 60px 30px; text-align: center;
}
.page-hero h1 { color: var(--color-white); font-size: 2.5rem; margin-bottom: 12px; }
.page-hero .hero-subtitle { color: rgba(176,176,208,0.9); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }
.page-hero .hero-badge {
    display: inline-block; background: rgba(78,205,196,0.15); color: var(--color-accent);
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}

/* ============ HOMEPAGE ============ */
.home-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0f3460 60%, var(--color-primary-light) 100%);
    padding: 80px 30px 90px; text-align: center; position: relative; overflow: hidden;
}
.home-hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(78,205,196,0.08) 0%, transparent 70%); border-radius: 50%;
}
.home-hero h1 { color: var(--color-white); font-size: 3rem; max-width: 750px; margin: 0 auto 16px; line-height: 1.2; }
.home-hero .hero-sub { color: rgba(176,176,208,0.9); font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-block; background: var(--color-accent); color: var(--color-primary);
    padding: 14px 36px; border-radius: var(--radius-sm); font-weight: 700; font-size: 16px;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary:hover {
    background: var(--color-accent-hover); transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78,205,196,0.35); color: var(--color-primary);
}
.btn-outline {
    display: inline-block; border: 2px solid rgba(255,255,255,0.3); color: var(--color-white);
    padding: 12px 36px; border-radius: var(--radius-sm); font-weight: 600; font-size: 16px; transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); color: var(--color-white); }

.home-stats { display: flex; justify-content: center; gap: 60px; margin-top: 50px; flex-wrap: wrap; }
.home-stats .stat { text-align: center; }
.home-stats .stat-number { font-size: 2rem; font-weight: 800; color: var(--color-accent); }
.home-stats .stat-label { font-size: 0.875rem; color: rgba(176,176,208,0.8); margin-top: 4px; }

.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { font-size: 2rem; margin-bottom: 10px; }
.section-heading p { color: var(--color-text-light); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* ============ REVIEW CARDS ============ */
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px; max-width: var(--max-width); margin: 0 auto; padding: 0 30px;
}
.review-card {
    background: var(--color-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card-badge {
    display: inline-block; background: var(--color-orange); color: var(--color-white);
    padding: 4px 14px; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; border-radius: 0 0 var(--radius-sm) 0;
    position: absolute; top: 0; left: 0;
}
.review-card-header {
    padding: 25px 25px 15px; display: flex; justify-content: space-between;
    align-items: flex-start; position: relative;
}
.review-card-title { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); margin: 0; }
.review-card-title a { color: var(--color-primary); }
.review-card-title a:hover { color: var(--color-accent); }
.review-card-rating {
    display: flex; align-items: center; gap: 6px;
    background: var(--color-primary); color: var(--color-gold);
    padding: 6px 12px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; white-space: nowrap;
}
.review-card-rating .star { font-size: 14px; }
.review-card-body { padding: 0 25px 15px; flex: 1; }
.review-card-excerpt { color: var(--color-text-light); font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.review-card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.review-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-light); }
.review-meta-item .meta-icon { color: var(--color-accent); width: 16px; text-align: center; }
.review-meta-item .meta-value { font-weight: 600; color: var(--color-text); }
.review-card-footer {
    padding: 15px 25px 25px; display: flex; justify-content: space-between;
    align-items: center; border-top: 1px solid var(--color-border); margin-top: auto;
}
.review-card-price { font-size: 1.25rem; font-weight: 800; color: var(--color-primary); }
.review-card-price small { font-size: 0.75rem; font-weight: 400; color: var(--color-text-muted); }
.btn-review {
    display: inline-block; background: var(--color-accent); color: var(--color-primary);
    padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; transition: all 0.3s ease;
}
.btn-review:hover { background: var(--color-accent-hover); transform: translateY(-1px); color: var(--color-primary); }

/* ============ BLOG CARDS ============ */
.posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px; max-width: var(--max-width); margin: 0 auto; padding: 0 30px;
}
.post-card {
    background: var(--color-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-thumb {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    display: flex; align-items: center; justify-content: center; color: var(--color-accent); font-size: 48px;
}
.post-card-thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.post-card-category {
    font-size: 12px; font-weight: 600; color: var(--color-accent);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.post-card-title { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.post-card-title a { color: var(--color-primary); }
.post-card-title a:hover { color: var(--color-accent); }
.post-card-excerpt { color: var(--color-text-light); font-size: 14px; line-height: 1.6; flex: 1; margin-bottom: 0; }
.post-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--color-border);
}
.post-card-date { font-size: 13px; color: var(--color-text-muted); }
.post-card-link { font-size: 14px; font-weight: 600; color: var(--color-accent); }

/* ============ SINGLE REVIEW ============ */
.single-review-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 60px 30px 80px; text-align: center;
}
.single-review-hero .breadcrumb { font-size: 14px; color: rgba(176,176,208,0.7); margin-bottom: 15px; }
.single-review-hero .breadcrumb a { color: var(--color-accent); }
.single-review-hero h1 { color: var(--color-white); font-size: 2.5rem; margin-bottom: 15px; }
.review-stars { display: flex; gap: 4px; justify-content: center; font-size: 24px; color: var(--color-gold); }
.review-stars .empty { color: #555; }
.review-quick-info {
    max-width: 900px; margin: -50px auto 40px; background: var(--color-white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; position: relative; z-index: 10;
}
.quick-info-item { text-align: center; min-width: 110px; }
.quick-info-value { font-size: 1.25rem; font-weight: 700; color: var(--color-accent); }
.quick-info-label { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 4px; }
.single-review-content { max-width: 800px; margin: 0 auto; padding: 0 30px 60px; }
.single-review-content h2 { font-size: 1.5rem; margin: 35px 0 15px; padding-bottom: 10px; border-bottom: 2px solid var(--color-border); }
.single-review-content p { color: var(--color-text-light); line-height: 1.8; }
.score-bars { background: var(--color-bg); border-radius: var(--radius-md); padding: 25px; margin: 20px 0; }
.score-bar { margin-bottom: 16px; }
.score-bar:last-child { margin-bottom: 0; }
.score-bar-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; font-weight: 600; }
.score-bar-label { color: var(--color-text); }
.score-bar-value { color: var(--color-accent); }
.score-bar-track { background: #E0E0E0; border-radius: 10px; height: 10px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--color-accent), #3dbdb5); transition: width 1s ease; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 25px 0; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box,.cons-box { border-radius: var(--radius-md); padding: 25px; }
.pros-box { background: var(--color-green-bg); }
.cons-box { background: var(--color-red-bg); }
.pros-box h3 { color: var(--color-green); font-size: 1.1rem; margin-bottom: 12px; }
.cons-box h3 { color: var(--color-red); font-size: 1.1rem; margin-bottom: 12px; }
.pros-box ul,.cons-box ul { list-style: none; padding: 0; }
.pros-box li,.cons-box li { padding: 8px 0 8px 28px; position: relative; font-size: 14px; line-height: 1.5; color: var(--color-text); }
.pros-box li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-green); font-weight: 700; }
.cons-box li::before { content: '\2717'; position: absolute; left: 0; color: var(--color-red); font-weight: 700; }
.review-verdict {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-md); padding: 30px; margin: 30px 0; text-align: center;
}
.review-verdict h2 { color: var(--color-white) !important; border: none !important; margin-top: 0 !important; }
.review-verdict p { color: rgba(255,255,255,0.8) !important; }
.review-verdict .btn-primary { margin-top: 15px; }

/* ============ SINGLE POST ============ */
.single-post-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 60px 30px; text-align: center;
}
.single-post-hero .post-category-badge {
    display: inline-block; background: rgba(78,205,196,0.15); color: var(--color-accent);
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px;
}
.single-post-hero h1 { color: var(--color-white); font-size: 2.25rem; max-width: 700px; margin: 0 auto 15px; }
.single-post-hero .post-meta { color: rgba(176,176,208,0.7); font-size: 14px; }
.single-post-content { max-width: 750px; margin: 0 auto; padding: 50px 30px 60px; }
.single-post-content .entry-content { font-size: 17px; line-height: 1.8; color: #444; }
.single-post-content .entry-content h2 { margin-top: 35px; margin-bottom: 15px; }
.single-post-content .entry-content p { margin-bottom: 1.2em; }

/* ============ SECTIONS ============ */
.section { padding: 70px 30px; }
.section-light { background: var(--color-white); }
.section-gray { background: var(--color-bg); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.review-process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.process-step { padding: 30px 20px; }
.process-step .step-icon {
    width: 60px; height: 60px; background: rgba(78,205,196,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
    font-size: 24px; color: var(--color-accent);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--color-text-light); margin-bottom: 0; }
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0f3460 100%);
    padding: 60px 30px; text-align: center; border-radius: var(--radius-lg); margin: 0 30px;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 25px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-main {
    max-width: var(--max-width); margin: 0 auto; padding: 60px 30px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--color-accent); }
.footer-col p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: all 0.3s ease; }
.footer-links a:hover { color: var(--color-accent); padding-left: 5px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 30px; text-align: center;
    max-width: var(--max-width); margin: 0 auto; color: rgba(255,255,255,0.4); font-size: 13px;
}
.footer-bottom a { color: var(--color-accent); }

/* ============ 404 ============ */
.error-404 { text-align: center; padding: 80px 30px; max-width: 600px; margin: 0 auto; }
.error-404 .error-code { font-size: 8rem; font-weight: 900; color: var(--color-accent); line-height: 1; margin-bottom: 10px; }
.error-404 h1 { margin-bottom: 15px; }
.error-404 p { color: var(--color-text-light); margin-bottom: 25px; }
.search-form { display: flex; max-width: 450px; margin: 0 auto; }
.search-form .search-field {
    flex: 1; padding: 12px 18px; border: 2px solid var(--color-border); border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 15px; outline: none; font-family: var(--font-main);
}
.search-form .search-field:focus { border-color: var(--color-accent); }
.search-form .search-submit {
    background: var(--color-accent); color: var(--color-primary); border: none;
    padding: 12px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 700; cursor: pointer; font-family: var(--font-main); transition: background 0.3s ease;
}
.search-form .search-submit:hover { background: var(--color-accent-hover); }

/* ============ PAGINATION ============ */
.posts-navigation,.pagination { padding: 40px 30px; text-align: center; }
.nav-links { display: flex; justify-content: center; gap: 10px; }
.nav-links a,.nav-links span { display: inline-block; padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: all 0.3s ease; }
.nav-links a { background: var(--color-white); color: var(--color-text); box-shadow: var(--shadow-sm); }
.nav-links a:hover { background: var(--color-accent); color: var(--color-primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    h1 { font-size: 2rem; } h2 { font-size: 1.5rem; }
    .home-hero { padding: 50px 20px 60px; } .home-hero h1 { font-size: 2rem; }
    .home-stats { gap: 30px; }
    .reviews-grid,.posts-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .review-quick-info { margin: -30px 15px 30px; padding: 20px; }
    .single-review-content,.single-post-content { padding: 30px 20px 40px; }
    .single-review-hero h1,.single-post-hero h1 { font-size: 1.75rem; }
    .footer-main { padding: 40px 20px 30px; }
    .section { padding: 50px 20px; }
}

/* ============ APPS PAGE ============ */
.apps-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}
.app-card {
    background: var(--color-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-card-icon { font-size: 36px; margin-bottom: 12px; }
.app-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.app-card-platform {
    display: inline-block; font-size: 12px; font-weight: 600; color: var(--color-accent);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}
.app-card p { color: var(--color-text-light); font-size: 14px; line-height: 1.6; }
.app-features { list-style: none; padding: 0; margin-top: 12px; }
.app-features li {
    padding: 6px 0 6px 24px; position: relative; font-size: 13px;
    color: var(--color-text); line-height: 1.5;
}
.app-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }

/* ============ REQUEST REVIEW BUTTON ============ */
.btn-request-review {
    display: inline-block; background: var(--color-orange); color: var(--color-white) !important;
    padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
    transition: all 0.3s ease; border: none; cursor: pointer; text-decoration: none;
}
.btn-request-review:hover {
    background: #e5592d; transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.35); color: var(--color-white);
}
.request-review-section {
    background: linear-gradient(135deg, #FF6B35 0%, #e5592d 100%);
    padding: 50px 30px; text-align: center; border-radius: var(--radius-lg); margin: 0 30px;
}
.request-review-section h2 { color: var(--color-white); margin-bottom: 12px; }
.request-review-section p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 25px; }
.request-review-section .btn-primary {
    background: var(--color-white); color: var(--color-orange);
}
.request-review-section .btn-primary:hover {
    background: rgba(255,255,255,0.9); color: #e5592d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ============ LAST UPDATED BADGE ============ */
.post-updated-date {
    display: inline-block; background: rgba(78,205,196,0.15); color: var(--color-accent);
    padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
    margin-top: 10px;
}

/* ============ ELEMENTOR OVERRIDES ============ */
.elementor-page .site-header,
.elementor-page .site-footer { display: none; }
body.elementor-page { background: var(--color-white); }
