/*
Theme Name: Freedom Lights Theme
Description: A modern WordPress theme for Freedom Lights
Version: 1.0.0
Author: Your Name
*/

/* CSS Variables - Color Scheme */
:root {
    --primary-color: #6B3FA0; /* Deep Purple */
    --secondary-color: #D4AF37; /* Gold */
    --bg-color: #F5F5F5; /* Soft Gray */
    --text-color: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

/* Dashicons - Ensure they display properly */
.dashicons,
.dashicons-before:before {
    display: inline-block;
    font-family: dashicons;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: never;
    vertical-align: middle;
}

/* CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    margin: 0;
}

/* Basic Layout */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    padding: 2rem 0;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

/* Links */
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ========================================
   Header / Navigation
   ======================================== */

/* Header Top Bar */
.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B5FB8 100%);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.header-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-item a:hover {
    color: var(--secondary-color);
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-social-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.social-icon .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--white);
}

/* Main Header */
.header-main {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

/* Logo */
.site-branding {
    flex: 0 0 auto;
}

.logo-link {
    display: inline-block;
}

.site-logo,
.custom-logo-link img,
.custom-logo-link .custom-logo {
    max-height: 65px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover .site-logo,
.custom-logo-link:hover img {
    transform: scale(1.05);
}

.custom-logo-link {
    display: inline-block;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.site-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.primary-menu a:hover {
    color: var(--primary-color);
    background: rgba(107, 63, 160, 0.05);
}

.primary-menu li.current-menu-item a,
.primary-menu li.current_page_item a {
    color: var(--primary-color);
    background: rgba(107, 63, 160, 0.1);
}

/* Header CTA Button */
.header-cta {
    flex: 0 0 auto;
}

.header-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 63, 160, 0.3);
}

.header-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.4);
}

.header-donate-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile/Tablet Responsive Header */
@media (max-width: 1024px) {
    .header-top {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .header-contact-info {
        gap: 1rem;
    }
    
    .header-social {
        gap: 0.5rem;
    }
    
    .header-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .header-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--white) 0%, #faf8fb 100%);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        padding: 100px 2rem 2rem;
        overflow-y: auto;
        z-index: 1001;
    }

    .site-navigation.menu-open {
        right: 0;
    }

    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a {
        padding: 1rem 1.5rem;
        width: 100%;
        border-radius: 8px;
    }

    body.menu-active {
        overflow: hidden;
    }

    body.menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(107, 63, 160, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .header-social-text {
        display: none;
    }
    
    .site-logo,
    .custom-logo-link img {
        max-height: 50px;
    }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: linear-gradient(135deg, #4a2c6b 0%, var(--primary-color) 50%, #4a2c6b 100%);
    color: var(--white);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
}

/* Footer Column Headings */
.footer-column h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Footer About Column */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
}

.footer-site-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(10deg);
}

.footer-social-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-menu a .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-menu a:hover .dashicons {
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.footer-contact-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-text strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact-text span,
.footer-contact-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--secondary-color);
}

/* Footer Newsletter */
.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: #e0be4a;
    transform: scale(1.05);
}

.newsletter-submit .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.footer-nonprofit-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.footer-nonprofit-text .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        gap: 2rem;
    }
    
    .footer-social-links {
        justify-content: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
    }
}

/* ========================================
   Homepage Sections
   ======================================== */

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 63, 160, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(107, 63, 160, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 63, 160, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B5FB8 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 750px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
}

.hero-card-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
    text-shadow: none;
}

.hero-subtext {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
    text-shadow: none;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-color);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
}

.hero-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.4);
    color: var(--white);
}

.hero-button:focus {
    animation: pulse 1.5s infinite;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5fc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-item {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

/* Staggered Animation for Service Items */
.service-item:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.service-item:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-item:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    animation: float 2s ease-in-out infinite;
}

.service-icon .dashicons {
    font-size: 60px;
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-item:hover .service-icon .dashicons {
    color: var(--secondary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Seminars Section */
.seminars-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #faf8fb 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.seminars-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.seminars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.seminar-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.seminar-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-color);
}

.seminar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.seminar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.seminar-title a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.seminar-title a:hover {
    color: var(--primary-color);
}

.seminar-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.seminar-date .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.seminar-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.seminar-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.no-seminars {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Snippet Section */
.about-snippet-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-snippet-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.about-link:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.about-link:hover::after {
    width: calc(100% - 5px);
}

/* Homepage Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .seminars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-card {
        padding: 2.5rem 2rem;
    }

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

    .hero-subtext {
        font-size: 1rem;
    }

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

    .services-section,
    .seminars-section,
    .about-snippet-section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seminars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }

    .hero-card {
        padding: 2rem 1.5rem;
    }

    .hero-card-subtitle {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

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

/* ========================================
   Archive Templates
   ======================================== */

/* Page Header (for archives) */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========================================
   Blog Archive (home.php)
   ======================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.post-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-color);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-header {
    margin-bottom: 1rem;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-date {
    display: inline-block;
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-excerpt p {
    margin-bottom: 0;
}

.post-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease, padding-left 0.3s ease;
    align-self: flex-start;
}

.post-read-more:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.no-posts {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   Seminar Archive (archive-seminar.php)
   ======================================== */
.seminars-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.seminar-archive-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.seminar-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seminar-archive-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-color);
}

.seminar-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.seminar-archive-card:hover .seminar-archive-image img {
    transform: scale(1.08);
}

.seminar-archive-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.seminar-archive-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.seminar-archive-title a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.seminar-archive-title a:hover {
    color: var(--primary-color);
}

.seminar-archive-date {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-date-label {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 0.5rem;
}

.event-date-value {
    font-weight: 700;
    color: var(--primary-color);
}

.seminar-archive-description {
    color: var(--text-light);
    line-height: 1.8;
    flex-grow: 1;
}

.seminar-archive-description p {
    margin-bottom: 0;
}

.no-seminars {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    background-color: var(--white);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .current {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    font-weight: 600;
}

/* Archive Responsive */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .seminars-archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }

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

    .posts-grid,
    .seminars-archive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .post-content,
    .seminar-archive-content {
        padding: 1.25rem;
    }
}

/* ========================================
   Single Blog Post Template (single.php)
   ======================================== */

/* Blog Post Hero */
.blog-post-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.9) 0%, rgba(74, 44, 107, 0.85) 100%);
    z-index: 1;
}

.blog-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B5FB8 100%);
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0;
    text-align: center;
}

.blog-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.9);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-category-badge:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.blog-hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.meta-item .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

/* Blog Content Section */
.blog-content-section {
    padding: 4rem 0 6rem;
    background-color: var(--white);
}

.blog-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
}

.blog-main-content {
    min-width: 0;
}

.blog-content-wrapper {
    background: var(--white);
}

.entry-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.entry-content h2 {
    font-size: 2.25rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.entry-content h3 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.entry-content p {
    margin-bottom: 1.75rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.75rem;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--secondary-color);
}

.entry-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-light);
    background: rgba(107, 63, 160, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

/* Blog Footer Section */
.blog-footer-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.tags-icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.tag-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(107, 63, 160, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Blog Share Section */
.blog-share {
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.05), rgba(212, 175, 55, 0.05));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.share-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.share-buttons-blog {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn-blog {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn-blog .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--white);
}

.share-btn-blog.facebook {
    background: #1877F2;
}

.share-btn-blog.twitter {
    background: #1DA1F2;
}

.share-btn-blog.linkedin {
    background: #0A66C2;
}

.share-btn-blog.email {
    background: var(--primary-color);
}

.share-btn-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Author Bio Card */
.author-bio-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.03), rgba(212, 175, 55, 0.03));
    border-radius: 15px;
    margin-top: 4rem;
    border: 2px solid var(--border-color);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.author-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Blog Post Navigation */
.blog-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.nav-post {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-post:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(107, 63, 160, 0.1);
    transform: translateY(-3px);
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.nav-label .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.next-post .nav-label {
    justify-content: flex-end;
    text-align: right;
}

.nav-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-post:hover .nav-post-title {
    color: var(--secondary-color);
}

.next-post {
    text-align: right;
}

/* Sidebar */
.blog-sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-submit {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--secondary-color);
}

.search-submit .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(107, 63, 160, 0.03);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 1.5rem;
}

.categories-list .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.categories-list a:hover .dashicons {
    color: var(--secondary-color);
}

.cat-name {
    flex: 1;
    font-weight: 500;
}

.cat-count {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumbnail img {
    transform: scale(1.1);
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.recent-post-date .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), #8B5FB8);
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget .widget-title::after {
    background: var(--secondary-color);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.newsletter-form-sidebar {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-sidebar {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input-sidebar::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-sidebar:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit-sidebar {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-submit-sidebar:hover {
    background: #e0be4a;
    transform: scale(1.05);
}

.newsletter-submit-sidebar .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

/* ========================================
   Single Seminar Template (single-seminar.php)
   ======================================== */

/* Seminar Hero Section */
.seminar-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.seminar-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.seminar-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seminar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.85) 0%, rgba(74, 44, 107, 0.9) 100%);
    z-index: 1;
}

.seminar-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0;
    text-align: center;
}

.seminar-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.seminar-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.seminar-breadcrumb a:hover {
    color: var(--secondary-color);
}

.seminar-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.seminar-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.seminar-hero-excerpt {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Seminar Info Cards */
.seminar-info-section {
    background: linear-gradient(to bottom, var(--white) 0%, #f8f5fc 100%);
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.seminar-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.seminar-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seminar-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.seminar-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 63, 160, 0.2);
}

.seminar-info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.seminar-info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card-icon .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: var(--white);
}

.info-card-content {
    flex: 1;
    min-width: 0;
}

.info-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-card-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Seminar Main Section */
.seminar-main-section {
    padding: 4rem 0 6rem;
    background-color: var(--white);
}

.seminar-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.seminar-content-area {
    min-width: 0;
}

.seminar-article {
    background-color: var(--white);
}

.seminar-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.seminar-content h2 {
    font-size: 2.25rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.seminar-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.seminar-content h3 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.seminar-content p {
    margin-bottom: 1.75rem;
}

.seminar-content ul,
.seminar-content ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.seminar-content li {
    margin-bottom: 0.75rem;
}

.seminar-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.seminar-content a:hover {
    color: var(--secondary-color);
}

/* Seminar Sidebar */
.seminar-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* CTA Card */
.seminar-cta-card {
    background: linear-gradient(135deg, var(--primary-color), #8B5FB8);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 63, 160, 0.3);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.seminar-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-card-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.seminar-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.seminar-cta-card p {
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #e0be4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cta-card-features .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

/* Details Card */
.seminar-details-card,
.seminar-share-card,
.seminar-contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.seminar-details-card h3,
.seminar-share-card h3,
.seminar-contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.details-list strong {
    color: var(--primary-color);
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.share-btn {
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: var(--white);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.email {
    background: var(--primary-color);
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Card */
.seminar-contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.contact-quick-info a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(107, 63, 160, 0.05);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-quick-info a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.contact-quick-info .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* More Seminars Section */
.more-seminars-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f5fc 0%, #faf8fb 100%);
}

.more-seminars-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.related-seminars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.related-seminar-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-seminar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(107, 63, 160, 0.15);
}

.related-seminar-image {
    height: 200px;
    overflow: hidden;
}

.related-seminar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-seminar-card:hover .related-seminar-image img {
    transform: scale(1.1);
}

.related-seminar-content {
    padding: 2rem;
}

.related-seminar-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.related-seminar-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-seminar-title a:hover {
    color: var(--secondary-color);
}

.related-seminar-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.related-seminar-date .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.related-seminar-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-seminar-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.no-related-seminars {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* WordPress Gallery Block Support */
.wp-block-gallery,
.blocks-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.wp-block-gallery .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-item figure,
.wp-block-image {
    margin: 0;
    flex: 1 1 auto;
    min-width: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.wp-block-gallery .blocks-gallery-item img,
.wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(107, 63, 160, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-gallery .blocks-gallery-item:hover img,
.wp-block-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.25);
}

.wp-block-gallery.columns-2 .blocks-gallery-item {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
}

.wp-block-gallery.columns-3 .blocks-gallery-item {
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
}

.wp-block-gallery.columns-4 .blocks-gallery-item {
    flex: 0 0 calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
}

.wp-block-gallery.columns-5 .blocks-gallery-item {
    flex: 0 0 calc(20% - 0.8rem);
    max-width: calc(20% - 0.8rem);
}

.wp-block-gallery.columns-6 .blocks-gallery-item {
    flex: 0 0 calc(16.666% - 0.83rem);
    max-width: calc(16.666% - 0.83rem);
}

/* Page Links */
.page-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.page-links a,
.page-links > span {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-links > .page-links-title {
    margin-right: 1rem;
    font-weight: 600;
    color: var(--text-color);
    border: none;
    padding: 0;
}

/* Single Template Responsive */
@media (max-width: 1024px) {
    .blog-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-sidebar {
        order: -1;
    }
    
    .seminar-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .seminar-sidebar {
        order: -1;
    }
    
    .related-seminars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Blog Post Responsive */
    .blog-post-hero {
        min-height: 400px;
    }
    
    .blog-hero-content {
        padding: 3rem 0;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .blog-content-section {
        padding: 3rem 0 4rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h2 {
        font-size: 1.85rem;
    }
    
    .entry-content h3 {
        font-size: 1.5rem;
    }
    
    .blog-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .next-post {
        text-align: left;
    }
    
    .next-post .nav-label {
        justify-content: flex-start;
    }
    
    .author-bio-card {
        flex-direction: column;
        text-align: center;
    }
    
    .share-buttons-blog {
        gap: 0.75rem;
    }
    
    .share-btn-blog {
        width: 45px;
        height: 45px;
    }
    
    /* Seminar Responsive */
    .seminar-hero {
        min-height: 400px;
    }
    
    .seminar-hero-content {
        padding: 3rem 0;
    }

    .seminar-hero-title {
        font-size: 2.5rem;
    }
    
    .seminar-hero-excerpt {
        font-size: 1.1rem;
    }
    
    .seminar-breadcrumb {
        font-size: 0.85rem;
    }
    
    .seminar-info-section {
        padding: 3rem 0;
    }

    .seminar-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seminar-main-section {
        padding: 3rem 0 4rem;
    }
    
    .seminar-content {
        font-size: 1rem;
    }
    
    .seminar-content h2 {
        font-size: 1.85rem;
    }
    
    .seminar-content h3 {
        font-size: 1.5rem;
    }
    
    .related-seminars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-block-gallery.columns-4 .blocks-gallery-item,
    .wp-block-gallery.columns-5 .blocks-gallery-item,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        flex: 0 0 calc(33.333% - 0.67rem);
        max-width: calc(33.333% - 0.67rem);
    }
}

@media (max-width: 480px) {
    /* Blog Post Mobile */
    .blog-post-hero {
        min-height: 350px;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .entry-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-share {
        padding: 2rem 1.5rem;
    }
    
    .share-buttons-blog {
        flex-wrap: wrap;
    }
    
    /* Seminar Mobile */
    .seminar-hero {
        min-height: 350px;
    }
    
    .seminar-hero-title {
        font-size: 2rem;
    }
    
    .seminar-hero-excerpt {
        font-size: 1rem;
    }
    
    .seminar-info-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .info-card-icon {
        margin: 0 auto;
    }
    
    .seminar-content h2 {
        font-size: 1.5rem;
    }
    
    .seminar-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wp-block-gallery.columns-3 .blocks-gallery-item,
    .wp-block-gallery.columns-4 .blocks-gallery-item,
    .wp-block-gallery.columns-5 .blocks-gallery-item,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 640px) {
    .single-post-article,
    .seminar-article {
        padding: 1.5rem 0;
    }

    .entry-content,
    .seminar-content {
        font-size: 1rem;
    }

    .wp-block-gallery.columns-3 .blocks-gallery-item,
    .wp-block-gallery.columns-4 .blocks-gallery-item,
    .wp-block-gallery.columns-5 .blocks-gallery-item,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .seminar-header-title {
        font-size: 1.75rem;
    }

    .seminar-header-no-image .seminar-header-title {
        font-size: 2rem;
    }

    .seminar-info-icon {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }

    .seminar-info-value {
        font-size: 1rem;
    }

    .wp-block-gallery .blocks-gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   Contact Page Template
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #8B5FB8 0%, var(--primary-color) 50%, #8B5FB8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 3rem 0;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Contact Content Section */
.contact-content-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, #f8f5fc 100%);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 63, 160, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--white);
}

.contact-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card-link {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: var(--primary-color);
}

.contact-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form and Map Wrapper */
.contact-form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-form-header .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-container {
    margin-top: 2rem;
}

.contact-form-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 10px;
    border: 2px dashed var(--border-color);
}

.contact-form-message {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-form-instruction {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-form-instruction strong {
    color: var(--primary-color);
}

/* Map Section */
.contact-map-section {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-map-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.05), rgba(212, 175, 55, 0.05));
    border-bottom: 2px solid var(--border-color);
}

.contact-map-header .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-map-container {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}

.wpcf7-form textarea.wpcf7-form-control {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form .wpcf7-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 200px;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-response-output {
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wpcf7-spam {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.wpcf7-validation-errors {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f5fc 0%, #faf8fb 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.08) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.contact-cta-icon .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: var(--white);
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.contact-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 63, 160, 0.3);
}

.contact-cta-button.secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 63, 160, 0.3);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-content-section {
        padding: 4rem 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section,
    .contact-map-section {
        padding: 2rem;
    }
    
    .contact-form-header .dashicons {
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
    
    .contact-map-container {
        min-height: 300px;
    }
    
    .contact-cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-cta-content p {
        font-size: 1.1rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 250px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-content-section {
        padding: 3rem 0;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card-icon .dashicons {
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
    
    .contact-card-title {
        font-size: 1.2rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-cta-icon .dashicons {
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .contact-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-cta-content p {
        font-size: 1rem;
    }
    
    .wpcf7-form .wpcf7-submit {
        width: 100%;
        max-width: none;
    }
}

/* ========================================
   About Us Page Template
   ======================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B5FB8 50%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
    z-index: 1;
}

.about-hero .site-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Welcome Section */
.about-welcome {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, #f8f5fc 100%);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 2rem;
}

/* Vision Section */
.about-vision {
    padding: 6rem 0;
    background-color: var(--white);
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    position: relative;
}

.vision-icon::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.vision-icon .dashicons {
    font-size: 150px;
    width: 150px;
    height: 150px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

/* Objectives Section */
.about-objectives {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #faf8fb 50%, #f5f5f5 100%);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.objective-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 63, 160, 0.15);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.objective-card:hover .objective-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1) rotate(5deg);
}

.objective-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.objective-card:hover .objective-icon .dashicons {
    color: var(--white);
}

.objective-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.objective-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Services Overview Section */
.about-services {
    padding: 6rem 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 1rem auto 4rem;
    line-height: 1.7;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-showcase-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefcff 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-showcase-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(107, 63, 160, 0.1);
    transform: translateX(10px);
}

.service-showcase-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-showcase-item:hover .service-showcase-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-showcase-icon .dashicons {
    font-size: 35px;
    width: 35px;
    height: 35px;
    color: var(--white);
}

.service-showcase-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-showcase-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Why Donate Section */
.about-donate {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f5fc 0%, #faf8fb 50%, #f8f5fc 100%);
}

.donate-header {
    text-align: center;
    margin-bottom: 4rem;
}

.donate-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.donate-reason {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.donate-reason:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(107, 63, 160, 0.12);
}

.donate-reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(107, 63, 160, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.donate-reason:hover .donate-reason-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.donate-reason-icon .dashicons {
    font-size: 35px;
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.donate-reason:hover .donate-reason-icon .dashicons {
    color: var(--white);
}

.donate-reason h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donate-reason p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Call to Action Section */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B5FB8 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.cta-button.primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vision-icon {
        min-height: 250px;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .donate-reasons {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-welcome,
    .about-vision,
    .about-objectives,
    .about-services,
    .about-donate,
    .about-cta {
        padding: 4rem 0;
    }
    
    .donate-reasons {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 300px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .vision-icon {
        min-height: 200px;
    }
    
    .vision-icon .dashicons {
        font-size: 100px;
        width: 100px;
        height: 100px;
    }
    
    .service-showcase-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .service-showcase-icon {
        margin: 0 auto 1.5rem;
    }
}

/* ========================================
   Generic Page Template
   ======================================== */

.page-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

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

.page-article .page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-article .page-featured-image {
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-article .page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-article .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.page-article .page-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-article .page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.page-article .page-content h4,
.page-article .page-content h5,
.page-article .page-content h6 {
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-article .page-content p {
    margin-bottom: 1.5rem;
}

.page-article .page-content ul,
.page-article .page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-article .page-content li {
    margin-bottom: 0.75rem;
}

.page-article .page-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-article .page-content a:hover {
    color: var(--secondary-color);
}

.page-article .page-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background-color: var(--bg-color);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.page-article .page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.page-article .page-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

.page-article .page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-article .page-links a:hover {
    background-color: var(--secondary-color);
}

/* Responsive styles for page template */
@media (max-width: 768px) {
    .page-article {
        padding: 3rem 0;
    }

    .page-article .page-title {
        font-size: 2rem;
    }

    .page-article .page-header {
        margin-bottom: 2rem;
    }

    .page-article .page-content {
        font-size: 1rem;
    }

    .page-article .page-content h2 {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .page-article .page-content h3 {
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-article {
        padding: 2rem 0;
    }

    .page-article .page-title {
        font-size: 1.75rem;
    }

    .page-article .page-content blockquote {
        padding: 1rem 1.5rem;
        padding-left: 1.5rem;
    }
}

/* ========================================
   UPCOMING SEMINAR STYLES (HERO)
======================================== */

.hero-upcoming {
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(107, 63, 160, 0.2);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .hero-upcoming {
        background: rgba(255, 255, 255, 0.85);
    }
}

.hero-upcoming-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hero-upcoming-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.hero-upcoming-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.75rem 0;
    line-height: 1.3;
}

.hero-upcoming-date {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0.5rem 0 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-upcoming-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-upcoming-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 63, 160, 0.4);
    color: var(--white);
}

.hero-upcoming-btn .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* ========================================
   REGISTRATION PAGE STYLES
======================================== */

.registration-page {
    padding: 4rem 0;
    background: var(--bg-color);
    min-height: 70vh;
}

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

.registration-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.registration-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Seminar Details Card */
.seminar-details-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.seminar-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.seminar-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
}

.detail-meta-item .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.seminar-detail-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.seminar-detail-description p {
    margin-bottom: 1rem;
}

.seminar-detail-description h2,
.seminar-detail-description h3 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Registration Form Card */
.registration-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Form Errors */
.form-errors {
    background: #fee;
    border-left: 4px solid #c33;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
}

.form-errors .dashicons {
    color: #c33;
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #c33;
}

.form-errors li {
    margin-bottom: 0.5rem;
}

.form-errors li:last-child {
    margin-bottom: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #c33;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: rgba(107, 63, 160, 0.02);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--primary-color);
}

.radio-label input[type="radio"]:checked {
    background: var(--primary-color);
}

.radio-label span {
    font-size: 1rem;
    color: var(--text-color);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.btn-submit-registration {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 63, 160, 0.3);
}

.btn-submit-registration:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit-registration .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.btn-cancel {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cancel:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--white);
}

/* Success Message */
.registration-success {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: successPop 0.5s ease-out;
}

.success-icon .dashicons {
    font-size: 60px;
    width: 60px;
    height: 60px;
    color: var(--white);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.registration-success h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.registration-success p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 63, 160, 0.3);
}

.btn-back-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

/* ========================================
   RESPONSIVE STYLES FOR REGISTRATION
======================================== */

@media (max-width: 992px) {
    .registration-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .registration-page {
        padding: 3rem 0;
    }

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

    .registration-subtitle {
        font-size: 1rem;
    }

    .seminar-details-card,
    .registration-form-card {
        padding: 2rem 1.5rem;
    }

    .seminar-detail-title {
        font-size: 1.75rem;
    }

    .form-card-title {
        font-size: 1.5rem;
    }

    .hero-upcoming {
        padding: 1.25rem 1.5rem;
        margin: 0 0 1.25rem 0;
    }

    .hero-upcoming-title {
        font-size: 1.25rem;
    }

    .hero-upcoming-date {
        font-size: 0.95rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit-registration,
    .btn-cancel {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .registration-page {
        padding: 2rem 0;
    }

    .registration-header {
        margin-bottom: 2rem;
    }

    .registration-title {
        font-size: 1.75rem;
    }

    .seminar-details-card,
    .registration-form-card {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .seminar-detail-title {
        font-size: 1.5rem;
    }

    .form-card-title {
        font-size: 1.35rem;
    }

    .hero-upcoming {
        padding: 1rem;
        margin: 0 0 1rem 0;
    }

    .hero-upcoming-title {
        font-size: 1.1rem;
    }

    .hero-upcoming-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .registration-success {
        padding: 3rem 1rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .success-icon .dashicons {
        font-size: 50px;
        width: 50px;
        height: 50px;
    }

    .registration-success h2 {
        font-size: 2rem;
    }
}

