/* =================================
   NEW MODERN ABOUT PAGE STYLES
==================================== */

:root {
    --color-gold-dark: #d4af37;
    --color-gold-light: #f4d03f;
    --color-black: #000000;
    --color-dark-grey: #0a0a0a;
    --color-light-grey: #1a1a1a;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

body {
    background-color: var(--color-black);
    color: var(--color-text);
    font-family: var(--font-main);
}

.about-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Keyframes for Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(244, 208, 63, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(244, 208, 63, 0.6); }
}

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

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

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

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

/* Hero Section */
.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 100px 20px;
    background: var(--color-dark-grey) radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0) 70%);
    border-bottom: 1px solid var(--color-gold-dark);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border: 1px solid var(--color-gold-dark);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    animation: pulse 3s infinite;
}

.badge-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px var(--color-gold-light));
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    animation: fadeInUp 1.2s ease-out;
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1.4s ease-out;
}

/* General Card Styling */
.intro-card, .mission-card, .about-card, .founders-card {
    background: var(--color-light-grey);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out forwards;
}

.intro-card:hover, .mission-card:hover, .about-card:hover, .founders-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

/* Story, Philosophy, Founders Sections */
.story-intro, .philosophy-section, .founders-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.philosophy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-card, .founders-card {
    max-width: 900px;
    text-align: center;
}

.intro-title, .mission-title, .about-title, .founders-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

.closing-statement {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    font-style: italic;
}

/* Therapies Showcase */
.therapies-showcase {
    padding: 80px 20px;
    text-align: center;
    background: var(--color-dark-grey);
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-gold-light);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.therapy-item {
    background: var(--color-light-grey);
    color: var(--color-text);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out;
}

.therapy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.therapy-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-gold-dark);
    color: var(--color-gold-light);
}

.therapy-item:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .philosophy-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .hero-badge {
        padding: 10px 20px;
        gap: 10px;
    }

    .badge-logo {
        width: 30px;
        height: 30px;
    }

    .story-intro, .philosophy-section, .founders-section, .therapies-showcase {
        padding: 60px 15px;
    }

    .intro-card, .mission-card, .about-card, .founders-card {
        margin: 15px;
        padding: 30px;
    }
}
