/*
Theme Name: Gravitas Spirituality Network
Theme URI: https://graduatespiritualitynetwork.com
Description: Custom theme for Gravitas Spirituality Network - A gathering place for spiritually matured individuals seeking graduate-level spiritual wisdom.
Version: 2.0.0
Author: Gravitas Network
Author URI: https://graduatespiritualitynetwork.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gravitas
*/

/* ===== CSS VARIABLES (Brand Colors) ===== */
:root {
    /* Primary Brand Colors */
    --deep-blue: #0061A8;
    --sky-blue: #4DA3D9;
    --primary-green: #2FA36B;
    --light-green: #6CCFA3;

    /* Core Neutrals */
    --pure-white: #FFFFFF;
    --soft-white: #F7F9FC;
    --dark-text: #0B1F33;
    --gray-text: #6B7280;

    /* UI & Interaction States */
    --button-primary: #0061A8;
    --button-hover: #004E87;
    --button-secondary: #2FA36B;
    --button-secondary-hover: #248A5B;
    --borders: #D1D5DB;
    --header-bg: #FFFFFF;
    --footer-bg: #0B1F33;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #0061A8 0%, #4DA3D9 100%);
    --gradient-green: linear-gradient(135deg, #2FA36B 0%, #6CCFA3 100%);
    --gradient-dark: linear-gradient(135deg, #0B1F33 0%, #1a3a5c 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(11, 31, 51, 0.7) 0%, rgba(11, 31, 51, 0.4) 100%);

    /* Shadows */
    --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 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Animation Timing */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: all var(--transition-normal);
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ENHANCED STICKY HEADER ===== */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--borders);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img,
.custom-logo {
    height: 55px;
    width: auto;
    transition: transform var(--transition-normal);
}

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

.site-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0;
}

.site-title a {
    color: var(--deep-blue);
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ENHANCED NAVIGATION WITH DROPDOWNS ===== */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation > ul > li {
    position: relative;
}

.main-navigation > ul > li > a {
    font-weight: 500;
    color: var(--dark-text);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.main-navigation > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 3px;
    transition: width var(--transition-normal);
}

.main-navigation > ul > li > a:hover::before,
.main-navigation > ul > li.current-menu-item > a::before {
    width: calc(100% - 24px);
}

.main-navigation > ul > li > a:hover {
    color: var(--deep-blue);
    background-color: rgba(0, 97, 168, 0.05);
}

/* Dropdown Arrow */
.main-navigation .menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-normal);
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    min-width: 240px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--borders);
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li a {
    display: block;
    padding: 12px 16px;
    color: var(--dark-text);
    border-radius: 8px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.main-navigation .sub-menu li a:hover {
    background: var(--soft-white);
    color: var(--deep-blue);
    transform: translateX(5px);
}

/* CTA Button in Nav */
.nav-cta a,
.main-navigation li.nav-cta > a,
.main-navigation .menu-item a.btn-primary {
    background: var(--gradient-blue);
    color: var(--pure-white) !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 97, 168, 0.3);
    transition: all var(--transition-normal);
}

.nav-cta a:hover,
.main-navigation li.nav-cta > a:hover,
.main-navigation .menu-item a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 97, 168, 0.4);
}

.nav-cta a::before,
.main-navigation li.nav-cta > a::before {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 6px 0;
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--pure-white);
    box-shadow: 0 4px 20px rgba(0, 97, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 97, 168, 0.4);
    color: var(--pure-white);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--pure-white);
    box-shadow: 0 4px 20px rgba(47, 163, 107, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(47, 163, 107, 0.4);
    color: var(--pure-white);
}

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

.btn-outline:hover {
    background-color: var(--pure-white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--pure-white);
    color: var(--deep-blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--deep-blue);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.85) 0%, rgba(0, 97, 168, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-section h1 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section h1 span {
    background: linear-gradient(135deg, #6CCFA3, #4DA3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero floating elements */
.hero-floating {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-floating:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.hero-floating:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--pure-white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator::after {
    content: '';
    width: 30px;
    height: 50px;
    border: 2px solid var(--pure-white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--pure-white);
    border-radius: 3px;
    position: absolute;
    bottom: 30px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--pure-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.2rem;
}

/* ===== ENHANCED CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.card {
    background-color: var(--pure-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 97, 168, 0.1);
}

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

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--pure-white);
    font-size: 36px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 97, 168, 0.2);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 97, 168, 0.3);
}

.card-icon.green {
    background: var(--gradient-green);
    box-shadow: 0 10px 30px rgba(47, 163, 107, 0.2);
}

.card:hover .card-icon.green {
    box-shadow: 0 15px 40px rgba(47, 163, 107, 0.3);
}

.card h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--soft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
    background: var(--gradient-blue);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--deep-blue);
    transition: fill var(--transition-normal);
}

.feature-item:hover .feature-icon svg {
    fill: var(--pure-white);
}

.feature-item h4 {
    margin-bottom: 15px;
    font-size: 1.35rem;
}

/* ===== IMAGE SECTIONS ===== */
.image-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.image-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.image-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.9) 0%, rgba(0, 97, 168, 0.7) 100%);
}

.image-section-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--pure-white);
}

.image-section h2 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.image-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 51, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    padding: 60px 20px;
}

.parallax-content h2 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.parallax-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 97, 168, 0.1);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--deep-blue);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    color: var(--deep-blue);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--deep-blue);
    font-weight: 300;
    transition: transform var(--transition-normal);
    width: 40px;
    height: 40px;
    background: var(--soft-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: var(--gradient-blue);
    color: var(--pure-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--soft-white);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--dark-text);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--gray-text);
}

.contact-item a:hover {
    color: var(--deep-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: var(--gradient-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 97, 168, 0.2);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 97, 168, 0.3);
    color: var(--pure-white);
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--borders);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--borders);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
    background: var(--soft-white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--deep-blue);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(0, 97, 168, 0.1);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Form Messages */
.form-message {
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.9) 0%, rgba(0, 97, 168, 0.8) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--pure-white);
}

.breadcrumb span {
    color: var(--light-green);
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-green);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--gradient-blue);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    padding: 40px;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-blue);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-item h4 {
    color: var(--deep-blue);
    margin-bottom: 15px;
    font-size: 1.35rem;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.service-card {
    background: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 70px;
    opacity: 0.9;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-text);
}

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content ul li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pure-white);
    font-size: 10px;
    font-weight: bold;
}

/* ===== GATHERINGS PAGE ===== */
.gatherings-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.gatherings-intro h2 {
    margin-bottom: 1.5rem;
}

.gatherings-intro p {
    font-size: 1.2rem;
}

.gathering-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    background: var(--pure-white);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.gathering-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gathering-date {
    background: var(--gradient-blue);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: var(--pure-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gathering-date .day {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.gathering-date .month {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gathering-info h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.gathering-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gathering-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.gathering-meta svg {
    width: 18px;
    height: 18px;
    fill: var(--deep-blue);
}

/* ===== GET STARTED PAGE ===== */
.get-started-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.get-started-content h2 {
    margin-bottom: 1.5rem;
}

.get-started-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.steps-section {
    margin-top: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: var(--borders);
    z-index: 0;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 97, 168, 0.3);
    transition: all var(--transition-normal);
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 97, 168, 0.4);
}

.step-item h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--pure-white);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6CCFA3, #4DA3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--soft-white);
    padding: 120px 0;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--deep-blue);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-info span {
    color: var(--gray-text);
}

/* ===== ENHANCED FOOTER ===== */
.site-footer {
    background: var(--gradient-dark);
    color: var(--pure-white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.02'%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");
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.footer-brand .site-title {
    color: var(--pure-white);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-section h4 {
    color: var(--pure-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 3px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.footer-social .social-link:hover {
    background: var(--gradient-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

/* ===== ANIMATIONS ===== */
/* Fade In Up */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Flip Up */
[data-aos="flip-up"] {
    opacity: 0;
    transform: perspective(1000px) rotateX(30deg);
    transition: all 0.8s ease;
}

[data-aos="flip-up"].aos-animate {
    opacity: 1;
    transform: perspective(1000px) rotateX(0);
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 0.1s !important; }
[data-aos-delay="200"] { transition-delay: 0.2s !important; }
[data-aos-delay="300"] { transition-delay: 0.3s !important; }
[data-aos-delay="400"] { transition-delay: 0.4s !important; }
[data-aos-delay="500"] { transition-delay: 0.5s !important; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .features-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .about-intro,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        padding-right: 0;
    }

    .gathering-card {
        grid-template-columns: 1fr;
    }

    .gathering-date {
        padding: 20px;
        flex-direction: row;
        gap: 15px;
    }

    .gathering-date .day {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--pure-white);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-normal);
        z-index: 10000;
        padding: 100px 40px 40px;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .main-navigation > ul > li > a {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .main-navigation .menu-item-has-children.open > .sub-menu {
        display: flex;
    }

    .hero-section {
        min-height: auto;
        padding: 150px 0 100px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 80px 0;
    }

    .page-header {
        padding: 140px 0 80px;
    }

    .features-grid,
    .steps-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .cards-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        padding: 14px 28px;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-white { color: var(--pure-white); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none; }

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--borders);
    border-top-color: var(--deep-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
