/* ============================================================
   WORLD-WIDE MINISTRIES INC — Premium Design System
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --primary:          #1a2550;
    --primary-light:    #2a3a6e;
    --primary-rgb:      26, 37, 80;
    --secondary:        #d4a843;
    --secondary-light:  #e8c76a;
    --secondary-rgb:    212, 168, 67;
    --accent:           #c0392b;
    --accent-light:     #e74c3c;
    --text-dark:        #2c3e50;
    --text-medium:      #555e68;
    --text-light:       #7f8c8d;
    --bg-light:         #f8f9fa;
    --bg-white:         #ffffff;
    --bg-dark:          #0f1732;
    --bg-dark-rgb:      15, 23, 50;
    --border-light:     #e9ecef;
    --shadow-sm:        0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:        0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:        0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl:        0 12px 60px rgba(0,0,0,0.2);
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --radius-xl:        30px;
    --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading:     'Playfair Display', Georgia, serif;
    --font-body:        'Inter', 'Segoe UI', sans-serif;
    --max-width:        1200px;
    --header-height:    80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utility Bar --- */
.utility-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.utility-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-contact a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
}

.utility-contact a:hover { color: var(--secondary); }

.utility-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-social a {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.utility-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* --- Main Header --- */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-brand svg {
    flex-shrink: 0;
}

.header-brand h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.header-brand .brand-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--secondary);
    display: block;
    letter-spacing: 0.5px;
}

/* --- Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.nav-menu a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondary);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-menu a.active { color: var(--primary); font-weight: 600; }
.nav-menu a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--secondary);
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-xl);
    margin-left: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--secondary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) { opacity: 0; }

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.85) 0%,
        rgba(var(--primary-rgb), 0.6) 50%,
        rgba(var(--bg-dark-rgb), 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .hero-accent {
    color: var(--secondary);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Page Header (inner pages) --- */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    background: var(--primary);
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
    opacity: 0.95;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-header .subtitle {
    color: var(--secondary);
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.88rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb .current { color: var(--secondary); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--secondary-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.88rem;
}

/* --- Sections --- */
.section {
    padding: 90px 0;
}

.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }
.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-header .section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 18px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* --- Cards --- */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.07);
}

.card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.card-body .btn {
    margin-top: 16px;
    align-self: flex-start;
}

/* --- Icon Card --- */
.icon-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.icon-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.12), rgba(var(--primary-rgb), 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.icon-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.icon-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* --- Grids --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Stats / Counters --- */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* --- Split Content (image + text) --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.split-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    z-index: -1;
}

.split-text h2 {
    margin-bottom: 16px;
}

.split-text .section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.split-text p {
    font-size: 1.02rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.split-text ul {
    margin: 16px 0;
}

.split-text ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-medium);
    font-size: 0.98rem;
}

.split-text ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.8rem;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #c49530 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.cta-banner p {
    color: rgba(var(--primary-rgb), 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* --- Contact Form --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* --- Accordion / FAQ --- */
.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover { border-color: var(--secondary); }

.accordion-header {
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-header:hover { background: var(--bg-light); }

.accordion-icon {
    font-size: 1.3rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 22px 20px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Footer --- */
.main-footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080d1f 100%);
    color: rgba(255,255,255,0.85);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.3;
}

.footer-about p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-registry {
    font-size: 0.82rem;
    color: var(--secondary);
    font-weight: 500;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact .contact-icon {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
    padding: 12px 20px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
}

.newsletter-form button:hover { background: var(--secondary-light); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover { color: var(--secondary); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* --- Back to Top  --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Google Map Embed --- */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Misc --- */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.mb-0 { margin-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* Decorative Divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 16px auto;
    border-radius: 3px;
}

/* Mission/Values list */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .nav-menu a { padding: 8px 10px; font-size: 0.85rem; }
    .nav-cta { padding: 9px 18px; font-size: 0.85rem; }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .split-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .split-content.reverse { direction: ltr; }
    .split-image img { height: 320px; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }

    .utility-bar { display: none; }

    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav.active { right: 0; }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        width: 100%;
    }

    .nav-menu a::after { display: none; }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .hero { min-height: 70vh; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }

    .stats-section .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header { padding: 80px 0 50px; }
}

@media (max-width: 576px) {
    body { font-size: 15px; }

    .hero { min-height: 60vh; }
    .section { padding: 60px 0; }

    .hero-buttons { flex-direction: column; align-items: center; }

    .btn { padding: 12px 26px; font-size: 0.9rem; }

    .grid-4 { grid-template-columns: 1fr; }

    .card-img { height: 200px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: var(--radius-sm); }
    .newsletter-form button { border-radius: var(--radius-sm); padding: 14px; }
}

/* --- Overlay for mobile menu --- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* --- Contact Info Box --- */
.contact-info-box {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 35px;
    border: 1px solid var(--border-light);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.15), rgba(var(--primary-rgb), 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.contact-info-item a {
    color: var(--secondary);
    font-weight: 500;
}

.contact-info-item a:hover { color: var(--primary); }

/* --- Privacy / Text Pages --- */
.text-page {
    padding: 60px 0;
}

.text-page h2 {
    font-size: 1.5rem;
    margin: 35px 0 12px;
    color: var(--primary);
}

.text-page h3 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.text-page p,
.text-page li {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.text-page ul {
    margin: 12px 0 20px 20px;
}

.text-page ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.text-page ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Verify Page */
.verify-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 50px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.verify-card .verify-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.verify-card h2 {
    margin-bottom: 12px;
}

.verify-card .verify-info {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.verify-card .verify-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.verify-card .verify-info strong {
    color: var(--primary);
}
