/* Design Tokens */
:root {
    --brand-primary-500: #2563eb;
    --brand-primary-600: #1d4ed8;
    --brand-primary-700: #1e40af;
    --brand-primary-glow: rgba(37, 99, 235, 0.35);
    --brand-primary-glow-strong: rgba(29, 78, 216, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
    border-color: var(--brand-primary-600);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 32px var(--brand-primary-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease;
    background-size: 200% 200%;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, var(--brand-primary-600), var(--brand-primary-700));
    border-color: var(--brand-primary-700);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px var(--brand-primary-glow-strong);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(191, 219, 254, 0.75);
    outline-offset: 2px;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background: var(--brand-primary-500);
    border-color: var(--brand-primary-500);
    box-shadow: none;
    opacity: 0.65;
    cursor: not-allowed;
}

/* Simple Clean Navbar Styles */
.navbar {
    background: #2c3e50 !important;
    border-bottom: 2px solid #34495e;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 100%;
}

.navbar.scrolled {
    background: #34495e !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: "Russo One", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0.5rem 0;
}

.navbar-brand:hover {
    color: #3498db;
    text-decoration: none;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #ecf0f1 !important;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.75rem 1rem !important;
    margin: 0 0.125rem;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3498db !important;
    background: #34495e;
    text-decoration: none;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background: #3498db;
    color: #ffffff !important;
}

/* Awesome Dropdown Styles */
.dropdown-menu {
    background: #ffffff;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: slideDown 0.3s ease;
    min-width: 200px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.dropdown-item {
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    position: relative;
}

.dropdown-item:hover {
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    transform: translateX(5px);
}

.dropdown-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #ecf0f1;
}

.navbar-toggler {
    border: 2px solid #ecf0f1;
    padding: 0.5rem;
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: #34495e;
    border-color: #3498db;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ecf0f1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.btn-login {
    background: linear-gradient(135deg, var(--brand-primary-500), var(--brand-primary-600));
    border: 2px solid var(--brand-primary-600);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    min-height: 2.5rem;
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--brand-primary-600), var(--brand-primary-700));
    border-color: var(--brand-primary-700);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-logout {
    background: #e74c3c;
    border: 2px solid #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.btn-logout:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: #ffffff;
    transform: translateY(-1px);
}

.user-welcome {
    color: #ecf0f1;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: #34495e;
    border-radius: 5px;
    margin: 0;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
    border: 1px solid #2c3e50;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 2.5rem;
}

.user-welcome:hover {
    background: #2c3e50;
    transform: translateY(-1px);
}

.user-welcome a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.user-welcome a:hover {
    color: #3498db;
    text-decoration: none;
}

/* Bell Icon Notification */
.notification-icon {
    position: relative;
    color: #ecf0f1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.notification-icon:hover {
    color: #3498db;
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #34495e;
        border: 1px solid #2c3e50;
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.8rem;
    }

    .dropdown-menu {
        background: #ffffff;
        border: 1px solid #bdc3c7;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        margin-top: 0;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .btn-login,
    .btn-logout {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.6rem 1rem !important;
    }
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(44, 62, 80, 0.55),
            rgba(44, 62, 80, 0.35));
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-kicker {
    display: inline-block;
    background: rgba(236, 240, 241, 0.1);
    border: 1px solid rgba(236, 240, 241, 0.25);
    color: #ecf0f1;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    backdrop-filter: saturate(140%) blur(6px);
}

.hero-title {
    font-family: "Russo One", sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ecf0f1;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: center;
}

.hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #3498db;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #bdc3c7;
    margin: 0 0 2.5rem 0;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    justify-items: center;
}

.hero-stat {
    background: rgba(236, 240, 241, 0.06);
    border: 1px solid rgba(236, 240, 241, 0.18);
    padding: 0.875rem 1rem;
    border-radius: 12px;
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    backdrop-filter: saturate(140%) blur(6px);
}

.hero-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-stat-value {
    display: block;
    font-family: "Russo One", sans-serif;
    font-size: 1.4rem;
    color: #ecf0f1;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    color: #bdc3c7;
}

.scroll-cue {
    margin-top: 2.25rem;
    background: transparent;
    border: none;
    color: #ecf0f1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.9;
}

.scroll-cue:hover {
    opacity: 1;
}

.scroll-cue-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #ecf0f1;
    border-radius: 20px;
    position: relative;
}

.scroll-cue-mouse::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ecf0f1;
    border-radius: 2px;
    animation: scrollDot 1.8s infinite ease-in-out;
}

.scroll-cue-text {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    color: #bdc3c7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, -4px);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, 6px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

.btn-hero-primary {
    background: #3498db;
    border: 2px solid #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin: 0;
}

.btn-hero-primary:hover {
    background: #2980b9;
    border-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid #ecf0f1;
    color: #ecf0f1;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin: 0;
}

.btn-hero-secondary:hover {
    background: #ecf0f1;
    border-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 240, 241, 0.3);
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem 0;
    }

    .hero-section .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin: 0 0 1rem 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 0 1rem 0;
    }

    .hero-description {
        font-size: 1rem;
        margin: 0 0 2rem 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .hero-section .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin: 0 0 0.75rem 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 0 0.75rem 0;
    }

    .hero-description {
        font-size: 0.95rem;
        margin: 0 0 1.5rem 0;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Quote Section Styles */
.quote-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    font-family: "Russo One", sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.section-title i {
    color: #3498db;
    font-size: 2rem;
}

.quote-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    padding: 0;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #ecf0f1;
}

.quote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
}

.quote-card-inner {
    padding: 3rem 2.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 30px;
    background: #3498db;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    z-index: 2;
}

.quote-content {
    margin-top: 1.5rem;
}

.quote-text {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0 0 2rem 0;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.quote-text::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 2px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 2rem;
}

.author-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #3498db, #2980b9);
    margin-right: 1rem;
    border-radius: 1px;
}

.author-name {
    font-family: "Russo One", sans-serif;
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-decoration {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 8px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #bdc3c7;
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.decoration-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Quote Card Responsive Styles */
@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .quote-card-inner {
        padding: 2.5rem 2rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -8px;
        left: 25px;
    }

    .quote-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .author-name {
        font-size: 1rem;
    }

    .quote-decoration {
        bottom: 15px;
        right: 25px;
    }
}

@media (max-width: 576px) {
    .quote-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .quote-card-inner {
        padding: 2rem 1.5rem;
    }

    .quote-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: -6px;
        left: 20px;
    }

    .quote-text {
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 0.5rem;
    }

    .quote-text::before {
        left: -0.5rem;
        width: 3px;
    }

    .author-line {
        width: 40px;
    }

    .author-name {
        font-size: 0.9rem;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 4rem 0;
    background: #ffffff;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #ecf0f1;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
}

.blog-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(44, 62, 80, 0.8),
            rgba(52, 152, 219, 0.6));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-category {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.blog-date {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-end;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.blog-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: #3498db;
    text-decoration: none;
}

.blog-description {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-read-more {
    background: #3498db;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.blog-read-more:hover {
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #95a5a6;
    font-size: 0.8rem;
    font-family: "Montserrat", sans-serif;
}

.blog-author i {
    color: #3498db;
}

.btn-blog-see-more {
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    border: 2px solid #2c3e50;
}

.btn-blog-see-more:hover {
    background: #34495e;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Blog Section Responsive Styles */
@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }

    .blog-image-container {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-description {
        font-size: 0.9rem;
    }

    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .blog-read-more {
        text-align: center;
        justify-content: center;
    }

    .btn-blog-see-more {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 2rem 0;
    }

    .blog-image-container {
        height: 180px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-description {
        font-size: 0.85rem;
    }

    .blog-read-more {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .btn-blog-see-more {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Prayer Request Section Styles */
.prayer-hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.prayer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    z-index: 1;
}

.prayer-hero-section .container {
    position: relative;
    z-index: 2;
}

.prayer-hero-title {
    font-family: "Russo One", sans-serif;
    font-size: 3rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.prayer-hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-prayer-scroll {
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.btn-prayer-scroll:hover {
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Prayer Form Section */
.prayer-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.prayer-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.1);
    padding: 3rem;
    border: 1px solid #ecf0f1;
}

.prayer-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.prayer-form-title {
    font-family: "Russo One", sans-serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.prayer-form-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.prayer-form .form-group {
    margin-bottom: 1.5rem;
}

.prayer-form .form-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: block;
}

.prayer-form .form-control {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.prayer-form .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.prayer-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.prayer-form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-prayer-submit {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-prayer-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Privacy Section */
.prayer-privacy-section {
    padding: 4rem 0;
    background: #ffffff;
}

.privacy-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #ecf0f1;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-title {
    font-family: "Russo One", sans-serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.privacy-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.15);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
}

.privacy-item-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.privacy-item-text {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    line-height: 1.6;
}

/* My Prayer List Styles */
.my-prayer-hero-section {
    padding: 3rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.my-prayer-title {
    font-family: "Russo One", sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.my-prayer-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.my-prayer-list-section {
    padding: 4rem 0;
    background: #ffffff;
}

.prayer-requests-grid {
    display: grid;
    gap: 2rem;
}

.prayer-request-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    border: 1px solid #ecf0f1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.prayer-request-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
}

.prayer-card-header {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prayer-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0;
}

.prayer-date {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

.status-badge.replied {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.prayer-card-body {
    padding: 2rem;
}

.prayer-text {
    font-family: "Montserrat", sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prayer-replies {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.replies-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reply-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #3498db;
}

.reply-item:last-child {
    margin-bottom: 0;
}

.no-replies {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.no-replies-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-size: 1.5rem;
}

.no-replies-text {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    margin: 0;
}

.prayer-card-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-top: 1px solid #ecf0f1;
}

.btn-prayer-delete {
    background: #e74c3c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prayer-delete:hover {
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.no-prayers-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    border: 2px dashed #bdc3c7;
}

.no-prayers-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #ffffff;
    font-size: 2rem;
}

.no-prayers-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-prayers-text {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-prayer-new {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-prayer-new:hover {
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-prayer-new-large {
    background: #2c3e50;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.btn-prayer-new-large:hover {
    background: #34495e;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Admin Prayer Management Styles */
.admin-prayer-hero-section {
    padding: 3rem 0;
    background: #2c3e50;
    color: #ffffff;
}

.admin-prayer-title {
    font-family: "Russo One", sans-serif;
    font-size: 2.5rem;
    color: #ecf0f1;
    margin: 0;
}

.admin-prayer-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #bdc3c7;
    font-size: 1.1rem;
    margin: 0.5rem 0 0 0;
}

.btn-admin-new-prayer {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-admin-new-prayer:hover {
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.admin-prayer-list-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.prayer-management-grid {
    display: grid;
    gap: 2rem;
}

.prayer-management-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    border: 1px solid #ecf0f1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.prayer-management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
}

.prayer-mgmt-header {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prayer-mgmt-subject {
    font-family: "Russo One", sans-serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0;
}

.prayer-mgmt-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.prayer-requester,
.prayer-date {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.prayer-mgmt-body {
    padding: 2rem;
}

.prayer-mgmt-label {
    font-family: "Russo One", sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.prayer-mgmt-text {
    font-family: "Montserrat", sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prayer-mgmt-contact {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    font-family: "Montserrat", sans-serif;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.prayer-mgmt-replies {
    background: #e8f5e8;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #27ae60;
}

.replies-mgmt-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reply-mgmt-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.reply-mgmt-item:last-child {
    margin-bottom: 0;
}

.prayer-mgmt-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-top: 1px solid #ecf0f1;
}

.prayer-mgmt-actions {
    display: flex;
    gap: 1rem;
}

.btn-mgmt-reply {
    background: #3498db;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-mgmt-reply:hover {
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-mgmt-delete {
    background: #e74c3c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-mgmt-delete:hover {
    background: #c0392b;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.no-prayers-admin-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px dashed #bdc3c7;
}

.no-prayers-admin-icon {
    width: 80px;
    height: 80px;
    background: #7f8c8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #ffffff;
    font-size: 2rem;
}

.no-prayers-admin-title {
    font-family: "Russo One", sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-prayers-admin-text {
    font-family: "Montserrat", sans-serif;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0;
}

.prayer-pagination {
    margin-top: 3rem;
}

.prayer-pagination .pagination {
    margin: 0;
}

.prayer-pagination .page-link {
    color: #3498db;
    border: 1px solid #ecf0f1;
    padding: 0.75rem 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.prayer-pagination .page-link:hover {
    background: #3498db;
    color: #ffffff;
    border-color: #3498db;
}

.prayer-pagination .page-item.active .page-link {
    background: #3498db;
    border-color: #3498db;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .prayer-hero-title {
        font-size: 2.2rem;
    }

    .prayer-form-card {
        padding: 2rem;
    }

    .prayer-form-title {
        font-size: 1.6rem;
    }

    .privacy-card {
        padding: 2rem;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .prayer-mgmt-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .prayer-mgmt-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .prayer-mgmt-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .prayer-hero-title {
        font-size: 1.8rem;
    }

    .prayer-form-card {
        padding: 1.5rem;
    }

    .privacy-card {
        padding: 1.5rem;
    }

    .prayer-card-header {
        padding: 1rem 1.5rem;
    }

    .prayer-card-body {
        padding: 1.5rem;
    }

    .prayer-mgmt-header {
        padding: 1rem 1.5rem;
    }

    .prayer-mgmt-body {
        padding: 1.5rem;
    }
}

/* Floating button styles */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    color: #333333;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    z-index: 1000;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.floating-button:hover {
    background: #f8f9fa;
    color: #333333;
    text-decoration: none;
}