/* ============================================
   SHINE GLOBAL ENTERPRISE - COMPONENTS
   ============================================ */

/* ===================
   BUTTONS
   =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-out);
    border: var(--border-medium) solid transparent;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Secondary Button */
.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Ministry Button */
.btn-ministry {
    background: var(--gradient-ministry);
    color: var(--white);
    border-color: var(--ministry);
}

.btn-ministry:hover {
    background: var(--ministry-light);
    border-color: var(--ministry-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Button Sizes */
.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* Icon Button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ===================
   NAVIGATION
   =================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
}

.header.scrolled .nav-link {
    color: var(--text);
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
}

.header.scrolled .logo {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-base);
}

.header.scrolled .logo-img {
    height: 60px;
}

.footer-logo {
    height: 140px;
    max-width: 280px;
}

/* ===================
   THEME TOGGLE
   =================== */
.theme-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(15deg);
}

.header.scrolled .theme-toggle {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.header.scrolled .theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

/* Dark theme toggle icon */
[data-theme="dark"] .theme-toggle i::before {
    content: "\f185";
    /* sun icon */
}

/* ===================
   DARK MODE OVERRIDES
   =================== */

/* -- Header/Navbar -- */
[data-theme="dark"] .header.scrolled {
    background: rgba(15, 23, 42, 0.95);
}

[data-theme="dark"] .nav-link {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .nav-link:hover {
    color: #fbbf24 !important;
}

[data-theme="dark"] .header.scrolled .nav-link {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .header.scrolled .theme-toggle {
    background: rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
    color: #60a5fa;
}

/* -- Hero Section -- */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(51, 65, 85, 0.9) 100%);
}

[data-theme="dark"] .hero-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .hero-tagline {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .hero-description {
    color: #94a3b8 !important;
}

[data-theme="dark"] .btn-outline {
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* -- About Section -- */
[data-theme="dark"] .about {
    background: #0f172a;
}

[data-theme="dark"] .about-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

[data-theme="dark"] .about h2,
[data-theme="dark"] .section-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .about p,
[data-theme="dark"] .about-text {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .sector-tag {
    background: rgba(96, 165, 250, 0.2);
    color: #93c5fd !important;
}

[data-theme="dark"] .sector-tag i {
    color: #60a5fa !important;
}

/* -- Mission/Vision Values -- */
[data-theme="dark"] .value-content h4,
[data-theme="dark"] .value-item h4 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .value-content p,
[data-theme="dark"] .value-item p {
    color: #94a3b8 !important;
}

[data-theme="dark"] .value-icon {
    background: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .value-icon i {
    color: #60a5fa !important;
}

/* -- Business Units -- */
[data-theme="dark"] .units {
    background: #1e293b;
}

[data-theme="dark"] .unit-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .unit-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .unit-description {
    color: #94a3b8 !important;
}

/* -- Services Section -- */
[data-theme="dark"] .services {
    background: #0f172a;
}

[data-theme="dark"] .service-category {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .service-category-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .service-category-header {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .service-item {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .service-item i {
    color: #60a5fa !important;
}

/* -- Ministry Section -- */
[data-theme="dark"] .ministry-section {
    background: #0f172a;
}

[data-theme="dark"] .ministry-section h2,
[data-theme="dark"] .ministry-section h3,
[data-theme="dark"] .ministry-content h2 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .ministry-section p,
[data-theme="dark"] .ministry-text {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .ministry-verse,
[data-theme="dark"] blockquote.ministry-verse {
    color: #c4b5fd !important;
    border-color: #8b5cf6 !important;
}

[data-theme="dark"] .ministry-feature {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .ministry-feature span {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .ministry-feature i {
    color: #a78bfa !important;
}

[data-theme="dark"] .ministry-buttons .btn-outline {
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .ministry-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .video-placeholder {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
}

[data-theme="dark"] .video-placeholder i,
[data-theme="dark"] .video-placeholder span {
    color: #fff !important;
}

/* -- CTA Section -- */
[data-theme="dark"] .cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

[data-theme="dark"] .cta h2,
[data-theme="dark"] .cta-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .cta p {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .btn-whatsapp {
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2) !important;
}

[data-theme="dark"] .contact-info span,
[data-theme="dark"] .contact-info a {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .contact-info i {
    color: #60a5fa !important;
}

/* -- Footer -- */
[data-theme="dark"] .footer {
    background: #030712;
}

[data-theme="dark"] .footer h4,
[data-theme="dark"] .footer-title {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .footer p {
    color: #94a3b8 !important;
}

[data-theme="dark"] .footer a {
    color: #94a3b8 !important;
}

[data-theme="dark"] .footer a:hover {
    color: #60a5fa !important;
}

[data-theme="dark"] .social-links a {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
}

[data-theme="dark"] .social-links a:hover {
    background: #3b82f6 !important;
    color: #fff !important;
}

[data-theme="dark"] .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-bottom p,
[data-theme="dark"] .footer-bottom a {
    color: #64748b !important;
}

/* -- Global Headings -- */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: #f1f5f9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--white);
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.header.scrolled .nav-toggle span {
    background: var(--primary);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================
   SECTIONS
   =================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-label.ministry {
    background: rgba(var(--ministry-rgb), 0.1);
    color: var(--ministry);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-description {
    color: var(--text-light);
    font-size: var(--text-lg);
}

/* ===================
   HERO SECTION
   =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-8);
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--font-medium);
    opacity: 0.9;
    margin-top: var(--space-2);
}

.hero-tagline {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    font-weight: var(--font-light);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    font-size: var(--text-sm);
    opacity: 0.8;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll i {
    font-size: var(--text-xl);
}

/* Decorative Elements */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    background: rgba(212, 168, 83, 0.1);
}

/* ===================
   ABOUT SECTION
   =================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
}

.about-image-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.about-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.about-badge-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary);
}

.about-badge-text {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.about-content h2 {
    margin-bottom: var(--space-6);
}

.about-text {
    color: var(--text-light);
    margin-bottom: var(--space-6);
}

.about-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.sector-tag {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-alt);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text);
}

.sector-tag i {
    color: var(--primary);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
    flex-shrink: 0;
}

.value-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.value-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ===================
   BUSINESS UNITS CARDS
   =================== */
.units {
    background: var(--bg-alt);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.unit-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base) var(--ease-out);
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: height var(--transition-base);
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.unit-card:hover::before {
    height: 6px;
}

.unit-card:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.unit-card:nth-child(3)::before {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.unit-card:nth-child(4)::before {
    background: var(--gradient-ministry);
}

.unit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-xl);
    font-size: var(--text-3xl);
    color: var(--primary);
    transition: all var(--transition-base);
}

.unit-card:hover .unit-icon {
    transform: scale(1.1);
}

.unit-card:nth-child(2) .unit-icon {
    background: rgba(212, 168, 83, 0.1);
    color: var(--secondary-dark);
}

.unit-card:nth-child(3) .unit-icon {
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-dark);
}

.unit-card:nth-child(4) .unit-icon {
    background: rgba(var(--ministry-rgb), 0.1);
    color: var(--ministry);
}

.unit-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--text);
}

.unit-description {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-4);
}

.unit-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary);
    transition: gap var(--transition-fast);
}

.unit-card:hover .unit-link {
    gap: var(--space-3);
}

/* ===================
   SERVICES SECTION
   =================== */
.services {
    background: var(--white);
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-category {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
}

.service-category:hover {
    box-shadow: var(--shadow-lg);
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--text-xl);
}

.service-category-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text);
}

.service-item i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===================
   MINISTRY SECTION
   =================== */
.ministry-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    overflow: hidden;
}

.ministry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.ministry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.ministry-content {
    position: relative;
}

.ministry-content .section-label {
    background: rgba(139, 92, 246, 0.2);
    color: var(--ministry-light);
}

.ministry-content h2 {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.ministry-verse {
    font-style: italic;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    padding-left: var(--space-4);
    border-left: 3px solid var(--ministry);
    margin-bottom: var(--space-6);
}

.ministry-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
}

.ministry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.ministry-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
}

.ministry-feature i {
    color: var(--ministry-light);
}

.ministry-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.ministry-visual {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ministry);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder:hover {
    background: var(--ministry-light);
}

.video-placeholder i {
    font-size: 60px;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.video-placeholder span {
    font-size: var(--text-lg);
    color: var(--white);
}

/* ===================
   CONTACT / CTA SECTION
   =================== */
.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.cta-contact {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    transition: color var(--transition-fast);
}

.cta-contact-item:hover {
    color: var(--secondary);
}

.cta-contact-item i {
    font-size: var(--text-xl);
}

/* ===================
   FOOTER
   =================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: var(--space-16);
    padding-bottom: var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    max-width: 280px;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}