/* ===================================
   PERS Community Website Styles
   Modern, bubbly design with animations
   =================================== */

/* CSS Variables - PERS Brand Colors */
:root {
    --color-pink: #ee3778;
    --color-blue: #1fb1e7;
    --color-green: #81c453;
    --color-yellow: #f1ac1e;
    --color-grey: #cfcfce;

    --color-primary: var(--color-pink);
    --color-secondary: var(--color-blue);
    --color-accent: var(--color-green);
    --color-highlight: var(--color-yellow);

    --color-dark: #2d2d2d;
    --color-light: #f8f9fa;
    --color-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);
    --shadow-bubble: 0 8px 24px rgba(238, 55, 120, 0.15);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    position: relative;
    z-index: 1002;
    display: block;
    pointer-events: auto;
}

.logo img {
    height: 50px;
    transition: transform var(--transition-smooth);
    display: block;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:not(.btn-primary):hover {
    color: var(--color-primary);
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-smooth);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    padding: 1rem 2.5rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    box-shadow: var(--shadow-bubble);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(238, 55, 120, 0.25);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

button.btn {
    background: none;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 55, 120, 0.85), rgba(31, 177, 231, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--color-white);
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-white);
    border-radius: 50%;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 16px); opacity: 0.5; }
}

/* Hero Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* Bubble Float Animation */
.bubble-float {
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-float-delay {
    animation: bubbleFloat 3s ease-in-out 0.5s infinite;
}

.bubble-float-delay-2 {
    animation: bubbleFloat 3s ease-in-out 1s infinite;
}

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

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.service-icon.pink {
    background: linear-gradient(135deg, var(--color-pink), #ff4d8f);
}

.service-icon.blue {
    background: linear-gradient(135deg, var(--color-blue), #4dc3f7);
}

.service-icon.green {
    background: linear-gradient(135deg, var(--color-green), #9dd66f);
}

.service-icon.yellow {
    background: linear-gradient(135deg, var(--color-yellow), #ffbd4a);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    background: var(--color-white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--color-light), var(--color-white));
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--transition-smooth);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-grey);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--color-secondary);
}

/* ===================================
   PARTNERS SECTION
   =================================== */

.partners {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-smooth);
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.contact-info > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.contact-item p {
    color: #666;
}

.contact-item p a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.contact-item p a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Contact Map */
.contact-map {
    background: var(--color-light);
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-map iframe {
    border-radius: 16px;
    display: block;
    width: 100%;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, var(--color-dark), #1a1a1a);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   BURGER MENU
   =================================== */

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: all var(--transition-smooth);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

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

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        padding: 0.5rem 0;
        text-align: center;
        font-size: 1.125rem;
    }

    .nav-link.btn-primary {
        display: inline-block;
        padding: 0.875rem 2rem;
    }

    .hero {
        margin-top: 70px;
        min-height: 80vh;
    }

    .hero-cta {
        flex-direction: column;
    }

    section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .about-card,
    .service-card,
    .contact-form {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===================================
   SERVICE PAGES
   =================================== */

.page-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-white);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Overview */
.service-overview {
    padding: 6rem 0;
    background: var(--color-white);
}

.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.overview-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats-context {
    grid-column: 1;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    animation: gentle-bounce 2s ease-in-out infinite;
}

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

.stat-card {
    text-align: center;
    padding: 2rem 3rem;
    background: var(--color-white);
    border-radius: 16px;
    transition: all var(--transition-smooth);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
    font-weight: 800;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

/* Individual stat number colors */
.stat-card:nth-child(1) h3 {
    color: var(--color-primary);
}

.stat-card:nth-child(2) h3 {
    color: var(--color-secondary);
}

.stat-card:nth-child(3) h3 {
    color: #27ae60;
}

.stat-card p {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Service Offerings */
.service-offerings {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.offering-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offering-icon svg {
    width: 35px;
    height: 35px;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.offering-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.offering-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.offering-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.offering-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

/* Service Partners */
.service-partners {
    padding: 6rem 0;
    background: var(--color-white);
}

.service-partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.partners-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-light);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.partner-item:hover {
    background: linear-gradient(135deg, rgba(238, 55, 120, 0.1), rgba(31, 177, 231, 0.1));
    transform: translateX(5px);
}

.partner-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-green);
    flex-shrink: 0;
}

.partner-item span {
    font-weight: 500;
    color: var(--color-dark);
}

/* Success Story */
.success-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-quote {
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.story-quote > svg {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.story-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-quote cite {
    font-size: 1.125rem;
    color: var(--color-white);
    opacity: 0.9;
    font-style: normal;
}

/* Service CTA */
.service-cta {
    padding: 6rem 0;
    background: var(--color-light);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-cta p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

.service-cta .btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Photo Gallery */
.photo-gallery {
    padding: 6rem 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-light);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Course Info Boxes */
.course-info-box {
    background: linear-gradient(135deg, rgba(238, 55, 120, 0.1), rgba(31, 177, 231, 0.1));
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    margin: 2rem 0;
}

.course-info-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.course-info-box p {
    color: var(--color-dark);
    line-height: 1.8;
}

/* Courses List */
.courses-list {
    padding: 1rem 0;
    background: var(--color-white);
}

.course-category {
    margin-bottom: 4rem;
}

.course-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--color-white);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-smooth);
}

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

.course-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.course-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.course-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}
