* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B46C1;
    --secondary-color: #A78BFA;
    --accent-color: #8B5CF6;
    --soft-purple: #E0E7FF;
    --deep-purple: #4C1D95;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --gold: #F59E0B;
    --shadow: 0 10px 40px rgba(107, 70, 193, 0.15);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.5s ease;
    box-shadow: 0 -10px 40px rgba(107, 70, 193, 0.3);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.cookie-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-emoji {
    font-size: 2.5rem;
}

.cookie-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.cookie-content p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.cookie-btn.accept {
    background: var(--gold);
    color: var(--deep-purple);
}

.cookie-btn.accept:hover {
    background: #F97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.cookie-link {
    color: var(--soft-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.cookie-link:hover {
    text-decoration: underline;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.brand-text h1 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.brand-tagline {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--soft-purple) 0%, #DDD6FE 50%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(107, 70, 193, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--deep-purple);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-btn {
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.2rem;
    color: var(--deep-purple);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sanctuary Section */
.sanctuary {
    padding: 120px 0;
    background: var(--white);
}

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

.sanctuary-content h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.5;
}

.sanctuary-content p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.sanctuary-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pillar {
    text-align: center;
    padding: 30px 20px;
    background: var(--soft-purple);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

.pillar h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.pillar p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.sanctuary-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sanctuary-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sanctuary-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.image-overlay p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.sanctuary-stats {
    display: flex;
    justify-content: space-around;
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Offerings Section */
.offerings {
    padding: 120px 0;
    background: var(--background-light);
}

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

.offering-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
}

.offering-card.signature {
    border: 3px solid var(--gold);
    transform: scale(1.02);
}

.card-header {
    margin-bottom: 25px;
    position: relative;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--gold);
    color: var(--deep-purple);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.detail-item strong {
    color: var(--primary-color);
}

/* Calendar Section */
.calendar {
    padding: 120px 0;
    background: var(--white);
}

.calendar-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.calendar-grid {
    display: grid;
}

.calendar-header {
    display: grid;
    grid-template-columns: 120px repeat(7, 1fr);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.calendar-header > div {
    padding: 25px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.time-column {
    background: var(--deep-purple);
}

.calendar-body {
    display: grid;
}

.time-row {
    display: grid;
    grid-template-columns: 120px repeat(7, 1fr);
    border-bottom: 1px solid #f0f0f0;
}

.time-row:last-child {
    border-bottom: none;
}

.time-slot {
    padding: 20px 15px;
    background: var(--soft-purple);
    font-weight: 600;
    color: var(--deep-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.class-slot {
    padding: 20px 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 80px;
}

.class-slot:hover {
    background: var(--soft-purple);
}

.class-slot small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 4px;
}

.class-slot.sacred-flow { background: rgba(107, 70, 193, 0.1); color: var(--primary-color); }
.class-slot.inner-fire { background: rgba(245, 158, 11, 0.1); color: var(--gold); }
.class-slot.gentle { background: rgba(167, 139, 250, 0.1); color: var(--accent-color); }
.class-slot.moon-yin { background: rgba(139, 92, 246, 0.1); color: var(--accent-color); }
.class-slot.meditation { background: rgba(76, 29, 149, 0.1); color: var(--deep-purple); }
.class-slot.motherhood { background: rgba(224, 231, 255, 0.3); color: var(--primary-color); }
.class-slot.empty { color: var(--text-light); cursor: default; }

/* Investment Section */
.investment {
    padding: 120px 0;
    background: var(--background-light);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.investment-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 45px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.2);
}

.investment-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--deep-purple);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.price {
    margin-bottom: 35px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 5px;
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.card-features ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.card-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.investment-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 1rem;
}

.investment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

.sacred-offerings {
    text-align: center;
}

.sacred-offerings h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 300;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.special-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--gold);
}

.special-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.special-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.special-btn {
    background: var(--gold);
    color: var(--deep-purple);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.special-btn:hover {
    background: #F97316;
    transform: translateY(-2px);
}

/* Healers Section */
.healers {
    padding: 120px 0;
    background: var(--white);
}

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

.healer-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.healer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.2);
}

.healer-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.healer-aura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.healer-card:hover .healer-aura {
    opacity: 1;
}

.healer-content {
    padding: 35px 30px;
}

.healer-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
}

.healer-title {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}

.healer-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-style: italic;
}

.healer-specialties {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.healer-specialties span {
    background: var(--soft-purple);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Retreats Section */
.retreats {
    padding: 120px 0;
    background: var(--background-light);
}

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

.retreat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.retreat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.2);
}

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

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

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

.retreat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.retreat-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 70px;
}

.retreat-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.retreat-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.retreat-content {
    padding: 35px 30px;
}

.retreat-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.retreat-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.retreat-details {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.detail {
    background: var(--soft-purple);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.retreat-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.retreat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

/* Connect Section */
.connect {
    padding: 120px 0;
    background: var(--white);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.connect-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sanctuary-details h3,
.sacred-hours h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.detail-text {
    color: var(--text-light);
    line-height: 1.6;
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--soft-purple);
    border-radius: 12px;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
    font-weight: 500;
}

.connect-form {
    background: var(--background-light);
    padding: 45px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.connect-form h3 {
    color: var(--primary-color);
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.sacred-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.checkbox-field {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
}

.sacred-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.sacred-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
}

.sacred-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.sacred-checkbox a:hover {
    text-decoration: underline;
}

.sacred-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    margin-top: 10px;
}

.sacred-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

/* Footer */
.footer {
    background: var(--deep-purple);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-brand .brand-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-brand h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.footer-brand span {
    color: var(--soft-purple);
    font-style: italic;
    font-size: 0.9rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-section li {
    padding: 10px 0;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.sacred-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.sacred-links a {
    font-size: 1.8rem;
    transition: var(--transition);
}

.sacred-links a:hover {
    transform: scale(1.2);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-hours {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #4C1D95;
}

.footer-hours h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #4C1D95;
    padding-top: 30px;
}

.footer-bottom-text {
    text-align: center;
    color: #95a5a6;
}

.footer-bottom-text p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .sanctuary-grid,
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sanctuary-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calendar-header,
    .time-row {
        grid-template-columns: 100px repeat(7, 1fr);
        font-size: 0.8rem;
    }
    
    .time-slot,
    .class-slot {
        padding: 15px 8px;
        min-height: 70px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

