/* Sara Bets - Main Stylesheet */
:root {
    /* Emerald/Charcoal palette to match AS green logo */
    --primary-color: #16a34a; /* Emerald 600 */
    --secondary-color: #22c55e; /* Emerald 500 */
    --accent-color: #0f766e; /* Teal accent for subtle contrast */
    --dark-color: #0b1220; /* Charcoal */
    --light-color: #f6f9f7; /* Soft off-white */
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --text-color: #333;
    --text-light: #f8f9fa;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    margin: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn i {
    margin-right: 8px;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn.primary:hover {
    background-color: #15803d; /* darker emerald */
    transform: translateY(-3px);
}

.hero-cta .btn.primary, .cta-buttons .btn.primary {
    background-color: var(--secondary-color);
    color: white;
}

.hero-cta .btn.primary:hover, .cta-buttons .btn.primary:hover {
    background-color: #16a34a;
}

.btn.secondary {
    background-color: var(--dark-color);
    color: white;
}

.btn.secondary:hover {
    background-color: #111827; /* slate */
    transform: translateY(-3px);
}

.btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.btn.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.center {
    text-align: center;
    margin: 0 auto;
    display: block;
}

/* Header Styles */
header {
    background: radial-gradient(1000px 400px at 50% -100px, rgba(34, 197, 94, 0.25), transparent 60%),
                linear-gradient(135deg, #0b1220 0%, #0e1726 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="none"/><rect width="1" height="1" fill="rgba(255,255,255,0.05)" x="0" y="0"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 20px;
}

.hero-logo {
    max-height: 140px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.3);
    border: 4px solid rgba(34, 197, 94, 0.15);
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.header-text h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: 1px;
    color:white;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    margin-top: 30px;
    margin-bottom: 40px;
}

.btn.glow {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(185, 144, 82, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 144, 82, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(185, 144, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(185, 144, 82, 0);
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 15px 0;
    border-radius: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Premium Rates Section */
.premium-rates {
    padding: 80px 0;
    background-color: white;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.rate-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

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

.rate-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.rate-item:last-child {
    border-bottom: none;
}

.game-name {
    font-weight: 500;
}

.rate-value {
    font-weight: 700;
    color: var(--accent-color);
}

/* Game Rates Section */
.game-rates {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%), 
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><rect width="1" height="1" fill="rgba(0,0,0,0.03)" x="0" y="0"/></svg>');
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    position: relative;
    height: 2px;
    background-color: #e0e0e0;
    max-width: 300px;
    margin: 0 auto 20px;
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8f9fa;
    padding: 0 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.rates-table-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rates-table {
    width: 100%;
    background-color: white;
}

.rates-table-header {
    display: flex;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rates-table-header .rate-column:first-child {
    flex: 2;
    justify-content: flex-start;
}

.rates-table-header .rate-column:not(:first-child) {
    justify-content: center;
}

.rates-table-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    transition: var(--transition);
}

.rates-table-row:hover {
    background-color: rgba(34, 197, 94, 0.08);
}

.rates-table-row:last-child {
    border-bottom: none;
}

.rates-table-row.highlight {
    background-color: rgba(34, 197, 94, 0.12);
}

.rates-table-row.highlight:hover {
    background-color: rgba(34, 197, 94, 0.18);
}

.rate-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.rates-table-row .rate-column:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.game-type {
    font-weight: 600;
    color: var(--dark-color);
    flex: 2;
}

.game-type i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.win-amount {
    font-weight: 700;
    color: #0b1220;
    font-size: 1.1rem;
}

.min-bet {
    text-align: center;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
}

/* Mobile Features Section */
.mobile-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #052014 0%, #0b1220 100%);
    color: white;
}

.mobile-features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.mobile-feature i {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--accent-color);
}

.mobile-feature h3 {
    margin-bottom: 5px;
}

.mobile-feature p {
    color: rgba(255, 255, 255, 0.8);
}

.phone-mockup {
    width: 280px;
    height: 550px;
    background-color: #111;
    border-radius: 40px;
    position: relative;
    margin: 0 auto;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: url('../images/royallogo.jpg') center/cover;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Market Results Section */
.market-results {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%), 
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><rect width="1" height="1" fill="rgba(0,0,0,0.03)" x="0" y="0"/></svg>');
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.result-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.result-header {
    padding: 15px;
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-header h3 {
    margin: 0;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.result-header h3 i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.betting-status {
    font-size: 0.7rem;
    color: #ff6b6b;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
}

.betting-status.running {
    color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.15);
}

.result-numbers {
    padding: 20px 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-color);
    letter-spacing: 1px;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 15px 15px;
}

.chart-btn {
    padding: 8px 15px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.chart-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.play-button {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.play-btn:hover {
    background-color: #15803d;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .result-card {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .result-header {
        padding: 12px;
    }
    
    .result-header h3 {
        font-size: 0.9rem;
    }
    
    .result-numbers {
        padding: 15px 10px;
        font-size: 1.3rem;
    }
    
    .result-actions {
        padding: 0 10px 10px;
    }
    
    .chart-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .play-button {
        right: 10px;
    }
    
    .play-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* How to Play Section */
.how-to-play {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(15, 118, 110, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid var(--secondary-color);
}

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

.step:hover .step-icon {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #052014 100%);
    color: #e7ffe8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid rgba(34, 197, 94, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(34, 197, 94, 0.12);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step p {
    color: #666;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 80px;
    border-radius: 10px;
}

/* Floating Download Button */
.floating-download {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 100%;
    max-width: 512px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-download.show {
    opacity: 1;
    visibility: visible;
}

.floating-download a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    max-width: 300px;
    height: 50px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #2e8b57; /* Sea Green */
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-download a i {
    margin-right: 8px;
    font-size: 18px;
}

.floating-download a:hover {
    transform: scale(1.03);
    background-color: #1e6e41; /* Darker Green */
}

/* Media queries for mobile devices */
@media (max-width: 768px) {
    .hero-cta {
        display: flex;
        flex-direction: column;
    }
    
    .hero-cta .btn.secondary,
    .hero-cta .btn.whatsapp {
        display: inline-block;
        width: 48%;
        margin: 0;
        text-align: center;
    }
    
    .hero-cta .btn.primary {
        margin-bottom: 15px;
        width: 100%;
    }
    
    /* Container for call and whatsapp buttons */
    .hero-cta .contact-buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .floating-download a {
        width: 90%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-features .container {
        grid-template-columns: 1fr;
    }
    
    .mobile-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .rates-grid,
    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .rate-card,
    .feature-card,
    .step {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    header {
        padding: 60px 0;
    }
    
    .premium-rates,
    .game-rates,
    .features,
    .mobile-features,
    .how-to-play {
        padding: 60px 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 20px;
        max-width: 90%;
    }
    
    .hero-feature {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        max-width: 100%;
    }
    
    .result-numbers {
        font-size: 1.2rem;
    }
    
    .chart-btn {
        flex: 1;
        text-align: center;
    }
    
    .logo img {
        max-height: 80px;
    }
    
    .floating-download {
        bottom: 20px;
    }
    
    .floating-download a {
        padding: 0 20px;
    }
}

/* ======================== */
/* New Sections (Themed)    */
/* ======================== */

/* Neo Card Rates */
.rates-cards {
    padding: 80px 0;
    background: radial-gradient(800px 400px at 90% 0%, rgba(34,197,94,0.08), transparent 60%),
                linear-gradient(180deg, #0b1220 0%, #0e1726 100%);
    color: #e5f9ee;
}

.rates-cards .section-header h2,
.rates-cards .divider-icon { color: var(--secondary-color); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rate-card-neo {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.15));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.rate-card-neo:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

.rate-card-neo h4 { color: #eefaf2; margin: 16px 0 18px; }

.rcn-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), #2ddf77);
    color: #052014; font-size: 22px; font-weight: 700;
    box-shadow: 0 8px 18px rgba(34,197,94,0.35);
}

.rcn-pill {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; color: #e6f6ec;
}

.rcn-pill i { color: var(--secondary-color); }
.rcn-pill strong { color: #fde68a; letter-spacing: .3px; }

.rate-card-neo.featured {
    background: linear-gradient(180deg, rgba(13,148,136,0.28), rgba(0,0,0,0.2));
    border-color: rgba(34,197,94,0.35);
    box-shadow: 0 20px 40px rgba(13,148,136,0.35);
}

.rcn-badge {
    position: absolute; top: 10px; right: 12px;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    color: #1a1a1a; padding: 6px 10px; font-size: 11px; font-weight: 700;
    border-radius: 8px; box-shadow: 0 6px 14px rgba(245,158,11,0.35);
}

.rate-card-neo.wide { grid-column: span 3; }

@media (max-width: 992px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .rate-card-neo.wide { grid-column: span 2; }
}

@media (max-width: 640px) {
    .card-grid { grid-template-columns: 1fr; }
    .rate-card-neo.wide { grid-column: span 1; }
}

/* Starline cards on light gradient */
.starline-rates {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(22,163,74,0.04), rgba(15,118,110,0.05));
}

.starline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.star-card {
    background: #ffffff;
    border: 1px solid #eef2f0;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: left;
}

.star-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,0.1); }
.star-card h4 { margin: 14px 0; color: var(--dark-color); }

.star-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(22,163,74,0.1); color: var(--primary-color); font-size: 20px;
}

.star-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 12px; background: #f1f5f3; color: #0b1220;
}

.star-pill i { color: var(--primary-color); }
.star-pill strong { color: var(--accent-color); }

@media (max-width: 992px) { .starline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .starline-grid { grid-template-columns: 1fr; } }

/* FAQ Accordion */
.faq { padding: 80px 0; background: #f6f9f7; }
.accordion { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.acc-item { background: #ffffff; border: 1px solid #e8eeec; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.acc-head {
    width: 100%; text-align: left; background: linear-gradient(180deg, #ffffff, #f7fbf8);
    color: #0b1220; padding: 14px 18px; font-weight: 600; border: 0; display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.acc-head i { margin-left: auto; color: #6b7280; transition: transform .2s ease; }
.acc-head .acc-index {
    display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 999px; background: rgba(22,163,74,0.15); color: var(--primary-color); font-weight: 700; margin-right: 10px;
}
.acc-body { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: #374151; }
.acc-body p { margin: 12px 0 10px; font-size: 0.95rem; line-height: 1.6; }
.acc-body ol { margin: 0 0 6px 0; padding-left: 1.25rem; }
.acc-body li { margin: 6px 0; font-size: 0.95rem; }
.acc-item.open .acc-body { padding: 16px 18px 18px; }
.acc-item.open .acc-head { background: #e9fbf0; border-bottom: 1px solid #d9f5e3; }
.acc-item.open .acc-head i { transform: rotate(180deg); }
