/* ========================================
   KINGDOM CHURCH CAMBRIDGE
   Main Stylesheet
   Colors: Gold (#C8A415), Black (#111), White (#FFF)
   ======================================== */

/* === VARIABLES === */
:root {
    --gold: #C8A415;
    --gold-light: #D4B84A;
    --gold-dark: #A6880F;
    --gold-gradient: linear-gradient(135deg, #B8860B, #D4AF37, #C8A415);
    --gold-subtle: #F9F3E3;
    --black: #111111;
    --dark: #1A1A1A;
    --dark-2: #222222;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #E8E8E8;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-bg: #F5F5F5;
    --whatsapp: #25D366;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(200,164,21,0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === UTILITIES === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    color: var(--gold);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* === FIX: Logo spacing from nav items on desktop === */
.nav-logo {
    margin-right: 40px;
    flex-shrink: 0;
}

/* LOGO STYLES - Properly sized with white background */
.logo-container {
    background: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar.scrolled .logo-container {
    background: transparent;
    padding: 4px 0;
}

.navbar.scrolled .logo-img {
    height: 46px;
}

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
}

.nav-dropdown-menu li a:hover {
    background: var(--gold-subtle);
    color: var(--gold-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--dropdown::after {
    display: none;
}

.nav-link--gold {
    color: var(--gold) !important;
    font-weight: 600;
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
}

.nav-link--gold::after {
    display: none;
}

.nav-link--gold:hover {
    background: var(--gold);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
}

.hero-tag {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 14px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--gold);
    opacity: 0.6;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

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

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--gray-lighter);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-icon svg {
    flex-shrink: 0;
}

.btn-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-text:hover {
    color: var(--gold);
}

.btn-text--dark {
    color: var(--dark);
}

.btn-text--dark:hover {
    color: var(--black);
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
}

.section--white {
    background: var(--white);
}

.section--light {
    background: var(--light-bg);
}

.section--dark {
    background: var(--dark);
    color: var(--white);
}

.section--gold {
    background: var(--gold-subtle);
}

.section--wa {
    background: #E8FAF0;
    padding: 60px 0;
}

.section--cta {
    background: var(--black);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header--light .section-title {
    color: var(--white);
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-dark);
}

.about-text .btn-text {
    margin-top: 16px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* === CARDS === */
.cards-grid {
    display: grid;
    gap: 32px;
}

.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.card--dark {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
}

.card--dark:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(200,164,21,0.15);
}

.card--white {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    box-shadow: var(--shadow-sm);
}

.card--white:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white);
}

.card-title--dark {
    color: var(--black);
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-light);
}

.card-text--dark {
    color: var(--gray);
}

/* === WHAT TO EXPECT === */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.expect-item {
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.expect-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.expect-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.expect-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--black);
}

.expect-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* === SCRIPTURE SECTION === */
.scripture-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.scripture-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.scripture-text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 16px;
}

.scripture-ref {
    font-size: 1rem;
    font-style: normal;
    color: var(--gray);
    display: block;
    margin-bottom: 24px;
}

/* === KCC MEDIA COMING SOON === */
.media-coming-soon {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.media-icon {
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.media-icon svg {
    stroke: var(--gold);
}

.media-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 12px;
}

.media-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 32px;
}

/* === WHATSAPP CALLOUT === */
.wa-callout {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.wa-callout-icon {
    flex-shrink: 0;
}

.wa-callout-text {
    flex: 1;
}

.wa-callout-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--black);
}

.wa-callout-text p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* === SCHEDULE SECTION === */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.schedule-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: var(--transition);
}

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

.schedule-card--primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.schedule-card--primary .schedule-day {
    color: var(--gold);
}

.schedule-card--primary .schedule-location {
    color: var(--gray-light);
}

.schedule-card--gold {
    background: var(--gold-subtle);
    border-color: var(--gold);
}

.schedule-day {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
}

.schedule-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.schedule-time {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.schedule-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.schedule-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic;
}

/* === FIND US SECTION === */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.location-address {
    margin-bottom: 24px;
}

.location-address h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.address-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-warning {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(200, 164, 21, 0.1);
    border: 1px solid rgba(200, 164, 21, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warning-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === PILLARS SECTION === */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.pillar {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pillar h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* === GIVE SECTION === */
.give-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.give-text {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.give-verse {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--gray-dark);
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    margin-bottom: 32px;
    line-height: 1.7;
}

.give-verse cite {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 8px;
}

.give-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* === SOCIAL GRID === */
.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    border-radius: var(--radius-md);
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon--whatsapp { background: #25D366; }
.social-icon--youtube { background: #FF0000; }
.social-icon--instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.social-icon--facebook { background: #1877F2; }
.social-icon--tiktok { background: #000000; }
.social-icon--x { background: #000000; }

/* === CTA SECTION === */
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: var(--white);
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(200, 164, 21, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-container {
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-verse {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-light);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.footer-bottom a {
    color: var(--gray-light);
    text-decoration: underline;
}

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

.footer-legal {
    font-size: 0.8rem;
    color: var(--gray);
}

/* === STICKY BOTTOM WA BAR === */
.wa-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 164, 21, 0.3);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.wa-bottom-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.wa-bottom-bar-content {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.wa-bottom-bar-content svg {
    color: var(--whatsapp);
    flex-shrink: 0;
}

.wa-bottom-bar-text {
    white-space: nowrap;
}

.wa-bottom-bar-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 20px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: var(--transition);
}

.wa-bottom-bar-btn:hover {
    background: #1EBE5A;
    transform: scale(1.03);
}

.wa-bottom-bar-close {
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    margin-left: 8px;
    transition: var(--transition);
}

.wa-bottom-bar-close:hover {
    color: var(--white);
}

/* === FIX: Body lock when mobile menu open === */
body.menu-open {
    overflow: hidden;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-menu {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 20px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--white) !important;
    }
    
    /* Mobile dropdown - hidden by default, shown when .open class is added via JS */
    .nav-dropdown .nav-dropdown-menu {
        position: static;
        transform: none;
        background: var(--dark-2);
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 16px;
        min-width: auto;
        /* Hidden by default on mobile - toggled by JS */
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-menu li a {
        color: var(--gray-light);
        padding: 8px 16px;
    }
    
    .nav-dropdown-menu li a:hover {
        background: rgba(200,164,21,0.1);
        color: var(--gold);
    }
    
    /* Nav toggle */
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    .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);
    }
    
    /* When menu is open, stripes should be white (for X animation) */
    .nav-toggle.active span {
        background: var(--white) !important;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .navbar.scrolled .logo-img {
        height: 38px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .about-grid,
    .location-layout,
    .give-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cards-grid--3,
    .expect-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .location-buttons .btn {
        width: 100%;
    }
    
    .wa-callout {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    
    .give-image img {
        height: 280px;
    }
    
    /* Bottom bar on mobile */
    .wa-bottom-bar {
        padding: 10px 16px;
    }
    
    .wa-bottom-bar-text {
        white-space: normal;
        font-size: 12px;
        line-height: 1.3;
    }
    
    .wa-bottom-bar-content {
        gap: 10px;
    }
}

/* === FIX: Ensure nav-toggle stripes are visible on scrolled navbar === */
.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wa-bottom-bar-text {
        font-size: 11px;
    }
}

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

.fade-in {
    opacity: 1 !important;
    animation: fadeInUp 0.8s ease forwards;
}