/* Custom Features Styles (Newsletter, Contact Form, Unsubscribe) */

/* Subscribe Popup Styles */
#gxbible-newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#gxbible-newsletter-popup.active {
    display: flex;
    opacity: 1;
}

.gxbible-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 24, 46, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gxbible-popup-container {
    position: relative;
    width: 90%;
    max-width: 550px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

#gxbible-newsletter-popup.active .gxbible-popup-container {
    transform: translateY(0) scale(1);
}

.gxbible-popup-header {
    background: linear-gradient(135deg, #00468c 0%, #002d5c 100%);
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.gxbible-popup-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gxbible-popup-header p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
    line-height: 1.6;
}

.gxbible-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.gxbible-popup-close:hover {
    color: #ffffff;
}

.gxbible-popup-body {
    padding: 35px 30px;
}

.gxbible-form-group {
    margin-bottom: 20px;
    position: relative;
}

.gxbible-form-group input[type="email"],
.gxbible-form-group input[type="text"],
.gxbible-form-group textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border: 2px solid #e1e7ec;
    border-radius: 8px;
    background-color: #f7f9fa;
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.gxbible-form-group input:focus,
.gxbible-form-group textarea:focus {
    border-color: #00468c;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 70, 140, 0.1);
    outline: none;
}

.gxbible-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.gxbible-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.gxbible-checkbox-group label {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.gxbible-checkbox-group label a {
    color: #00468c;
    text-decoration: underline;
}

.gxbible-btn-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #151515, #151515) !important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 70, 140, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.gxbible-btn-submit:hover {
    background: linear-gradient(to right, #003770, #00468c);
    box-shadow: 0 6px 20px rgba(0, 70, 140, 0.3);
    transform: translateY(-2px);
}

.gxbible-btn-submit:active {
    transform: translateY(0);
}

.gxbible-btn-submit:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Success State Styles */
.gxbible-success-state {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.gxbible-success-icon {
    font-size: 64px;
    color: #2ec4b6;
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gxbible-success-state h3 {
    font-size: 22px;
    color: #333333;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.gxbible-success-state p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer Form styles wrapper */
.gxbible-footer-form-wrapper {
    position: relative;
}

.gxbible-footer-form-wrapper form {
    position: relative;
    display: block;
}

.gxbible-footer-form-wrapper .gc_footer_news_email {
    position: relative;
}

.gxbible-footer-form-wrapper button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 15px;
}

/* Contact Page Styles */
.gxbible-contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.gxbible-contact-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.gxbible-contact-info-col {
    background: linear-gradient(135deg, #463f3f 0%, #463f3f 100%);
    color: #ffffff;
    padding: 50px 40px;
    height: 100%;
}

.gxbible-contact-info-col h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gxbible-contact-info-col p.lead {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 40px;
}

.gxbible-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.gxbible-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 15px;
}

.gxbible-info-list li i {
    font-size: 20px;
    color: #f39c12;
    /* Gold accent */
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.gxbible-info-list li span {
    flex: 1;
    line-height: 1.5;
}

.gxbible-contact-map-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gxbible-contact-form-col {
    padding: 50px 40px;
}

.gxbible-contact-form-col h3 {
    font-size: 26px;
    color: #1e293b;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gxbible-contact-form-col p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 35px;
}

/* Form inputs on Contact Page */
.gxbible-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.gxbible-form-row .gxbible-form-group {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .gxbible-form-row {
        flex-direction: column;
        gap: 20px;
    }
}

.gxbible-response-msg {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.gxbible-response-msg.success {
    display: block;
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.gxbible-response-msg.error {
    display: block;
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.gxbible-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Unsubscribe Page Styles */
.gxbible-unsubscribe-section {
    padding: 100px 0;
    background-color: #f8fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.gxbible-unsubscribe-card {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.gxbible-unsubscribe-header {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    /* Crimson alert color */
    color: #ffffff;
    padding: 35px 30px;
    text-align: center;
}

.gxbible-unsubscribe-header h2 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.gxbible-unsubscribe-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.gxbible-unsubscribe-body {
    padding: 40px 35px;
}

.gxbible-unsubscribe-body p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.gxbible-btn-unsubscribe {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #e11d48, #f43f5e);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.gxbible-btn-unsubscribe:hover {
    background: linear-gradient(to right, #be123c, #e11d48);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
    transform: translateY(-2px);
}

.gxbible-btn-unsubscribe:active {
    transform: translateY(0);
}

.gxbible-btn-unsubscribe:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ==========================================================================
   Redesigned Event & Audio Player Styles
   ========================================================================== */

.home .gc_event_main_wrapper {
    background-color: #f8fafc !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.home .gc_event_main_wrapper .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gc_player_left_section_wrapper,
.gc_player_right_section_wrapper {
    width: calc(50% - 15px) !important;
    float: none !important;
}

@media (max-width: 991px) {

    .gc_player_left_section_wrapper,
    .gc_player_right_section_wrapper {
        width: 100% !important;
    }

    .home .gc_event_main_wrapper .container {
        flex-direction: column;
    }
}



/* --- Right Card: Latest Sermons --- */
.gc_player_main_wrapper {
    margin-top: 0 !important;
    background: linear-gradient(135deg, #0f243e 0%, #061324 100%) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    min-height: 380px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

.gc_player_img_overlay {
    background: radial-gradient(circle at top right, rgba(229, 174, 73, 0.15), transparent 60%) !important;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.player_heading_section {
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px !important;
    float: none !important;
}

.gc_player_icon_wrapper {
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 15px !important;
    float: left !important;
}

.gc_player_icon_wrapper i {
    font-size: 22px !important;
    color: #e5ae49 !important;
}

.gc_player_heading_wrapper {
    width: auto !important;
    padding-left: 0 !important;
    float: left !important;
}

.gc_player_heading_wrapper h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc_player_heading_wrapper h3:before,
.gc_player_heading_wrapper h3:after {
    display: none !important;
}

.gc_player_heading_wrapper h3 span {
    font-size: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    margin-left: 10px !important;
    font-style: normal !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Sermon Content */
.gc_player_img_section {
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    flex-grow: 1 !important;
    float: none !important;
}

.gc_player_song_img {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid rgba(229, 174, 73, 0.35) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    flex-shrink: 0 !important;
    float: none !important;
}

.gc_player_song_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gc_player_song_img_cont {
    width: auto !important;
    padding-top: 0 !important;
    float: none !important;
    flex-grow: 1 !important;
}

/* Remove old angle brace style */
.gc_player_song_img_cont:before,
.gc_player_song_img_cont:after {
    display: none !important;
}

.gc_player_song_img_cont h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    margin: 0 0 8px 0 !important;
}

.gc_player_song_img_cont h4 {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 0 20px 0 !important;
    font-style: normal !important;
}

.gc_player_song_img_cont h4 span {
    color: #e5ae49 !important;
    font-weight: 600 !important;
}

/* Audio Player Icons */
.gc_player_song_img_cont ul {
    margin-top: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    gap: 12px !important;
}

.gc_player_song_img_cont li {
    float: none !important;
    margin-left: 0 !important;
}

.gc_player_song_img_cont li a {
    width: 44px !important;
    height: 44px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    font-size: 15px !important;
    line-height: 1 !important;
    float: none !important;
}

.gc_player_song_img_cont li a:hover {
    background: #e5ae49 !important;
    color: #ffffff !important;
    border-color: #e5ae49 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(229, 174, 73, 0.3) !important;
}

/* ==========================================================================
   Revolution Slider Arrow Fix
   ========================================================================== */

/* Override the broken transparent-on-hover that kills click targets */
.tparrows {
    background: rgba(0, 0, 0, 0.45) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    cursor: pointer !important;
    pointer-events: all !important;
    z-index: 1000 !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
}

.tparrows:hover {
    background: rgba(229, 174, 73, 0.9) !important;
    border-color: #e5ae49 !important;
    transform: scale(1.1) !important;
}

.tparrows:before {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 52px !important;
}

.tparrows:hover:before {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Fix arrow positions — left and right sides of slider */
.tp-leftarrow,
.tp-rightarrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.tp-leftarrow {
    left: 25px !important;
}

.tp-rightarrow {
    left: auto !important;
    right: 25px !important;
}

/* Fix the bullets positioning that was rotated strangely */
.tp-bullets {
    left: 50% !important;
    transform: translateX(-50%) rotate(0deg) !important;
    -webkit-transform: translateX(-50%) rotate(0deg) !important;
    -ms-transform: translateX(-50%) rotate(0deg) !important;
    top: auto !important;
    bottom: 20px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
}

/* ==========================================================================
   Gallery — Uniform Image Size & Load More Button
   ========================================================================== */

/* Force all gallery thumbnails to the same fixed height */
.gc_gallery_uniform {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 240px;
    background: #0c1e36;
}

.gc_gallery_img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.gc_gallery_uniform:hover .gc_gallery_img {
    transform: scale(1.08);
}

/* Ensure overlay fills the fixed container */
.gc_gallery_uniform .gc_filter_cont_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Give each card a consistent bottom margin */
.portfolio-wrapper {
    margin-bottom: 20px !important;
}

/* Load More Button */
.gc_gallery_loadmore_wrapper {
    padding: 30px 0 10px;
    clear: both;
}

.gc_gallery_loadmore_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #e5ae49 0%, #c9912a 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(229, 174, 73, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    outline: none;
}

.gc_gallery_loadmore_btn i {
    font-size: 16px;
}

.gc_gallery_loadmore_btn:hover {
    background: linear-gradient(135deg, #00468c 0%, #002d5c 100%);
    box-shadow: 0 10px 30px rgba(0, 70, 140, 0.25);
    transform: translateY(-3px);
    color: #ffffff;
}

.gc_gallery_loadmore_btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 70, 140, 0.15);
}

/* ==========================================================================
   🎨 PREMIUM UI REDESIGN — GXBible Theme
   Complete visual overhaul with modern design patterns
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL ENHANCEMENTS
   -------------------------------------------------------------------------- */

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    line-height: 1.7 !important;
}

/* Scroll-to-top — premium pill redesign */
#return-to-top {
    background: linear-gradient(135deg, #00468c 0%, #0066cc 100%) !important;
    border-radius: 14px !important;
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    box-shadow: 0 8px 25px rgba(0, 70, 140, 0.35) !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    backdrop-filter: blur(10px) !important;
}

#return-to-top:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 70, 140, 0.45) !important;
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
}

#return-to-top i {
    color: #ffffff !important;
    font-size: 18px !important;
}

/* Preloader refinement */
#preloader {
    background: linear-gradient(135deg, #0a1628 0%, #0f243e 100%) !important;
}

/* --------------------------------------------------------------------------
   2. SCROLL-TRIGGERED REVEAL SYSTEM (GPU-Accelerated)
   Elements start hidden, become visible when scrolled into view.
   JS adds .gx-visible class via IntersectionObserver.
   -------------------------------------------------------------------------- */

/* Base hidden state — GPU-accelerated, only animates transform + opacity */
.gx-reveal {
    opacity: 0 !important;
    transform: translateY(30px) translateZ(0) !important;
    will-change: transform, opacity !important;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Visible state — smooth entrance */
.gx-reveal.gx-visible {
    opacity: 1 !important;
    transform: translateY(0) translateZ(0) !important;
}

/* Stagger delays for child cards */
.gx-reveal.gx-delay-1 {
    transition-delay: 0.1s !important;
}

.gx-reveal.gx-delay-2 {
    transition-delay: 0.2s !important;
}

.gx-reveal.gx-delay-3 {
    transition-delay: 0.3s !important;
}

.gx-reveal.gx-delay-4 {
    transition-delay: 0.4s !important;
}

/* Variant: fade in from left */
.gx-reveal-left {
    opacity: 0 !important;
    transform: translateX(-30px) translateZ(0) !important;
    will-change: transform, opacity !important;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.gx-reveal-left.gx-visible {
    opacity: 1 !important;
    transform: translateX(0) translateZ(0) !important;
}

/* Variant: fade in from right */
.gx-reveal-right {
    opacity: 0 !important;
    transform: translateX(30px) translateZ(0) !important;
    will-change: transform, opacity !important;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.gx-reveal-right.gx-visible {
    opacity: 1 !important;
    transform: translateX(0) translateZ(0) !important;
}

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {

    .gx-reveal,
    .gx-reveal-left,
    .gx-reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------------------
   3. SECTION HEADINGS — Premium Treatment (all sections)
   -------------------------------------------------------------------------- */

/* "Recent News" style cursive subtitles */
.gc_blog_heading h2,
.gc_com_event_icon_wrapper h2,
.gc_recent_icon_wrapper h2 {
    font-family: 'Playfair Display', 'Great Vibes', serif !important;
    font-style: italic !important;
    color: #e5ae49 !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
}

/* Main section titles */
.gc_blog_heading h1,
.gc_com_event_icon_wrapper h1,
.gc_recent_icon_wrapper h1 {
    font-family: 'Playfair Display', 'Raleway', serif !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
    position: relative !important;
    padding-bottom: 25px !important;
}

/* Refined underline bar for headings */
.gc_blog_heading h1:after {
    content: '' !important;
    position: absolute !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #e5ae49, #f5c97a) !important;
    border: none !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) scaleX(1) !important;
    transform-origin: center !important;
    border-radius: 3px !important;
    margin: 0 !important;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.gc_blog_heading h1:before {
    display: none !important;
}

.gc_com_event_icon_wrapper h1:after,
.gc_recent_icon_wrapper h1:after {
    content: '' !important;
    position: absolute !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #e5ae49, #f5c97a) !important;
    border: none !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 3px !important;
    display: block !important;
}

.gc_com_event_icon_wrapper h1:before,
.gc_recent_icon_wrapper h1:before {
    display: none !important;
}

/* --------------------------------------------------------------------------
   4. BLOG SECTION — Complete Premium Redesign
   -------------------------------------------------------------------------- */

.gc_blogs_main_wrapper {
    padding-top: 70px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Blog Card */
.gc_blog_post_wrapper {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
    margin-top: 50px !important;
    will-change: transform, box-shadow !important;
}

.gc_blog_post_wrapper:hover {
    transform: translateY(-8px) translateZ(0) !important;
    box-shadow: 0 20px 50px rgba(0, 70, 140, 0.12) !important;
}

/* Blog Image */
.gc_blog_img_wrapper {
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
    position: relative !important;
}

.gc_blog_img_wrapper img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform !important;
    transform: translateZ(0) !important;
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
}

.gc_blog_post_wrapper:hover .gc_blog_img_wrapper img {
    transform: scale(1.08) !important;
}

/* Gradient overlay on image */
.gc_blog_img_wrapper::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60% !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent) !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

.gc_blog_post_wrapper:hover .gc_blog_img_wrapper::after {
    opacity: 1 !important;
}

/* Blog Content Area */
.gc_blog_date_main_sec {
    padding: 30px 30px 10px !important;
}

/* Date Badge — Glassmorphism Style */
.gc_blog_date {
    width: 64px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #4b4b4b 0%, #4b4b4b 100%) !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(0, 70, 140, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
}

.gc_blog_date::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%) !important;
    pointer-events: none !important;
}

.gc_blog_post_wrapper:hover .gc_blog_date {
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    box-shadow: 0 8px 25px rgba(229, 174, 73, 0.35) !important;
    transform: scale(1.05) !important;
}

.gc_blog_date_wrapper p {
    font-family: 'Inter', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    padding-top: 16px !important;
    line-height: 1.1 !important;
}

.gc_blog_date_wrapper p span {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 0.85 !important;
}

/* Blog Title */
.gc_blog_date_cont_wrapper h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
}

.gc_blog_date_cont_wrapper h4 a {
    color: #0f172a !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.gc_blog_date_cont_wrapper h4 a:hover {
    color: #00468c !important;
}

/* Title underline — refined */
.gc_blog_date_cont_wrapper h4:after {
    border: none !important;
    height: 2px !important;
    width: 50px !important;
    background: linear-gradient(90deg, #e5ae49, transparent) !important;
    transition: width 0.4s ease !important;
}

.gc_blog_post_wrapper:hover .gc_blog_date_cont_wrapper h4:after {
    width: 100px !important;
}

.gc_blog_date_cont_wrapper h4:before {
    display: none !important;
}

/* Blog Excerpt */
.gc_blog_date_cont_wrapper p {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    padding-top: 25px !important;
}

/* Read More — Premium Arrow Style */
.gc_blog_date_cont_wrapper h5 {
    padding-bottom: 30px !important;
}

.gc_blog_date_cont_wrapper h5 a {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #00468c !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.gc_blog_date_cont_wrapper h5 a::after {
    content: ' →' !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

.gc_blog_date_cont_wrapper h5 a:hover {
    color: #e5ae49 !important;
}

.gc_blog_date_cont_wrapper h5:after {
    border-color: #e5ae49 !important;
    width: 25px !important;
    transition: width 0.3s ease !important;
}

.gc_blog_post_wrapper:hover .gc_blog_date_cont_wrapper h5:after {
    width: 40px !important;
}

/* Bottom Blog Meta */
.gc_bottom_bog_sec_wrapper {
    border-top: 1px solid #f1f5f9 !important;
    padding: 15px 30px !important;
    background: #fafbfc !important;
}

.gc_bottom_bog_sec_wrapper ul li a {
    color: #94a3b8 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.gc_bottom_bog_sec_wrapper ul li a:hover {
    color: #e5ae49 !important;
}

.gc_bottom_bog_sec_wrapper ul li a i {
    color: #cbd5e1 !important;
    margin-right: 4px !important;
}

/* --------------------------------------------------------------------------
   5. UPCOMING EVENTS / SAINT CARDS — Premium Redesign
   -------------------------------------------------------------------------- */

.gc_com_event_main_wrapper {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Saints Grid */
.gc_saints_grid {
    gap: 30px !important;
}

.gc_saint_card {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform, box-shadow !important;
}

/* Stagger delays applied via .gx-delay-N classes in JS */

.gc_saint_card:hover {
    transform: translateY(-10px) translateZ(0) !important;
    box-shadow: 0 20px 50px rgba(0, 70, 140, 0.12) !important;
}

.gc_saint_img_wrap {
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
}

.gc_saint_img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform !important;
    transform: translateZ(0) !important;
    width: 100% !important;
    object-fit: cover !important;
}

.gc_saint_card:hover .gc_saint_img {
    transform: scale(1.08) !important;
}

/* Date Badge on Saint Card */
.gc_saint_date_badge {
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(0, 70, 140, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s ease !important;
}

.gc_saint_card:hover .gc_saint_date_badge {
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    box-shadow: 0 8px 25px rgba(229, 174, 73, 0.4) !important;
}

.gc_saint_day {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
}

.gc_saint_month {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 10px !important;
}

/* Saint Card Body */
.gc_saint_body {
    padding: 25px !important;
}

.gc_saint_tag {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #e5ae49 !important;
}

.gc_saint_tag i {
    font-size: 6px !important;
    margin-right: 6px !important;
    color: #e5ae49 !important;
}

.gc_saint_title {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 12px 0 10px !important;
    line-height: 1.4 !important;
}

.gc_saint_excerpt {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
}

/* Saint CTA Button */
.gc_saint_btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #151515 !important;
    border: 2px solid #151515 !important;
    padding: 10px 28px !important;
    border-radius: 30px !important;
    display: inline-block !important;
    margin-top: 15px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    background: transparent !important;
    text-decoration: none !important;
}

.gc_saint_btn:hover {
    background: linear-gradient(135deg, #151515 0%, #151515 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 70, 140, 0.25) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

/* --------------------------------------------------------------------------
   6. RECENT CAUSES SECTION — Premium Card Redesign
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   6. RECENT CAUSES SECTION — Premium Grid Redesign
   -------------------------------------------------------------------------- */

.gc_recent_main_wrapper {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Card layout wrapper (replaces slider items) */
.gc_recent_card {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f1f5f9 !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease !important;
    margin-bottom: 30px !important;
    will-change: transform, box-shadow !important;
}

.gc_recent_card:hover {
    transform: translateY(-8px) translateZ(0) !important;
    box-shadow: 0 20px 40px rgba(0, 70, 140, 0.1) !important;
    border-color: rgba(229, 174, 73, 0.2) !important;
}

.gc_recent_slide_img {
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.gc_recent_slide_img img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform !important;
    transform: translateZ(0) !important;
}

.gc_recent_card:hover .gc_recent_slide_img img {
    transform: scale(1.05) !important;
}

.gc_recent_slider_img_overlay {
    display: none !important;
}

.gc_recent_slider_cont_wrapper {
    padding: 25px 25px 30px 25px !important;
}

.gc_recent_slider_cont_heading h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    padding-top: 0 !important;
    padding-bottom: 15px !important;
    margin-bottom: 0 !important;
    position: relative !important;
}

.gc_recent_slider_cont_heading h3 a {
    color: #0f172a !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.gc_recent_slider_cont_heading h3 a:hover {
    color: #e5ae49 !important;
}

.gc_recent_slider_cont_heading h3:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #e5ae49, #f5c97a) !important;
    border-radius: 3px !important;
    display: block !important;
    border: none !important;
    transition: width 0.3s ease !important;
}

.gc_recent_card:hover .gc_recent_slider_cont_heading h3:after {
    width: 90px !important;
}

.gc_recent_slider_cont_heading h3:before {
    display: none !important;
}

.gc_recent_slider_cont p {
    font-family: 'Inter', sans-serif !important;
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    padding-top: 15px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .gc_recent_slide_img img {
        height: 200px !important;
    }
}

/* --------------------------------------------------------------------------
   /* --------------------------------------------------------------------------
   8. TESTIMONIAL / QUOTE SECTION — Enhanced
   -------------------------------------------------------------------------- */
-------------------------------- */ .gc_testi_slider_main_wrapper {
    position: relative !important;
    overflow: hidden !important;
}

.gc_testi_slider_img_overlay {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(0, 30, 60, 0.95) 100%) !important;
}

.gc_testi_slider_content_wrapper h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
}

.gc_testi_slider_bottom_content_wrapper h4 {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 22px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
}

.gc_testi_slider_bottom_content_wrapper p {
    font-family: 'Inter', sans-serif !important;
    color: #e5ae49 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.gc_testi_slider_bottom_content_wrapper p span {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 400 !important;
}

/* --------------------------------------------------------------------------
   9. CLIENT TESTIMONIAL SECTION — Premium
   -------------------------------------------------------------------------- */

.gc_client_main_wrapper {
    position: relative !important;
    overflow: hidden !important;
}

.gc_client_img_overlay {
    background: linear-gradient(135deg, rgba(15, 36, 62, 0.94) 0%, rgba(6, 19, 36, 0.96) 100%) !important;
}

.gc_client_cont_wrapper p {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.9 !important;
}

.gc_client_img_wrapper img {
    border-radius: 50% !important;
    border: 3px solid rgba(229, 174, 73, 0.4) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s ease !important;
}

.gc_client_img_wrapper img:hover {
    border-color: #e5ae49 !important;
    transform: scale(1.05) !important;
}

.gc_client_social_wrapper p {
    font-family: 'Inter', sans-serif !important;
    color: #e5ae49 !important;
    font-weight: 600 !important;
}

.gc_client_social_wrapper p span {
    color: rgba(255, 255, 255, 0.6) !important;
}

.gc_client_social_wrapper ul li a {
    transition: all 0.3s ease !important;
}

.gc_client_social_wrapper ul li a:hover {
    color: #e5ae49 !important;
    transform: translateY(-3px) !important;
}

/* --------------------------------------------------------------------------
   10. CEREMONY / WHAT WE DO SECTION — Refined
   -------------------------------------------------------------------------- */

.gc_ceremony_main_wrapper {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    background: #ffffff !important;
}

.gc_cere_list h4,
.gc_cere_accor h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 20px !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.gc_cere_list h4::after,
.gc_cere_accor h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #e5ae49, transparent) !important;
    border-radius: 3px !important;
}

.gc_cere_list p {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.8 !important;
}

.gc_cere_list ul li {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #475569 !important;
    transition: all 0.3s ease !important;
    padding: 6px 0 !important;
}

.gc_cere_list ul li:hover {
    color: #00468c !important;
    padding-left: 5px !important;
}

.gc_cere_list ul li i {
    color: #e5ae49 !important;
    margin-right: 10px !important;
}

/* Accordion panels */
.truck_pannel {
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.truck_pannel:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
}

.truck_pannel .panel-heading {
    background: #f8fafc !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.truck_pannel .panel-heading:hover {
    background: #f1f5f9 !important;
}

.truck_pannel .panel-title a {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    text-decoration: none !important;
}

.truck_pannel .panel-body {
    padding: 20px !important;
}

.panel_cont p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
}

/* Ceremony Image Section */
.gc_ceremony_img_wrapper {
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative !important;
}

.gc_ceremony_img_overlay {
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgb(0 0 0 / 85%) 0%, rgba(0, 40, 80, 0.9) 100%) !important;
}

.gc_ceremony_heading_cont h2 {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.gc_ceremony_heading_cont h1 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 36px !important;
    letter-spacing: 1px !important;
}

.gc_ceremony_btn ul li a {
    border-radius: 30px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(229, 174, 73, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gc_ceremony_btn ul li a:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #00468c !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-3px) !important;
}

/* Volunteer Bar */
.gc_merry_count_wrapper {
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    border-radius: 16px !important;
    margin-top: 40px !important;
    box-shadow: 0 8px 30px rgba(229, 174, 73, 0.3) !important;
}

.gc_merry_count h2 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #ffffff !important;
}

.gc_merry_count h2 i {
    color: #ffffff !important;
}

.gc_merry_count h2 span {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* --------------------------------------------------------------------------
   11. BIBLE CONTENT & SCRIPTURE SECTION — Overhauled
   -------------------------------------------------------------------------- */

.gc_video_main_wrapper {
    position: relative !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transition: background 0.5s ease-in-out !important;
}

/* Enhancing dark overlay to ensure high readability of scripture text */
.gc_video_img_overlay {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(2, 12, 27, 0.9) 100%) !important;
}

.gc_video_box {
    text-align: left !important;
    /* Keep left alignment to balance with right-side silhouette */
    padding: 40px 0 !important;
    float: left !important;
    width: 100% !important;
}

/* Elegant gold tag/badge at the top */
.scripture-badge {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(229, 174, 73, 0.1) !important;
    border: 1px solid rgba(229, 174, 73, 0.35) !important;
    color: #e5ae49 !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.scripture-badge .badge-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #e5ae49 !important;
    border-radius: 50px !important;
    margin-right: 8px !important;
    display: inline-block !important;
    box-shadow: 0 0 8px #e5ae49 !important;
}

/* Beautiful large serif quotes */
.scripture-quote {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 38px !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #ffffff !important;
    line-height: 1.45 !important;
    margin: 0 0 25px 0 !important;
    max-width: 100% !important;
    /* Spans full width of container */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55) !important;
    text-transform: none !important;
}

/* Elegant reference line */
.scripture-reference {
    display: flex !important;
    align-items: center !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #e5ae49 !important;
    margin-bottom: 35px !important;
}

/* Primary Button Styling */
.gc_video_btn_wrapper ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gc_video_btn_wrapper ul li {
    margin: 0 !important;
}

.gc_video_btn_wrapper ul li a.btn {
    border-radius: 30px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important;
    width: auto !important;
    min-width: 170px !important;
    padding: 0 25px !important;
}

/* Primary style (Gold Solid) */
.gc_video_btn_wrapper ul li a.btn.btn-primary {
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(229, 174, 73, 0.35) !important;
}

.gc_video_btn_wrapper ul li a.btn.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(229, 174, 73, 0.5) !important;
}

/* Secondary style (Outlined White) */
.gc_video_btn_wrapper ul li a.btn.btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
}

.gc_video_btn_wrapper ul li a.btn.btn-secondary:hover {
    background: #ffffff !important;
    color: #0c1e36 !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .scripture-quote {
        font-size: 32px !important;
        max-width: 100% !important;
    }

    .gc_video_box {
        text-align: center !important;
    }

    .scripture-reference {
        justify-content: center !important;
    }

    .scripture-reference span {
        display: none !important;
    }

    .gc_video_btn_wrapper ul {
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .scripture-quote {
        font-size: 26px !important;
    }

    .gc_video_main_wrapper {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

/* Play button glow */
.popup-youtube img {
    transition: all 0.4s ease !important;
    filter: drop-shadow(0 4px 15px rgba(229, 174, 73, 0.4)) !important;
}

.popup-youtube:hover img {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 6px 25px rgba(229, 174, 73, 0.6)) !important;
}

/* --------------------------------------------------------------------------
   12. MAP / CONTACT SECTION — Premium
   -------------------------------------------------------------------------- */

.gc_map_main_wrapper {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.gc_get_box_wrapper {
    background: linear-gradient(135deg, #151515 0%, #151515 100%) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    box-shadow: 0 15px 50px rgba(0, 70, 140, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.gc_get_box_wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: -40% !important;
    right: -20% !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(229, 174, 73, 0.1) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.gc_get_heading h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.gc_get_pera p {
    font-family: 'Inter', sans-serif !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.gc_get_pera p a {
    color: #e5ae49 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(229, 174, 73, 0.3) !important;
    transition: all 0.3s ease !important;
}

.gc_get_pera p a:hover {
    border-bottom-color: #e5ae49 !important;
}

.gc_map_location_icon_wrapper i {
    color: #e5ae49 !important;
    font-size: 24px !important;
}

.gc_map_location_icon_cont_wrapper h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
}

.gc_map_location_icon_cont_wrapper h3 a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.3s ease !important;
}

.gc_map_location_icon_cont_wrapper h3 a:hover {
    color: #e5ae49 !important;
}

/* Contact Form Card */
.gc_right_map_main_wrapper {
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
    padding: 40px !important;
    background: #ffffff !important;
}

.gc_right_map_main_wrapper h3 {
    font-family: 'Playfair Display', serif !important;
    color: #0f172a !important;
    border-bottom: 2px solid #e5ae49 !important;
}

.gc_right_map_main_wrapper .form-control {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
    padding: 12px 16px !important;
}

.gc_right_map_main_wrapper .form-control:focus {
    border-color: #00468c !important;
    box-shadow: 0 0 0 4px rgba(0, 70, 140, 0.1) !important;
}

.gc_right_map_main_wrapper button[type="submit"] {
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    background: linear-gradient(135deg, #151515 0%, #151515 100%) !important;
    box-shadow: 0 6px 20px rgba(0, 70, 140, 0.25) !important;
    transition: all 0.4s ease !important;
}

.gc_right_map_main_wrapper button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 70, 140, 0.35) !important;
}

/* --------------------------------------------------------------------------
   13. FOOTER — Premium Dark Design
   -------------------------------------------------------------------------- */

.gc_footer_main_wrapper {
    position: relative !important;
}

.gc_footer_img_overlay {
    background: linear-gradient(135deg, rgba(6, 19, 36, 0.97) 0%, rgba(10, 25, 47, 0.98) 100%) !important;
}

.gc_footer_logo_wrapper {
    padding-bottom: 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-bottom: 40px !important;
}

.gc_footer_news h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    position: relative !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
}

.gc_footer_news h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: #e5ae49 !important;
    border-radius: 2px !important;
}

.gc_footer_news p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.8 !important;
}

.gc_footer_news_email h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #e5ae49 !important;
}

.gc_footer_news_email input[type="email"] {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
}

.gc_footer_news_email input[type="email"]:focus {
    border-color: #e5ae49 !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Footer Latest News items */
.gc_footer_ln_main_wrapper,
.gc_footer_ln_main_wrapper2 {
    transition: all 0.3s ease !important;
    padding: 10px !important;
    border-radius: 10px !important;
}

.gc_footer_ln_main_wrapper:hover,
.gc_footer_ln_main_wrapper2:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.gc_footer_ln_img_wrapper img {
    border-radius: 10px !important;
}

.gc_footer_ln_cont_wrapper h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.3s ease !important;
}

.gc_footer_ln_cont_wrapper h4 a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.gc_footer_ln_cont_wrapper h4 a:hover {
    color: #e5ae49 !important;
}

.gc_footer_ln_cont_wrapper h4:hover {
    color: #e5ae49 !important;
}

.gc_footer_ln_cont_wrapper p {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Footer Useful Links */
.gc_footer_ul_main_wrapper ul li {
    transition: all 0.3s ease !important;
    padding: 5px 0 !important;
}

.gc_footer_ul_main_wrapper ul li a {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    transition: all 0.3s ease !important;
}

.gc_footer_ul_main_wrapper ul li:hover a {
    color: #e5ae49 !important;
    padding-left: 5px !important;
}

.gc_footer_ul_main_wrapper ul li i {
    color: #e5ae49 !important;
    margin-right: 8px !important;
    font-size: 12px !important;
    transition: all 0.3s ease !important;
}

/* Footer Instagram Grid */
.gc_footer_insta_img_wrapper {
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
}

.gc_footer_insta_img_wrapper img {
    border-radius: 10px !important;
    transition: all 0.4s ease !important;
}

.gc_footer_insta_img_wrapper:hover img {
    transform: scale(1.08) !important;
    filter: brightness(1.1) !important;
}

/* Bottom Footer */
.gc_bottom_footer_main_wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #0a1628 !important;
    position: relative !important;
}

.gc_bottom_footer_copy_wrapper p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

.gc_bottom_footer_copy_wrapper p a {
    color: #e5ae49 !important;
    font-weight: 600 !important;
}

.gc_bottom_footer_right_wrapper ul li a {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    letter-spacing: 1px !important;
    transition: color 0.3s ease !important;
}

.gc_bottom_footer_right_wrapper ul li a:hover {
    color: #e5ae49 !important;
}

/* --------------------------------------------------------------------------
   14. HEADER / NAVIGATION — Subtle Polish
   -------------------------------------------------------------------------- */

.gc_main_menu_wrapper {
    transition: all 0.4s ease !important;
}

.mainmenu ul li a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.gc_logo img {
    transition: all 0.3s ease !important;
}

.gc_logo:hover img {
    transform: scale(1.02) !important;
}

/* Share / Search icons polish */
.gc_right_menu ul li {
    transition: all 0.3s ease !important;
}

.gc_right_menu ul li:hover {
    transform: translateY(-2px) !important;
}

/* Sidenav overlay */
.sidenav {
    background: linear-gradient(135deg, #e6aa46 0%, #00468c 100%) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3) !important;
}

.sidenav ul li a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.sidenav ul li a:hover {
    color: #e5ae49 !important;
    padding-left: 25px !important;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE REFINEMENTS
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {

    .gc_blog_heading h1,
    .gc_com_event_icon_wrapper h1,
    .gc_recent_icon_wrapper h1,
    .gc_about_heading h1 {
        font-size: 32px !important;
    }

    .gc_blogs_main_wrapper,
    .gc_com_event_main_wrapper,
    .gc_recent_main_wrapper,
    .gc_about_story_main_wrapper,
    .gc_ceremony_main_wrapper,
    .gc_map_main_wrapper {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .gc_get_box_wrapper {
        padding: 35px 25px !important;
    }
}

@media (max-width: 767px) {

    .gc_blog_heading h1,
    .gc_com_event_icon_wrapper h1,
    .gc_recent_icon_wrapper h1,
    .gc_about_heading h1 {
        font-size: 26px !important;
    }

    .gc_blog_heading h2,
    .gc_com_event_icon_wrapper h2,
    .gc_recent_icon_wrapper h2,
    .gc_about_heading h2 {
        font-size: 22px !important;
    }

    .gc_blog_post_wrapper {
        margin-top: 30px !important;
    }

    .gc_blog_date_main_sec {
        padding: 20px 20px 10px !important;
    }

    .gc_blog_img_wrapper img {
        height: 200px !important;
    }

    .gc_testi_slider_bottom_content_wrapper h4 {
        font-size: 18px !important;
    }

    .gc_get_box_wrapper {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }

    .gc_get_heading h1 {
        font-size: 26px !important;
    }

    .gc_right_map_main_wrapper {
        padding: 25px !important;
        border-radius: 16px !important;
    }

    .gc_ceremony_heading_cont h1 {
        font-size: 28px !important;
    }

    .gc_footer_news h3 {
        font-size: 18px !important;
    }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION — Premium Dark Redesign
   -------------------------------------------------------------------------- */

.gc_about_story_main_wrapper {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.gc_about_story_img_overlay {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(5, 14, 26, 0.97) 100%) !important;
    opacity: 1 !important;
}

.gc_about_img_wrapper {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 40px !important;
}

.gc_about_img_wrapper img {
    border-radius: 20px !important;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform !important;
    transform: translateZ(0) !important;
}

.gc_about_img_wrapper:hover img {
    transform: scale(1.04) !important;
}

.gc_about_heading h2 {
    text-align: left !important;
    color: #e5ae49 !important;
    font-family: 'Playfair Display', 'Great Vibes', serif !important;
    font-style: italic !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    padding-top: 40px !important;
}

.gc_about_heading h1 {
    text-align: left !important;
    color: #ffffff !important;
    font-family: 'Playfair Display', 'Raleway', serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    padding-bottom: 25px !important;
    position: relative !important;
    width: auto !important;
    float: none !important;
}

.gc_about_heading h1:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #e5ae49, #f5c97a) !important;
    border-radius: 3px !important;
    display: block !important;
    border: none !important;
}

.gc_about_heading:after,
.gc_about_heading:before {
    display: none !important;
}

.gc_about_heading_wrapper p {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
    padding-top: 25px !important;
}

/* About sub-items and icons */
.gc_about_cont_wrapper {
    margin-top: 35px !important;
    position: relative !important;
    float: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.gc_about_cont_wrapper:before,
.gc_about_cont_wrapper:after {
    display: none !important;
}

.gc_about_icons_wrapper {
    float: none !important;
    width: auto !important;
}

.gc_about_icons_wrapper i {
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 12px !important;
    background: rgba(229, 174, 73, 0.12) !important;
    color: #e5ae49 !important;
    font-size: 18px !important;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    display: inline-block !important;
    text-align: center !important;
    padding-top: 0 !important;
}

.gc_about_cont_wrapper:hover .gc_about_icons_wrapper i {
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(229, 174, 73, 0.3) !important;
}

.gc_about_icons_cont_wrapper {
    float: none !important;
    width: auto !important;
    padding-left: 0 !important;
}

.gc_about_icons_cont_wrapper h3,
.gc_about_icons_cont_wrapper h3 a {
    font-family: 'Playfair Display', serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.gc_about_icons_cont_wrapper h3 a:hover {
    color: #e5ae49 !important;
}

.gc_about_bottom_cont_wrapper {
    padding-top: 10px !important;
    float: none !important;
    width: 100% !important;
}

.gc_about_bottom_cont_wrapper p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.7 !important;
}

/* Plus/dot icon wrapper */
.gc_dot_wrapper {
    float: none !important;
    width: auto !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 15px !important;
}

.gc_dot_wrapper .gc_dot {
    animation: none !important;
    opacity: 1 !important;
}

.gc_dot a {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    backdrop-filter: blur(5px) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gc_dot a:hover {
    background: #e5ae49 !important;
    border-color: #e5ae49 !important;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   17. INNER PAGES & SINGLE POST REDESIGN
   -------------------------------------------------------------------------- */

.gc_event_main_wrapper {
    background: linear-gradient(135deg, #0f243e 0%, #061324 100%) !important;
    color: #ffffff !important;
    padding: 100px 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    border-bottom: 3px solid #e5ae49 !important;
    margin-bottom: 40px;
}

.gc_event_main_wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle at center, rgba(229, 174, 73, 0.08) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.gc_event_main_wrapper h1,
.gc_event_main_wrapper h1 a,
.gc_event_main_wrapper h2,
.gc_event_main_wrapper h2 a {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.gc_blogs_main_wrapper {
    padding: 80px 0 !important;
    background: #f1f5f9 !important;
}

/* Hide empty headings from database descriptions (preventing empty gold lines) */
.saint_desc_content h3:empty,
.entry_content h3:empty {
    display: none !important;
}

/* Premium blockquotes */
blockquote {
    border-left: 4px solid #e5ae49 !important;
    padding-left: 20px !important;
    margin: 30px 0 !important;
    font-style: italic !important;
    color: #475569 !important;
    font-size: 18px !important;
    background: #f8fafc !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    border-radius: 0 12px 12px 0 !important;
}

/* Single Post Layout */
.gc_single_post {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #f1f5f9 !important;
    padding: 40px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.post-thumbnail {
    border-radius: 16px !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.post-thumbnail img {
    width: 100% !important;
    height: auto !important;
}

.entry-meta {
    margin-bottom: 25px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #94a3b8 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.entry-meta span {
    display: inline-flex !important;
    align-items: center !important;
}

.entry-meta span i {
    color: #e5ae49 !important;
    margin-right: 6px !important;
    font-size: 14px !important;
}

.entry-meta span a {
    color: #64748b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    font-weight: 500 !important;
}

.entry-meta span a:hover {
    color: #e5ae49 !important;
}

/* Force Lora font for single post content, paragraphs, and list elements */
.entry-content,
.entry-content p,
.gc_single_post .entry-content,
.gc_single_post .entry-content p,
.gc_single_post .entry-content ul,
.gc_single_post .entry-content ol,
.gc_single_post .entry-content li,
.single-post .entry-content p,
.single .entry-content p,
.post-template-default .entry-content p,
article.post .entry-content p {
    font-family: 'Lora', 'Droid Serif', Georgia, Cambria, 'Times New Roman', Times, serif !important;
    font-size: 19px !important;
    line-height: 1.95 !important;
    color: #1e293b !important;
    /* Rich high-contrast slate black */
    letter-spacing: -0.003em !important;
}

/* Responsive font sizes for mobile comfort */
@media (max-width: 768px) {

    .entry-content,
    .entry-content p,
    .gc_single_post .entry-content p,
    .single-post .entry-content p {
        font-size: 17px !important;
        line-height: 1.8 !important;
    }
}

.entry-content p {
    margin-bottom: 26px !important;
}

/* Premium Typography for headings inside blog posts */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-top: 40px !important;
    margin-bottom: 16px !important;
}

.entry-content h1 {
    font-size: 32px !important;
}

.entry-content h2 {
    font-size: 28px !important;
}

.entry-content h3 {
    font-size: 24px !important;
}

.entry-content h4 {
    font-size: 20px !important;
}

/* Polish blockquotes inside articles */
.entry-content blockquote {
    background: #f8fafc !important;
    border-left: 4px solid #e5ae49 !important;
    padding: 24px 28px !important;
    margin: 35px 0 !important;
    border-radius: 0 12px 12px 0 !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02) !important;
}

.entry-content blockquote p {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-size: 20px !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    margin-bottom: 0 !important;
}

/* Premium styling for links in text */
.entry-content a {
    color: #00468c !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.entry-content a:hover {
    color: #e5ae49 !important;
}

/* Bullet list and number list spacing */
.entry-content ul,
.entry-content ol {
    font-family: 'Lora', 'Droid Serif', Georgia, Cambria, 'Times New Roman', Times, serif !important;
    margin-bottom: 26px !important;
    padding-left: 24px !important;
}

.entry-content li {
    font-family: 'Lora', 'Droid Serif', Georgia, Cambria, 'Times New Roman', Times, serif !important;
    margin-bottom: 12px !important;
    line-height: 1.9 !important;
}

.entry-footer {
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 25px !important;
    margin-top: 35px !important;
}

.tags-links {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #64748b !important;
}

.tags-links i {
    color: #e5ae49 !important;
    margin-right: 6px !important;
}

.tags-links a {
    color: #00468c !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.tags-links a:hover {
    color: #e5ae49 !important;
}

/* Post Navigation Links */
.post-navigation-links {
    margin-bottom: 50px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.nav-previous,
.nav-next {
    flex: 1 !important;
}

.nav-next {
    text-align: right !important;
}

.nav-previous a,
.nav-next a {
    display: block !important;
    padding: 15px 25px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    color: #00468c !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: #00468c !important;
    color: #ffffff !important;
    border-color: #00468c !important;
    box-shadow: 0 8px 20px rgba(0, 70, 140, 0.15) !important;
    transform: translateY(-2px) translateZ(0);
}

/* Sidebar Styling Premium Refresh */
.gc_sidebar_wrapper {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 1px solid #f1f5f9 !important;
    padding: 35px 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.gc_sidebar_wrapper .widget {
    margin-bottom: 40px !important;
    display: block !important;
    float: none !important;
    width: 100% !important;
}

.gc_sidebar_wrapper .widget:last-child {
    margin-bottom: 0 !important;
}

.gc_sidebar_wrapper .widget-title,
.gc_sidebar_wrapper .widget .widget-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    position: relative !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f1f5f9 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.gc_sidebar_wrapper .widget-title::after,
.gc_sidebar_wrapper .widget .widget-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: #e5ae49 !important;
}

.gc_sidebar_wrapper .widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gc_sidebar_wrapper .widget ul li {
    padding: 12px 0 !important;
    border-bottom: 1px dashed #e2e8f0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}

.gc_sidebar_wrapper .widget ul li:last-child {
    border-bottom: none !important;
}

.gc_sidebar_wrapper .widget ul li a {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    font-weight: 500 !important;
    display: inline-block !important;
}

.gc_sidebar_wrapper .widget ul li a:hover {
    color: #e5ae49 !important;
    transform: translateX(4px) translateZ(0);
}

.gc_sidebar_wrapper .widget ul li .post-date {
    display: block !important;
    font-size: 12px !important;
    color: #94a3b8 !important;
    margin-top: 4px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Search widget styling */
.gc_sidebar_wrapper .widget_search form {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
}

.gc_sidebar_wrapper .widget_search form label {
    flex: 1 !important;
    margin: 0 !important;
    width: 100% !important;
}

.gc_sidebar_wrapper .widget_search form input[type="search"],
.gc_sidebar_wrapper .widget_search form .search-field {
    width: 100% !important;
    padding: 10px 16px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    outline: none !important;
    background: #f8fafc !important;
    transition: all 0.2s ease !important;
}

.gc_sidebar_wrapper .widget_search form input[type="search"]:focus,
.gc_sidebar_wrapper .widget_search form .search-field:focus {
    border-color: #00468c !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(0, 70, 140, 0.1) !important;
}

.gc_sidebar_wrapper .widget_search form input[type="submit"],
.gc_sidebar_wrapper .widget_search form button {
    background: #00468c !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.gc_sidebar_wrapper .widget_search form input[type="submit"]:hover,
.gc_sidebar_wrapper .widget_search form button:hover {
    background: #e5ae49 !important;
    box-shadow: 0 4px 12px rgba(229, 174, 73, 0.2) !important;
}

/* Prevent header elements from clipping the dropdown menus */
.gc_main_menu_wrapper,
.gc_main_menu_wrapper .container,
.gc_main_menu_wrapper .row,
.gc_main_menu_wrapper .col-lg-3,
.gc_main_menu_wrapper .col-md-2,
.gc_main_menu_wrapper .col-md-4,
.gc_main_menu_wrapper .col-lg-6,
.gc_main_menu_wrapper .col-xs-12,
.gc_main_menu_wrapper .col-sm-12,
.gc_header_wrapper,
.gc_right_menu,
#sticker,
.header-area {
    overflow: visible !important;
}

.gc_main_menu_wrapper,
#sticker,
.header-area {
    position: relative !important;
    z-index: 99999 !important;
}

/* Modern Share Box Dropdown */
.gc_right_menu>ul>li .gc_share_box {
    position: absolute !important;
    top: 130% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    width: 180px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    padding: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 99999 !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.gc_right_menu>ul>li:hover .gc_share_box {
    top: 120% !important;
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gc_right_menu>ul>li .gc_share_box::after {
    content: "" !important;
    position: absolute !important;
    top: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    margin: 0 !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid #ffffff !important;
    z-index: 2 !important;
}

.gc_right_menu>ul>li .gc_share_box::before {
    content: "" !important;
    position: absolute !important;
    top: -9px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    margin: 0 !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid #e2e8f0 !important;
    z-index: 1 !important;
}

.gc_right_menu>ul>li .gc_share_box>ul {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gc_right_menu>ul>li .gc_share_box>ul>li {
    float: none !important;
    width: auto !important;
    border-bottom: none !important;
    list-style: none !important;
    padding: 0 !important;
}

.gc_right_menu>ul>li .gc_share_box>ul>li>a {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 14px !important;
    color: #475569 !important;
    background: #f8fafc !important;
    border-radius: 50% !important;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.gc_right_menu>ul>li .gc_share_box>ul>li>a:hover {
    background-color: #e5ae49 !important;
    color: #ffffff !important;
    transform: scale(1.1) translateZ(0);
}

/* --------------------------------------------------------------------------
   16. SELECTION & FOCUS POLISH
   -------------------------------------------------------------------------- */

::selection {
    background: #e5ae49 !important;
    color: #ffffff !important;
}

::-moz-selection {
    background: #e5ae49 !important;
    color: #ffffff !important;
}

/* Focus rings for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #e5ae49 !important;
    outline-offset: 3px !important;
    border-radius: 4px !important;
}

/* Footer Newsletter Input Group */
.gxbible-footer-newsletter-group {
    display: flex !important;
    margin-top: 30px !important;
    position: relative !important;
    width: 100% !important;
    height: 50px !important;
}

.gxbible-footer-newsletter-group input[type="email"] {
    flex: 1 !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: none !important;
    border-radius: 10px 0 0 10px !important;
    padding: 0 16px !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    margin-top: 0 !important;
    transition: all 0.3s ease !important;
}

.gxbible-footer-newsletter-group input[type="email"]:focus {
    border-color: #e5ae49 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
}

.gxbible-footer-newsletter-group button {
    height: 100% !important;
    background: #e5ae49 !important;
    color: #0c1e36 !important;
    border: 1px solid #e5ae49 !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 0 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gxbible-footer-newsletter-group button:hover {
    background: #d49a37 !important;
    border-color: #d49a37 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(229, 174, 73, 0.25) !important;
}

.gxbible-footer-newsletter-group button i {
    margin-left: 0 !important;
    margin-right: 8px !important;
}

.gxbible-footer-newsletter-group button:active {
    transform: translateY(1px);
}

.gxbible-footer-newsletter-group button:disabled {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed !important;
}

/* Responsive Sticky Options for Prayers Page */
@media (min-width: 992px) {
    .gxbible-prayers-row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
    }

    .gxbible-prayer-form-card {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 140px !important;
        /* Elegant offset below the sticky navigation header */
    }
}

/* ==========================================================================
   BIRTHDAY BLESSINGS PAGE STYLES
   ========================================================================== */

.gxbible-birthday-section {
    font-family: 'Inter', sans-serif;
}

@media (min-width: 992px) {
    .gxbible-birthday-row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
    }

    .gxbible-birthday-form-card {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 140px !important;
    }
}

/* Featured Wish Card */
.gxbible-featured-wish-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gxbible-featured-wish-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(229, 174, 73, 0.12) !important;
}

#gxbible-next-wish-btn:hover {
    background: #e5ae49 !important;
    color: #0c1e36 !important;
    box-shadow: 0 6px 15px rgba(229, 174, 73, 0.3) !important;
}

#gxbible-next-wish-btn:active {
    transform: scale(0.97) !important;
}

#gxbible-featured-copy-btn:hover {
    background: #f1f5f9 !important;
    color: #0c1e36 !important;
    border-color: #94a3b8 !important;
}

/* Wish Directory Grid Cards */
.gxbible-wish-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gxbible-wish-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05) !important;
    border-color: #cbd5e1 !important;
}

.gxbible-copy-wish-btn:hover {
    color: #002d5c !important;
}

/* Load More Button */
#gxbible-load-more-wishes-btn:hover {
    background: #e5ae49 !important;
    color: #0c1e36 !important;
    box-shadow: 0 6px 18px rgba(229, 174, 73, 0.25) !important;
    transform: translateY(-2px) !important;
}

#gxbible-load-more-wishes-btn:active {
    transform: translateY(0) !important;
}

#gxbible-load-more-wishes-btn.loading {
    border-color: #cbd5e1 !important;
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   12. HEADER SEARCH BOX OVERLAP & DESIGN OVERHAUL
   -------------------------------------------------------------------------- */
.gc_main_menu_wrapper .col-lg-3.hidden-sm.hidden-xs {
    position: relative !important;
    z-index: 999999 !important;
}

.gc_main_menu_wrapper .col-lg-6 {
    position: relative !important;
    z-index: 1000 !important;
}

.gc_right_menu {
    position: relative !important;
    z-index: 999999 !important;
}

.gc_search_box {
    z-index: 999999 !important;
    background-color: #ffffff !important;
    border-radius: 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    width: 350px !important;
    height: 54px !important;
    /* Slightly shorter for a sleeker look */
    top: 3px !important;
    /* Center vertically in header */
}

.gc_search_box form {
    background-color: #ffffff !important;
    position: relative !important;
    z-index: 999999 !important;
    display: flex !important;
    height: 100% !important;
}

.gc_search_box input {
    background-color: #ffffff !important;
    position: relative !important;
    z-index: 1000000 !important;
    border: none !important;
    height: 100% !important;
    width: calc(100% - 60px) !important;
    padding: 0 25px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #334155 !important;
    outline: none !important;
    box-shadow: none !important;
}

.gc_search_box button {
    width: 60px !important;
    height: 100% !important;
    color: #ffffff !important;
    border: none !important;
    background: linear-gradient(135deg, #e5ae49 0%, #d4982f 100%) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gc_search_box button:hover {
    background: #0c1e36 !important;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   13. PRAYER REQUEST FORM STYLING
   -------------------------------------------------------------------------- */
.gxbible-prayer-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    max-width: 600px !important;
    margin: 40px auto !important;
    padding: 40px !important;
    font-family: 'Inter', sans-serif !important;
}

@media (max-width: 768px) {
    .gxbible-prayer-card {
        padding: 25px 20px !important;
        margin: 20px auto !important;
    }
}

.gxbible-prayer-header {
    text-align: left !important;
    margin-bottom: 30px !important;
}

.gxbible-prayer-header h2 {
    font-family: 'Droid Serif', serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #0c1e36 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
}

.gxbible-prayer-header p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin: 0 !important;
}

.gxbible-form-group {
    margin-bottom: 22px !important;
}

.gxbible-form-group label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
}

.gxbible-form-group input[type="text"],
.gxbible-form-group input[type="email"],
.gxbible-form-group select,
.gxbible-form-group textarea {
    width: 100% !important;
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #1e293b !important;
    outline: none !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.gxbible-form-group input[type="text"]::placeholder,
.gxbible-form-group input[type="email"]::placeholder,
.gxbible-form-group textarea::placeholder {
    color: #94a3b8 !important;
}



.gxbible-form-group input[type="text"]:focus,
.gxbible-form-group input[type="email"]:focus,
.gxbible-form-group select:focus,
.gxbible-form-group textarea:focus {
    border-color: #e5ae49 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(229, 174, 73, 0.15) !important;
}

.gxbible-checkbox-group {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
    text-align: left !important;
}

.gxbible-checkbox-group input[type="checkbox"] {
    margin-top: 4px !important;
    cursor: pointer !important;
    width: 16px !important;
    height: 16px !important;
}

.gxbible-checkbox-group label {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #64748b !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    user-select: none !important;
    margin: 0 !important;
}

.gxbible-prayer-btn-submit {
    width: 100% !important;
    background-color: #151515 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(21, 21, 21, 0.1) !important;
}

.gxbible-prayer-btn-submit:hover {
    background-color: #e5ae49 !important;
    color: #0c1e36 !important;
    box-shadow: 0 6px 18px rgba(229, 174, 73, 0.25) !important;
    transform: translateY(-2px) !important;
}

.gxbible-prayer-btn-submit:active {
    transform: translateY(0) !important;
}

.gxbible-prayer-response {
    padding: 15px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

.gxbible-prayer-response.success {
    background-color: #ecfdf5 !important;
    border: 1px solid #a7f3d0 !important;
    color: #065f46 !important;
}

.gxbible-prayer-response.error {
    background-color: #fef2f2 !important;
    border: 1px solid #fca5a5 !important;
    color: #991b1b !important;
}