/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --gold-color: #f39c12;
    --light-bg: #ecf0f1;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--dark-text);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: transparent;
    opacity: 0.9;
}

.header-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.theme-year {
    font-size: 0.85rem;
    color: var(--gold-color);
    font-weight: 600;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Mobile Header Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .header-text h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .main-nav {
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    #google_translate_element {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    .main-nav {
        gap: 5px;
    }
    
    .main-nav a {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
}

/* Google Translate Widget Styling */
#google_translate_element {
    margin-left: 15px;
    position: relative;
}

#google_translate_element select,
#google_translate_element .goog-te-combo {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    min-width: 160px !important;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 30px !important;
}

#google_translate_element select:hover,
#google_translate_element .goog-te-combo:hover {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.6) !important;
}

#google_translate_element select option,
#google_translate_element .goog-te-combo option {
    background: #2c3e50 !important;
    color: white !important;
    padding: 10px !important;
}

#google_translate_element select option:disabled {
    color: #f39c12 !important;
    font-weight: bold !important;
    background: #1a252f !important;
}

#google_translate_element .goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
}

#google_translate_element .goog-te-gadget > span {
    display: none !important;
}

#google_translate_element .goog-te-gadget-simple {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 5px !important;
    padding: 5px 10px !important;
}

#google_translate_element .goog-te-gadget-simple span {
    color: white !important;
    font-size: 0.85rem !important;
}

#google_translate_element .goog-te-gadget-icon {
    display: none !important;
}

/* Language icon before dropdown */
#google_translate_element::before {
    content: "🌍";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Hide Google Translate top bar */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Ensure body doesn't shift when translated */
.translated-ltr body,
.translated-rtl body {
    top: 0 !important;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.2);
}

/* News link highlight */
.main-nav a.news-link {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); }
    50% { box-shadow: 0 0 20px rgba(243, 156, 18, 0.8); }
}

/* ===== NEWS ANNOUNCEMENT BANNER ===== */
.news-announcement {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.news-announcement::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.news-banner {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(243, 156, 18, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.news-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.news-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.news-image {
    flex: 0 0 280px;
}

.news-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(243, 156, 18, 0.5);
}

.news-text {
    flex: 1;
    min-width: 280px;
    color: white;
}

.news-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f39c12;
}

.news-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.news-text .scripture-highlight {
    font-style: italic;
    color: #f39c12;
    border-left: 3px solid #f39c12;
    padding-left: 15px;
    margin: 15px 0;
}

.news-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.news-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

@media (max-width: 768px) {
    .news-announcement {
        padding: 20px 0;
    }
    
    .news-banner {
        padding: 15px;
        border-radius: 12px;
    }
    
    .news-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .news-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .news-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
    
    .news-image img {
        border-radius: 10px;
        border-width: 2px;
    }
    
    .news-text {
        min-width: unset;
        width: 100%;
    }
    
    .news-text h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .news-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .news-text .scripture-highlight {
        border-left: none;
        border-top: 2px solid #f39c12;
        padding-left: 0;
        padding-top: 10px;
        font-size: 0.9rem;
    }
    
    .news-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .news-announcement {
        padding: 15px 0;
    }
    
    .news-banner {
        padding: 12px;
    }
    
    .news-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .news-image {
        max-width: 180px;
    }
    
    .news-text h2 {
        font-size: 1.15rem;
    }
    
    .news-text p {
        font-size: 0.88rem;
    }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== TODAY'S DEVOTIONAL SECTION ===== */
.today-devotional {
    padding: 60px 20px;
    background: var(--light-bg);
}

.devotional-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.preview-image {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.preview-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.preview-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.devotional-date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-content h3 {
    font-size: 2rem;
    margin: 15px 0;
    color: var(--primary-color);
}

.scripture-ref {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 15px;
    border-left: 4px solid var(--gold-color);
    margin: 20px 0;
    font-style: italic;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ===== RECENT DEVOTIONALS GRID ===== */
.recent-devotionals {
    padding: 60px 20px;
}

.recent-devotionals h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.devotional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.devotional-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.devotional-card:hover {
    transform: translateY(-10px);
}

/* Featured Card Styling */
.devotional-card.featured-card {
    border: 3px solid var(--gold-color);
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.3);
}

.devotional-card.featured-card .date {
    background: linear-gradient(135deg, #D4AF37 0%, #f39c12 100%);
}

.calendar-day.featured {
    background: linear-gradient(135deg, #D4AF37 0%, #f39c12 100%) !important;
    color: white;
}

.calendar-day.featured .prayer-note {
    color: white;
    font-weight: 600;
}

.devotional-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    position: relative;
}

.card-content .date {
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.card-content h4 {
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    color: var(--primary-color);
}

.card-content p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.card-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-content a.locked {
    color: #95a5a6;
    cursor: not-allowed;
    font-style: italic;
}

.card-content a.locked:hover {
    color: #7f8c8d;
}

/* Floating Counter Widget */
.floating-counter {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.counter-icon-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.counter-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}

.counter-popup {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-counter:hover .counter-popup,
.counter-popup.show {
    opacity: 1;
    visibility: visible;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: #2c3e50;
}

.counter-item span {
    font-weight: 700;
    color: #667eea;
    min-width: 40px;
}

@media (max-width: 768px) {
    .floating-counter {
        position: fixed;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }
    .counter-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .counter-popup {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    .counter-item {
        padding: 5px 0;
    }
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* ===== TOPICS SECTION ===== */
.topics-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.topics-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--light-text);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.topic-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.topic-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* ===== ENGAGEMENT SECTION ===== */
.engagement-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.engagement-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.engagement-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.engagement-item p {
    font-size: 1rem;
    opacity: 0.95;
}

/* ===== DEVOTIONAL PAGE STYLES ===== */
.devotional-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.devotional-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.devotional-header .meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.share-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.share-label {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    margin-right: 5px;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-link svg {
    transition: transform 0.2s ease;
}

.icon-link:hover svg {
    transform: scale(1.1);
}

/* Alternating Content Blocks */
.content-block {
    padding: 60px 20px;
}

.content-block:nth-child(even) {
    background: var(--light-bg);
}

.block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Text on left, image on right (default) */
.block-content .text-content {
    order: 1;
}

.block-content .image-content {
    order: 2;
}

/* Text on right, image on left (alternate) */
.content-block:nth-child(even) .block-content .text-content {
    order: 2;
}

.content-block:nth-child(even) .block-content .image-content {
    order: 1;
}

.text-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Scripture Hover Tooltips */
.scripture-reference {
    color: var(--secondary-color);
    font-weight: 600;
    cursor: help;
    position: relative;
    border-bottom: 2px dotted var(--secondary-color);
    display: inline-block;
}

.scripture-reference:hover::after {
    content: attr(data-verse);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    width: 350px;
    max-width: 90vw;
    font-size: 0.95rem;
    font-weight: normal;
    line-height: 1.6;
    box-shadow: var(--shadow);
    z-index: 1000;
    margin-bottom: 10px;
    font-style: italic;
}

.scripture-reference:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--primary-color);
    margin-bottom: 2px;
}

/* Scripture Quote Blocks */
.scripture-quote {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-left: 5px solid var(--gold-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    font-family: 'Georgia', 'Times New Roman', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.scripture-quote cite {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Lessons Section */
.lessons-section {
    background: var(--gradient-1);
    color: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.lessons-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.lesson-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.lesson-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.lesson-item p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Prayer Section */
.prayer-section {
    background: var(--gradient-1);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.prayer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.prayer-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
}

/* Share Buttons */
.share-section {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-bg);
}

.share-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.email { background: #ea4335; }

/* Comments Section */
.comments-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.comments-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.comment-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.comment-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--light-text);
}

.comment-text {
    line-height: 1.7;
}

/* Contact Form (in devotionals) */
/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f39c12;
    color: white;
}

.contact-cta-btn svg {
    transition: transform 0.3s ease;
}

.contact-cta-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Reaction Buttons */
.reaction-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.reaction-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reaction-btn:active {
    transform: translateY(0);
}

.amen-btn {
    background: #2c3e50;
    color: white;
}

.amen-btn:hover {
    background: #34495e;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25);
}

.hallelujah-btn {
    background: #d4a574;
    color: #2c3e50;
}

.hallelujah-btn:hover {
    background: #c9a961;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.like-btn {
    background: white;
    color: #7d6b7d;
    border: 2px solid #9b8ba0;
}

.like-btn:hover {
    background: #f8f7f9;
    border-color: #7d6b7d;
    box-shadow: 0 4px 12px rgba(123, 107, 125, 0.2);
}

/* Interaction Section (Comments + Contact) */
.interaction-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.comments-column,
.contact-column {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comments-column:hover,
.contact-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.comments-column h3,
.contact-column h3 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-column p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--light-text);
    line-height: 1.6;
}

.comment-form textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.comment-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #e67e22 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comments-column,
    .contact-column {
        padding: 30px 25px;
    }
}

.contact-section {
    background: var(--gradient-3);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.contact-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Calendar Page Styles */
.calendar-container {
    padding: 60px 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.calendar-day {
    aspect-ratio: 1;
    border: 2px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.calendar-day.has-devotional {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
}

.calendar-day.has-devotional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.calendar-day.has-devotional .day-number,
.calendar-day.has-devotional .day-label {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.calendar-day.has-devotional .day-number {
    font-size: 2rem;
    font-weight: 800;
}

.calendar-day.has-devotional:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.calendar-day.prayer-fasting {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: transparent;
    cursor: pointer;
    position: relative;
}

.calendar-day.prayer-fasting:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.calendar-day.coming-soon {
    background: #e8e9ec;
    color: #b0b3b8;
    border-color: #d1d4d8;
    cursor: not-allowed;
    opacity: 0.5;
    filter: grayscale(100%);
}

.coming-label {
    font-size: 0.55rem;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.8;
}

.prayer-note {
    font-size: 0.6rem;
    margin-top: 5px;
    opacity: 0.9;
    font-weight: 500;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 10%);
    border-radius: 15px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legend-color.prayer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legend-color.available {
    background: var(--gradient-1);
}

.legend-color.coming {
    background: #f5f6fa;
    border: 2px solid #e1e4e8;
}

.calendar-day .day-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.calendar-day .day-label {
    font-size: 0.7rem;
    margin-top: 5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
    }
    
    .header-text h1 {
        font-size: 1.4rem;
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav a {
        text-align: center;
        width: 100%;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
    
    .devotional-preview,
    .block-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobile: Text first, then image (scripture + buttons sit under the image) */
    .block-content .text-content,
    .content-block:nth-child(even) .block-content .text-content {
        order: 1;
    }

    .block-content .image-content,
    .content-block:nth-child(even) .block-content .image-content {
        order: 2;
    }
    
    .preview-content {
        padding: 30px 20px;
    }
    
    .preview-content h3 {
        font-size: 1.5rem;
    }
    
    .devotional-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .engagement-content {
        grid-template-columns: 1fr;
    }
    
    .devotional-header h1 {
        font-size: 1.8rem;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .calendar-container {
        padding: 40px 10px;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
        max-width: 100%;
    }
    
    .calendar-day {
        border-radius: 6px;
        padding: 8px 2px;
        min-height: 60px;
    }
    
    .calendar-day .day-number {
        font-size: 1.1rem;
    }
    
    .calendar-day .day-label {
        font-size: 0.6rem;
    }
    
    .prayer-note,
    .coming-label {
        font-size: 0.5rem;
        margin-top: 2px;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    .legend-color {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .header-text h1 {
        font-size: 1.2rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-day {
        min-height: 50px;
        padding: 6px 2px;
    }
    
    .calendar-day .day-number {
        font-size: 0.95rem;
    }
    
    .calendar-day .day-label {
        font-size: 0.55rem;
    }
    
    .prayer-note,
    .coming-label {
        font-size: 0.45rem;
        margin-top: 1px;
    }
}
.text-red {
    color: #e74c3c !important;
    font-weight: bold !important;
}

/* ===== NOTIFICATION SYSTEM STYLES ===== */

/* Notification Bell Button */
.notification-bell {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(243, 156, 18, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.notification-bell:hover {
    background: rgba(243, 156, 18, 0.2);
    border-color: #f39c12;
    transform: scale(1.05);
}

.notification-bell .bell-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.notification-bell:hover .bell-icon {
    animation: bellRing 0.5s ease;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-10deg); }
}

.notification-bell .bell-status {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #27ae60;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.notification-bell.enabled .bell-status {
    opacity: 1;
    transform: scale(1);
}

.notification-bell.enabled {
    background: rgba(39, 174, 96, 0.2);
    border-color: #27ae60;
}

.notification-bell.loading .bell-icon {
    animation: bellPulse 1s ease infinite;
}

@keyframes bellPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid rgba(243, 156, 18, 0.5);
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    max-width: 380px;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-toast .toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-toast .toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.notification-toast .toast-text {
    flex: 1;
}

.notification-toast .toast-text strong {
    color: #f39c12;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.notification-toast .toast-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.notification-toast .toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.notification-toast .toast-close:hover {
    color: #e74c3c;
}

.notification-toast .toast-action {
    display: block;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.notification-toast .toast-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

/* Subscription Banner */
.subscription-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 3px solid #f39c12;
    padding: 15px 20px;
    z-index: 9999;
    animation: slideUpBanner 0.5s ease;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.subscription-banner .subscription-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscription-banner .subscription-icon {
    font-size: 2rem;
    animation: bellRing 1s ease infinite;
}

.subscription-banner .subscription-text {
    flex: 1;
    min-width: 200px;
}

.subscription-banner .subscription-text strong {
    color: #f39c12;
    font-size: 1.1rem;
    display: block;
}

.subscription-banner .subscription-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.subscription-banner .subscription-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-banner .subscription-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.subscription-banner .subscription-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.subscription-banner .subscription-close:hover {
    background: #e74c3c;
    color: white;
}

/* Mobile adjustments for notifications */
@media (max-width: 600px) {
    .notification-bell {
        width: 38px;
        height: 38px;
        margin-left: 10px;
    }
    
    .notification-bell .bell-icon {
        font-size: 1.1rem;
    }
    
    .notification-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .subscription-banner .subscription-content {
        text-align: center;
    }
    
    .subscription-banner .subscription-text {
        width: 100%;
    }

    /* Contextual Opt-In Banner */
.contextual-optin {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 3px solid #f39c12;
    padding: 18px 20px;
    z-index: 9998;
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
}
 
.contextual-optin.show {
    bottom: 0;
}
 
.contextual-optin-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
 
.contextual-optin-icon {
    font-size: 2rem;
    animation: bellRing 2s ease infinite;
}
 
.contextual-optin-text {
    flex: 1;
    min-width: 200px;
}
 
.contextual-optin-text strong {
    color: #f39c12;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 3px;
}
 
.contextual-optin-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}
 
.contextual-optin-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
 
.contextual-optin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(243,156,18,0.5);
}
 
.contextual-optin-btn.subscribed {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}
 
.contextual-optin-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
 
.contextual-optin-close:hover {
    background: #e74c3c;
    color: white;
}
 
@media (max-width: 600px) {
    .contextual-optin-content {
        text-align: center;
    }
    .contextual-optin-text {
        width: 100%;
    }
    .contextual-optin-btn {
        width: 100%;
        max-width: 280px;
    }
}
 
/* Questions Section */
.questions-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1a1a2e 100%);
}
 
.questions-section .container {
    max-width: 800px;
    margin: 0 auto;
}
 
.questions-header {
    text-align: center;
    margin-bottom: 40px;
}
 
.questions-header h2 {
    color: #f39c12;
    font-size: 2rem;
    margin-bottom: 10px;
}
 
.questions-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.6;
}
 
.question-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(243,156,18,0.3);
    border-radius: 20px;
    padding: 35px;
}
 
.question-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
 
.question-form-card .form-group {
    margin-bottom: 20px;
}
 
.question-form-card label {
    display: block;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
 
.question-form-card input,
.question-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
 
.question-form-card input:focus,
.question-form-card textarea:focus {
    outline: none;
    border-color: #f39c12;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(243,156,18,0.15);
}
 
.question-form-card input::placeholder,
.question-form-card textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
 
.question-form-card textarea {
    min-height: 130px;
    resize: vertical;
}
 
.question-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
 
.question-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243,156,18,0.4);
}
 
.question-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
 
.question-success {
    display: none;
    text-align: center;
    padding: 30px;
    background: rgba(39,174,96,0.1);
    border: 1px solid rgba(39,174,96,0.4);
    border-radius: 15px;
    margin-top: 20px;
}
 
.question-success h3 {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
 
.question-success p {
    color: rgba(255,255,255,0.8);
}
 
.whatsapp-alt {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
 
.whatsapp-alt p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
 
.whatsapp-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
 
.whatsapp-direct-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
}
 
@media (max-width: 600px) {
    .question-form-card .form-row {
        grid-template-columns: 1fr;
    }
    .question-form-card {
        padding: 20px;
    }
    .questions-header h2 {
        font-size: 1.6rem;
    }
}
}
/* ============================================================
   LANGUAGE TOGGLE STYLES
   ============================================================ */

.devotional-card-lang {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.lang-btn-english {
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    color: white;
}

.lang-btn-english:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,115,232,0.4);
}

.lang-btn-shona {
    background: linear-gradient(135deg, #2d8a4e, #1e6b3a);
    color: white;
}

.lang-btn-shona:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,138,78,0.4);
}

.lang-btn-shona.coming-soon {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.lang-btn-shona.coming-soon:hover {
    transform: none;
    box-shadow: none;
}
.calendar-lang-links {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 4px;
    font-size: 0.75rem;
}

.cal-lang-sn.coming-soon {
    opacity: 0.3;
    filter: grayscale(100%);
}