/* ====================================
   ABOUT PAGE STYLES - about.css
   ==================================== */

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #f4a261;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   GLOBAL STYLES
   ==================================== */

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--bg-white);
}

/* Scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 100px;
}

/* ====================================
   BACKGROUND IMAGE SECTIONS
   ==================================== */

.bg-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(3px);
    z-index: 0;
}

.bg-image-section .container {
    position: relative;
    z-index: 1;
}

.nature-bg {
    background-image: url('https://images.unsplash.com/photo-1490730141103-6cac27aaab94?w=1600');
}

.herbs-bg {
    background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=1600');
}

.wellness-bg {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600');
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.display-4 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 162, 97, 0.9) 100%),
                url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?w=1600') center/cover;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ====================================
   MAIN FORUM SECTION
   ==================================== */

.forum-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fef8f0 100%);
    padding: 100px 0;
}

.mission-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-gold);
}

/* ====================================
   SECTION STYLING
   ==================================== */

.content-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 2px;
}

/* ====================================
   IMAGE STYLING
   ==================================== */

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.image-wrapper:hover::before {
    opacity: 1;
}

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

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

/* ====================================
   CARD STYLING
   ==================================== */

.info-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.info-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.info-card p {
    color: var(--dark-text);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.info-card .highlight {
    color: var(--secondary-gold);
    font-weight: 600;
}

/* ====================================
   STATS SECTION
   ==================================== */

.stats-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 162, 97, 0.92) 100%),
                url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?w=1600') center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 162, 97, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-gold);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--dark-text);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.stat-description {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ====================================
   COMMUNITY SECTION - ENHANCED
   ==================================== */

.community-section {
    background: #fef8f0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.community-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* Header Styling */
.community-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 15px;
}

.community-pretitle {
    font-size: 0.95rem;
    color: var(--secondary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: block;
}

.community-header h2 {
    color: var(--dark-text);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.community-header h2 .highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--light-text);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

/* Stats Banner */
.community-stats-banner {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.community-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold), var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    border-radius: 24px 24px 0 0;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(244, 162, 97, 0.03));
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.stat-box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
    transition: var(--transition);
}

.stat-box:hover .stat-box-icon {
    transform: scale(1.1);
}

.stat-box-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box-label {
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-box-description {
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* Section Divider */
.section-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.section-divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    max-width: 400px;
    margin: 0 auto;
}

.section-divider-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 0;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Community Introduction */
.community-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-gold);
}

.community-intro h3 {
    color: var(--primary-gold);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.community-intro p {
    color: var(--dark-text);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.9;
    margin: 0;
}

/* Professional Categories Grid */
.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.professional-category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.professional-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    opacity: 0;
    transition: var(--transition);
}

.professional-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.professional-category-card:hover::before {
    opacity: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    transition: var(--transition);
}

.professional-category-card:hover .category-icon-box {
    transform: scale(1.08) rotate(-5deg);
}

.category-title-wrapper {
    flex: 1;
}

.category-title-wrapper h4 {
    color: var(--dark-text);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.category-count {
    color: var(--secondary-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-description {
    color: var(--light-text);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-features {
    margin-bottom: 1.25rem;
}

.category-features h5 {
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-members-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.member-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 162, 97, 0.08));
    color: var(--dark-text);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.member-badge:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 162, 97, 0.15));
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Support Excellence Section */
.support-excellence-section {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-gold);
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.support-pretitle {
    font-size: 0.9rem;
    color: var(--secondary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.support-header h3 {
    color: var(--primary-gold);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.support-header p {
    color: var(--dark-text);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.9;
}

.support-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 248, 240, 0.9));
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.support-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.support-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

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

.support-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.support-feature-card:hover .support-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.support-feature-card h4 {
    color: var(--dark-text);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.support-feature-card p {
    color: var(--light-text);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 162, 97, 0.05));
    border-radius: 16px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--dark-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====================================
   QUOTE SECTION
   ==================================== */

.quote-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511884642898-4c92249e20b6?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-gold);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.quote-text::before {
    top: -20px;
    left: -40px;
}

.quote-text::after {
    bottom: -40px;
    right: -20px;
}

.quote-author {
    font-size: 1.25rem;
    color: var(--secondary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   CALL TO ACTION SECTION
   ==================================== */

.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 162, 97, 0.92) 100%),
                url('https://images.unsplash.com/photo-1470058869958-2a77ade41c02?w=1600') center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-gold {
    background: white;
    color: var(--primary-gold);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--secondary-gold);
    background: #fff;
}

.btn-outline-gold {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: white;
    border-color: white;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-feature-item i {
    font-size: 1.25rem;
    font-style: normal;
}

/* ====================================
   ANIMATION CLASSES
   ==================================== */

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

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

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

    .professionals-grid {
        grid-template-columns: 1fr;
    }

    .support-features-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

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

    .content-section {
        padding: 50px 0;
    }

    .info-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .quote-text::before,
    .quote-text::after {
        display: none;
    }

    .quote-text {
        font-size: 1.35rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-gold,
    .btn-outline-gold {
        width: 100%;
        max-width: 300px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-section h2 {
        font-size: 2rem;
    }

    /* Community Section Mobile */
    .community-section {
        padding: 60px 0;
    }

    .community-stats-banner {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .community-intro {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .professional-category-card {
        padding: 2rem;
    }

    .category-header {
        flex-direction: row;
        align-items: center;
    }

    .category-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .support-excellence-section {
        padding: 2.5rem 1.5rem;
        margin-top: 2.5rem;
    }

    .support-feature-card {
        padding: 2rem 1.5rem;
    }

    .support-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .trust-indicators {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .cta-features {
        gap: 1.5rem;
        flex-direction: column;
    }

    .forum-section {
        padding: 60px 0;
    }

    .mission-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .community-header {
        padding: 0 10px;
    }

    .professional-category-card {
        padding: 1.5rem;
    }

    .category-header {
        gap: 1rem;
    }

    .support-features-grid {
        gap: 1.5rem;
    }
}