:root {
    /* Primary Color Palette */
    --primary-sage: #8daf88;
    --primary-lavender: #dedbff;
    --primary-mint: #F5FFFA;
    --primary-sand: #dbd0a3;
    --primary-ocean: #b7d6d7;
    
    /* Light/Dark Variations */
    --sage-light: #a1cca5;
    --sage-dark: #809d7e;
    --lavender-light: #F0F0FF;
    --lavender-dark: #c7c0ea;
    --mint-light: #FBFFFC;
    --mint-dark: #fbfffa;
    --sand-light: #f0eee5;
    --sand-dark: #e1d5b4;
    --ocean-light: #b2e3e6;
    --ocean-dark: #89c2db;
    
    /* Neutral Colors */
    --text-dark: #223948;
    --text-light: #8c9999;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #c6cfd7;
    --gray-dark: #56626e;
    
    /* Conservative Font Sizes */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

/* Header & Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-md) 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: linear-gradient(135deg, var(--sage-dark), var(--lavender-dark));
    padding: var(--spacing-sm) 0;
}

.navbar-brand {
    font-size: 1.55rem !important;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 var(--spacing-sm);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-sand) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-sand);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-sand) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-mint), var(--primary-ocean));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../WUY_images/hero-meditation.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.62rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sage-dark), var(--ocean-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-lg);
}

.hero-section h2 {
    color: var(--sage-dark);
    margin-bottom: var(--spacing-lg);
}

.hero-section p {
    font-size: var(--font-size-large);
    color: var(--text-light);
    max-width: 600px;
}

/* Section Styling */
section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background: linear-gradient(135deg, var(--mint-light), var(--lavender-light)) !important;
}

/* Cards */
.feature-card, .service-card, .pricing-card, .review-card, .case-study-card, 
.process-step, .career-card, .info-card, .blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-medium);
}

.feature-card:hover, .service-card:hover, .pricing-card:hover, .review-card:hover,
.case-study-card:hover, .career-card:hover, .info-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card img, .blog-card img {
    border-radius: var(--border-radius-md);
    height: 200px;
    width: 100%;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--sage-dark);
}

.pricing-card.featured h4,
.pricing-card.featured .price {
    color: var(--white);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-dark);
    margin: var(--spacing-md) 0;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    border: 3px solid var(--primary-sage);
}

/* Timeline */
.timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-sage);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    background: var(--white);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-sage);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -31px;
}

.timeline-item:nth-child(even)::before {
    left: -31px;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-ocean));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.25rem rgba(137, 167, 133, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-ocean));
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sage-dark), var(--ocean-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gray-medium);
    border: none;
    color: var(--text-dark);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gray-dark);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-sage);
    color: var(--primary-sage);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-sage);
    color: var(--white);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-lavender), var(--primary-mint));
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.contact-info p {
    font-size: var(--font-size-large);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.contact-info p::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary-sage);
    border-radius: 50%;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark), var(--gray-dark));
    color: var(--white);
}

footer h5, footer h6 {
    color: var(--primary-sand);
    margin-bottom: var(--spacing-lg);
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-sand);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: var(--spacing-sm);
}

/* Breadcrumbs */
.breadcrumb-nav {
    background: var(--gray-light);
    padding: var(--spacing-md) 0;
    margin-top: 76px;
}

.breadcrumb-img {
    height: 40px;
    width: auto;
    opacity: 0.7;
}

/* Space Container */
.space-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-mint), var(--primary-lavender));
    padding-top: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Items */
.feature-item {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-lg);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    color: var(--primary-sage);
    margin-right: var(--spacing-md);
}

/* Badges */
.badge {
    background: var(--primary-sage);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-small);
    font-weight: 500;
}

/* Read More Links */
.read-more {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--sage-dark);
    text-decoration: underline;
}

/* Meditation Timer Styles */
.meditation-timer {
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 0 auto;
}

.timer-display {
    margin-bottom: var(--spacing-xl);
}

.timer-display .time {
    font-size: 4rem;
    font-weight: 700;
    color: var(--sage-dark);
    margin-bottom: var(--spacing-lg);
    font-family: 'Courier New', monospace;
}

.timer-controls {
    margin: var(--spacing-lg) 0;
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.timer-controls .btn {
    min-width: 100px;
}

.timer-presets {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.preset-btn {
    background: var(--primary-lavender);
    border: none;
    color: var(--text-dark);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.preset-btn:hover {
    background: var(--sage-light);
    color: var(--white);
    transform: translateY(-2px);
}

.preset-btn:active {
    transform: translateY(0);
}

/* Breathing Circle */
.breathing-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-ocean));
    margin: var(--spacing-xl) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.breathing-circle.active {
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    25% { transform: scale(1.1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    75% { transform: scale(1.1); opacity: 1; }
}

.circle-inner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Breathing Exercise Modal */
.breathing-exercise {
    padding: var(--spacing-xl);
}

.breathing-guide {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.breath-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-mint), var(--primary-ocean));
    margin: var(--spacing-xl) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
    position: relative;
}

.breath-text {
    font-size: 1.63rem;
    font-weight: 600;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.breath-instructions {
    margin-top: var(--spacing-lg);
}

.breath-instructions p {
    font-size: var(--font-size-large);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.breath-instructions .btn {
    margin: var(--spacing-sm);
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg);
    max-width: 350px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-sage);
}

.notification.show {
    right: var(--spacing-lg);
}

.notification-success {
    border-left-color: #17a124;
}

.notification-success .fas {
    color: #269740;
}

.notification-error {
    border-left-color: #df2e3a;
}

.notification-error .fas {
    color: #e63e35;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.notification-content i {
    font-size: 1.63rem;
}

.notification-content span {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.61rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-ocean));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.34rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: var(--spacing-md);
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: var(--spacing-md);
}

/* FAQ Interactions */
.faq-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: var(--mint-light);
}

.faq-card.active {
    background: var(--sage-light);
    color: var(--white);
}

.faq-card h5 {
    position: relative;
    padding-right: var(--spacing-xl);
}

.faq-card h5::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.52rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-card.active h5::after {
    content: 'â';
    transform: rotate(180deg);
}

.faq-card p {
    display: none;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Review Cards Auto-scroll */
.review-card {
    opacity: 0.7;
    transition: all 0.5s ease;
}

.review-card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Loading States */
.loaded {
    opacity: 1;
    transform: translateY(0);
}

img:not(.loaded) {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* In View Animations */
.in-view {
    opacity: 1;
    transform: translateY(0);
}

.service-card:not(.in-view),
.feature-card:not(.in-view),
.pricing-card:not(.in-view) {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Progress Bar */
#progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
    pointer-events: none;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-ocean));
    z-index: 1000;
    transition: width 0.3s ease;
    width: 0%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.py-5 { padding: var(--spacing-xl) 0; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.51rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px;
        margin-right: 0;
    }
    
    .timeline-item::before {
        left: -31px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .meditation-timer {
        padding: var(--spacing-lg);
        margin: var(--spacing-md);
    }
    
    .timer-display .time {
        font-size: 3rem;
    }
    
    .breathing-circle, .breath-circle {
        width: 150px;
        height: 150px;
    }
    
    .timer-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .timer-controls .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.30rem !important;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.26rem;
    }
    
    .notification {
        right: -300px;
        max-width: 280px;
    }
    
    .notification.show {
        right: var(--spacing-sm);
    }
    
    .timer-display .time {
        font-size: 2.59rem;
    }
    
    .breathing-circle, .breath-circle {
        width: 120px;
        height: 120px;
    }
    
    .circle-inner {
        width: 90px;
        height: 90px;
    }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* FAQ Interactions - Pure CSS (Updated) */
.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    cursor: pointer;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    margin: 0;
}

.faq-question:hover {
    background: var(--mint-light);
}

.faq-question h5 {
    margin: 0;
    flex: 1;
    font-size: var(--font-size-h5);
    color: var(--text-dark);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-sage);
    transition: transform 0.3s ease;
    margin-left: var(--spacing-md);
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--mint-light);
}

/* Active state when checkbox is checked */
.faq-toggle:checked + .faq-question {
    background: var(--sage-light);
}

.faq-toggle:checked + .faq-question h5 {
    color: var(--white);
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding-top: var(--spacing-sm);
}

.faq-toggle:checked ~ .faq-answer p {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
}
