/*
Theme Name: Tribe After Tribe
Description: Professional ministry theme with modern design
Version: 1.0
Author: Your Name
*/

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Chrome and Mobile Optimization */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --primary-color: #6366f1;
    --primary-glow: #8b5cf6;
    --accent-color: #a855f7;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-elegant: 0 10px 30px -10px rgba(99, 102, 241, 0.3);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-glow));
    --gradient-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
/* =========================
   CLEAN HOMEPAGE HERO
   ========================= */

.tat-hero-clean {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 5rem;
}

.tat-hero-text small {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.tat-hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin: 1rem 0;
    font-weight: 800;
    color: var(--text-dark);
}

.tat-hero-text p {
    font-size: 1.2rem;
    max-width: 520px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.tat-hero-actions {
    display: flex;
    gap: 1rem;
}

.tat-hero-visual img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .tat-hero-clean {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0 4rem;
    }

    .tat-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .tat-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

/* Search Results Styles */
.search-results {
    padding: 2rem 0;
}

.search-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.search-header .page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.search-query {
    color: var(--accent-color);
    font-weight: 600;
}

.search-results-list {
    margin-bottom: 3rem;
}

.search-result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.search-result-item .entry-title {
    margin-bottom: 0.5rem;
}

.search-result-item .entry-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.search-result-item .entry-title a:hover {
    color: var(--accent-color);
}

.entry-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-meta .separator {
    margin: 0 0.5rem;
}

.post-type {
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.entry-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
}

.no-results h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.search-again {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.search-again .search-form {
    max-width: 400px;
    margin: 1rem auto 0;
}

.search-suggestions {
    margin-top: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.search-suggestions li:before {
    content: "→";
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--accent-color);
    color: white;
}

/* Header Styles */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* Navigation */
.main-nav ul,
.main-nav .primary-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.main-nav .current-menu-item a,
.main-nav .current-menu-ancestor a {
    background: var(--gradient-primary);
    color: white;
}

/* WordPress Menu Classes */
.main-nav .menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 0.75em;
    margin-left: 0.5rem;
}

/* Dropdown Styles */
.main-nav li {
    position: relative;
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.main-nav .sub-menu li {
    display: block;
    width: 100%;
}

.main-nav .sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    background: none;
    border-radius: 0;
    transform: none;
    white-space: nowrap;
    border: none;
}

.main-nav .sub-menu a:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
    transform: none;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .main-nav .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.95);
        margin-left: 1rem;
        border-left: 2px solid var(--primary-color);
    }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        display: none;
        z-index: 999;
    }
    
    .main-nav.mobile-active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }
    
    .main-nav .sub-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
        margin-left: 2rem !important;
    }
    
    .main-nav .sub-menu a {
        padding-left: 3rem !important;
        font-size: 0.9rem !important;
    }
}

/* Modern Search Form Styles - Cross-browser compatible */
.header-search {
    margin: 0 1rem;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 600px;
    min-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--text-dark);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mobile-search-toggle:hover {
    background: var(--gradient-primary);
    color: white;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.search-form {
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.search-input-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    background-color: #ffffff; /* Fallback */
    border: 1px solid var(--border);
    border: 1px solid #e5e7eb; /* Fallback */
    border-radius: 25px;
    padding: 0;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); /* Fallback */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    border-color: #6366f1; /* Fallback */
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-light);
    color: #6b7280; /* Fallback */
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
}

.search-input-wrapper:focus-within .search-icon {
    color: var(--primary-color);
    color: #6366f1; /* Fallback */
}

.search-field {
    border: none;
    background: transparent;
    padding: 12px 45px 12px 45px;
    border-radius: 25px;
    color: var(--text-dark);
    color: #1f2937; /* Fallback */
    font-size: 1rem;
    width: 100%;
    outline: none;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1.5;
}

.search-field::placeholder {
    color: var(--text-light);
    color: #6b7280; /* Fallback */
    opacity: 1; /* Firefox fallback */
}

.search-field::-webkit-input-placeholder {
    color: #6b7280;
}

.search-field::-moz-placeholder {
    color: #6b7280;
    opacity: 1;
}

.search-field:-ms-input-placeholder {
    color: #6b7280;
}

.search-submit {
    position: absolute;
    right: 8px;
    border: none;
    background: var(--primary-color);
    background-color: #6366f1; /* Fallback */
    padding: 8px;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.search-submit:hover {
    background: var(--primary-glow);
    background-color: #8b5cf6; /* Fallback */
}

.search-clear {
    position: absolute;
    right: 45px;
    border: none;
    background: transparent;
    padding: 6px;
    color: var(--text-light);
    color: #6b7280; /* Fallback */
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.search-clear:hover {
    background: var(--border);
    background-color: #e5e7eb; /* Fallback */
    color: var(--text-dark);
    color: #1f2937; /* Fallback */
}

/* Mobile Search Styles */
@media (max-width: 768px) {
    .header-search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-glow));
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        margin: 0;
        max-width: none;
    }
    
    .header-search.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-input-wrapper {
        max-width: none;
        width: 100%;
        margin: 0;
    }
    
    .search-field {
        width: 100%;
        flex: 1;
        padding: 16px 50px 16px 50px;
    }
}

/* Mobile Menu Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .logo {
        order: 1;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .mobile-search-toggle {
        order: 3;
        margin-left: 0;
    }
    
    .main-nav {
        order: 4;
    }
} 
/* Content Cards */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.content-card h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-card p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, #dbeafe, #f3e8ff);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.quote-block em {
    color: var(--text-light);
    line-height: 1.7;
}

.quote-block .quote-source {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    display: block;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Ministry Cards */
.ministry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.ministry-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.ministry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.ministry-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Blog Styles */
.blog-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.blog-author {
    font-size: 0.75rem;
    color: var(--text-light);
}

 

/* Ministry Slider */
.ministry-slider {
    margin-bottom: 3rem;
}

.slider-container {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10;
}

.slider-track {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out !important;
    display: block !important;
}

.slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* Prayer Request Page Styles */
.prayer-request-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.prayer-header {
    margin-bottom: 50px;
}

.prayer-header .page-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.prayer-header .page-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.prayer-header .title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #fbbf24);
    margin: 0 auto;
    border-radius: 2px;
}

.prayer-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .prayer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.prayer-form-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.prayer-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.heart-icon {
    font-size: 1.5rem;
}

.prayer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .prayer-form .form-row {
        grid-template-columns: 1fr;
    }
}

.prayer-form .form-group {
    margin-bottom: 20px;
}

.prayer-form label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.prayer-form input,
.prayer-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.prayer-form input:focus,
.prayer-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.prayer-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin-right: 10px;
    transform: scale(1.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.prayer-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
}

.prayer-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.prayer-message.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.prayer-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.card-header i {
    font-size: 1.25rem;
}

.sidebar-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.process-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.process-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: -2px;
    flex-shrink: 0;
}

.scripture-card {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff) !important;
}

.scripture-card blockquote {
    margin: 0;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
}

.scripture-card cite {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: normal;
}

/* Admin Styles */
.status-new { color: #dc2626; font-weight: bold; }
.status-contacted { color: #2563eb; font-weight: bold; }
.status-praying { color: #7c3aed; font-weight: bold; }
.status-completed { color: #059669; font-weight: bold; }

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 10;
}

.slide-type-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 3rem;
}

.welcome-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-section {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.quote-text {
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.welcome-conclusion {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: var(--gradient-gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

/* Ministry Focus Section */
.ministry-focus {
    margin-bottom: 3rem;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ministry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.ministry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ministry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.ministry-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-title {
        font-size: 2.5rem;
    }
    
    .mission-subtitle {
        font-size: 2rem;
    }
    
    .slider-track {
        height: 300px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .ministry-grid {
        grid-template-columns: 1fr;
    }
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.read-more:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.7;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-secondary {
        font-size: 1.75rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .grid {
        gap: 1rem;
    }
 

}

/* =========================
   HERO FINAL OVERRIDES
   ========================= */

.tat-hero-clean {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 20px 5rem;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 0 0 32px 32px;
}

.tat-hero-visual img {
    min-height: 420px;
}
/* =========================
   HERO FIX – STRUCTURE
   ========================= */

.tat-hero-clean {
    width: 100%;
    background: linear-gradient(135deg, #f9fafb, #eef2ff);
    padding: 4rem 0 5rem;
}

.tat-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

/* Image behavior */
.tat-hero-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Mobile */
@media (max-width: 900px) {
    .tat-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tat-hero-visual img {
        height: 300px;
    }

    .tat-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* =========================
   SHARED SPLIT HERO (Get Involved style)
   ========================= */

.gi-hero {
    background: var(--background);
    padding: 4rem 0 5rem;
}

.gi-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.gi-hero-text small {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.gi-hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 1rem 0;
    font-weight: 800;
    color: var(--text-dark);
}

.gi-hero-text p {
    font-size: 1.15rem;
    max-width: 520px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.gi-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gi-hero-image img {
    width: 100%;
    height: auto;          /* ← critical */
    object-fit: contain;   /* ← critical */
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: #fff;      /* prevents transparent gaps */
}


/* Mobile */
@media (max-width: 900px) {
    .gi-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gi-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .gi-hero-actions {
        justify-content: center;
    }

    .gi-hero-image img {
        height: 300px;
    }
}
@media (max-width: 900px) {
    .gi-hero-image img {
        max-height: 360px;
    }
}

/* =========================
   MODERN MINISTRY SLIDER
   ========================= */

.modern-slider {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
    padding: 4rem 0 3rem;
	
}

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

.slider-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.slider-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.modern-slider .slider-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}


/* Slides */
.modern-slider .slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.slide {
    position: relative;
    z-index: 1;
}
/* Caption */
.slider-caption {
    background: white;
    padding: 2rem;
    text-align: center;
}

.slider-caption h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.slider-caption p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.prev-btn { left: 1.25rem; }
.next-btn { right: 1.25rem; }
/* Indicators */
.modern-slider .slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}
.modern-slider .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.modern-slider .indicator.active {
    background: var(--primary-color);
}

/* Mobile */
@media (max-width: 768px) {
    .modern-slider .slide img {
        max-height: 280px;
    }

    .slider-header h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .modern-slider .slide img {
        height: 300px;
    }
}


/* =========================
   SELF-HOSTED VIDEO SECTION
   ========================= */

.tat-video-section {
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    padding:  2.5rem 0 4rem;
}

.tat-video-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tat-video-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.tat-video-section::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}
.tat-video-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Video Container */
.tat-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: black;
}

.tat-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .tat-video-header h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .modern-slider {
        padding-bottom: 2rem;
    }

    .tat-video-section {
        padding: 2rem 0 3rem;
    }
}
/* =========================
   SIT – CLEAN MODERN STYLE
========================= */

.sit {
  font-family: inherit;
}

.sit-container {
  width: min(1200px, 90%);
  margin-inline: auto; 
  padding-block: 60px;
}

.sit-narrow {
  width: min(760px, 90%);
}

/* HERO */
.sit-hero {
  padding: 40px 0 20px;
  text-align: center;
}

.sit-hero-logo {
  max-width: 240px;
  margin-bottom: 24px;
}

.sit-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.sit-hero-sub {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  opacity: 0.8;
}

/* SECTIONS */
.sit-section {
  padding: 0px 0;
}

.sit-section h2 {
  margin-bottom: 20px;
}

.sit-section p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.sit-soft-bg {
  background: #f6f6f6;
}

/* MISSION / VISION */
.sit-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* LIST */
.sit-list {
  margin-top: 25px;
  padding-left: 18px;
}

.sit-list li {
  margin-bottom: 10px;
}

.sit-team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
  gap:40px;
  margin-top:40px;
  text-align:center;
}

@media (max-width: 900px) {
  .sit-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .sit-team-grid {
    grid-template-columns: 1fr;
  }
}
.sit-team-member span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sit-mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* =========================
   TEAM – MODERN GRID
========================= */

.sit-center {
  text-align: center;
}

.sit-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .sit-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .sit-team-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.sit-team-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f4f4;
}

.sit-team-card img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  margin:auto;
  display:block;
}

/* Info overlay */
.sit-team-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
}

/* Name */
.sit-team-info h3 {
  margin: 0;
  font-size: 1rem;
}

/* Role */
.sit-team-info span {
  font-size: 0.85rem;
  opacity: 0.65;
}
.sit-team-card {
  transition: transform 0.3s ease;
}

.sit-team-card:hover {
  transform: translateY(-4px);
}
.sit-team-card h3{
  margin-top:15px;
  font-size:16px;
  font-weight:600;
}
/* =========================
   ABOUT + MISSION VISION
========================= */

.sit-about-mv {
  padding: 30px 0;
}

.sit-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT TEXT */
.sit-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-block;
  margin-bottom: 12px;
}

.sit-about-text h2 {
  margin-bottom: 20px;
}

.sit-about-text p {
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 520px;
}

/* RIGHT CARDS */
.sit-mv-cards {
  display: grid;
  gap: 30px;
}

.sit-mv-card {
  border-radius: 18px;
  padding: 36px;
  color: #111;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sit-mv-card h3 {
  margin-bottom: 12px;
}
 


.sit-mv-card.mission p {
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sit-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.sit-mv-card {
  position: relative;
  overflow: hidden;
}
.sit-mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.sit-mv-card p {
  line-height: 1.7;
  opacity: 0.9;
}

.sit-mv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,255,255,0.25),
    transparent 60%
  );
}
/* =========================
   MISSION / VISION HOVER
========================= */
.sit-mv-cards {
  display: grid;
  gap: 32px;
}

/* Vision */
.sit-mv-card.vision {
  background: linear-gradient(
    135deg,
    #4f7cff,
    #7f9bff
  );
  color: #ffffff;
  border-radius: 20px;
  padding: 40px;
}

/* Mission */
.sit-mv-card.mission {
  background: linear-gradient(
    135deg,
    #6ac7b5,
    #9fe2d6
  );
  color: #0f2b27;
  border-radius: 20px;
  padding: 40px;
}

/* Lift + depth */
.sit-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Gradient glow overlay */
.sit-mv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Vision glow */
.sit-mv-card.vision::before {
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.6),
    transparent 60%
  );
}

/* Mission glow */
.sit-mv-card.mission::before {
  background: radial-gradient(
    circle at top right,
    rgba(255,255,255,0.25),
    transparent 65%
  );
}

.sit-mv-card:hover::before {
  opacity: 1;
}

/* Text clarity on dark card */
.sit-mv-card.mission:hover p {
  opacity: 1;
}
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #000;
}

.wpcf7-submit {
  margin-top: 10px;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
}
/* =========================
   PROGRAM HIGHLIGHTS
========================= */

.sit-highlights h2 {
  margin-bottom: 10px;
}

.sit-muted {
  opacity: 0.7;
  margin-bottom: 50px;
}

.sit-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.sit-highlight h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.sit-highlight p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
}
.sit-highlights-header {
  margin-bottom: 35px;
}
/* Micro hover */
.sit-highlight {
  transition: transform 0.3s ease;
}

.sit-highlight:hover {
  transform: translateY(-4px);
}
/* =========================
   CALL TO ACTION
========================= */

.sit-cta {
  
    background: #1f1f1f;
}

.sit-cta h2 {
  margin-bottom: 12px;
}

.sit-cta p {
  opacity: 0.75;
  margin-bottom: 30px;
}

/* Button */
.sit-cta-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sit-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
/* =========================
   CTA – BACKGROUND
========================= */
.sit-cta {
  position: relative;
 
    background: #1f1f1f;
  padding: 0px 0;
  text-align: center;
}

/* Soft light focus */
.sit-cta::before {
  content: '';
  position: absolute;
  inset: 0;
 
    background: #1f1f1f;
}

.sit-cta > .sit-container {
  position: relative;
  z-index: 1;
}

.sit-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.sit-cta p {
  color: rgba(255,255,255,0.8);
  margin: 18px auto 40px;
  max-width: 620px;
}
.sit-cta-btn {
  background: #f5b971;
  color: #1a1a1a;
  padding: 16px 42px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sit-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}
.sit-mv-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sit-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.sit-mv-card {
  position: relative;
  overflow: hidden;
}

/* Soft depth highlight */
.sit-mv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.15),
    transparent 40%
  );
  pointer-events: none;
}
.sit-mv-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.sit-mv-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.sit-mv-card:hover {
  transform: translateY(-6px) scale(1.01);
}
.sit-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    to right,
    #4f7cff,
    #6ac7b5
  );
  margin-top: 12px;
}

:root {
  --sit-ink: #1e1e1e;
  --sit-muted: #6f6f6f;

  --sit-vision-bg: linear-gradient(
    135deg,
    #f3f1ee,
    #e6e2dd
  );

  --sit-mission-bg: linear-gradient(
    135deg,
    #eef3f1,
    #dde8e3
  );

  --sit-cta-bg: linear-gradient(
    135deg,
    #232323,
    #2f2f2f
  );

  --sit-accent: #c9a24d; /* subtle gold */
}
.sit-mv-card.vision {
  background: var(--sit-vision-bg);
  color: var(--sit-ink);
}

.sit-mv-card.mission {
  background: var(--sit-mission-bg);
  color: var(--sit-ink);
}
.sit-mv-card h3 {
  color: #3a3a3a;
}
.sit-mv-card h3 {
  color: #3a3a3a;
}
.sit-cta {
    background: #1f1f1f;
}

.sit-cta-btn {
  background: var(--sit-accent);
  color: #1c1c1c;
}

.sit-cta-btn:hover {
  background: #d8b45f;
}
.sit-mv-card {
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);
}
.sit-mv-card {
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);
}
.sit-about-mv {
  background: #faf9f7;
}
/* Grid */
.sit-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.sit-highlight {
  padding: 32px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.06),
    0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0,0,0,0.04);
}

/* Hover */
.sit-highlight:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.1),
    0 4px 10px rgba(0,0,0,0.06);
}

/* Icon circle */
.sit-highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f2ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #c9a24d; /* subtle gold accent */
}

.sit-highlight-icon svg {
  width: 18px;
  height: 18px;
}

/* Typography */
.sit-highlight h3 {
  margin-bottom: 8px;
}

.sit-highlight p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
} 
.sit-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px 30px;
  margin-top:50px;
  text-align:center;
}

.sit-team-member img{
    transition: all 0.3s ease;
  width:250px;
  height:250px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:18px;
}

.sit-team-member h3{
  font-size:24x;
  margin:0;
  font-weight:600;
}

.sit-team-member p{
  font-size:13px;
  color:#777;
  margin:6px 0 0;
}
.sit-team-member img:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.1),
    0 4px 10px rgba(0,0,0,0.06);
}
/* responsive */

@media (max-width:900px){
  .sit-team-grid{
    grid-template-columns:repeat(3,1fr);
  }
	.sit-team-member img{ 
    width:200px !important;
    height:200px !important;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:8px;
}
}

@media (max-width:600px){
  .sit-team-grid{
    grid-template-columns:repeat(2,1fr);
  }
	
.sit-team-member img{ 
    width:150px !important;
    height:150px !important;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:8px;
}
}
