/* NeoFit Website Styles */

/* CSS Variables */
:root {
    --primary-teal: #14B8A6;
    --primary-dark: #0D9488;
    --primary-light: #5EEAD4;
    --accent-blue: #0EA5E9;
    --dark-bg: #0F172A;
    --dark-surface: #1E293B;
    --light-bg: #F8FAFC;
    --light-surface: #FFFFFF;
    --text-dark: #0F172A;
    --text-light: #F8FAFC;
    --text-muted: #64748B;
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --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);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-md);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

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

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

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

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

/* Header CTA Button */
.header-cta-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    white-space: nowrap;
    margin-left: 1rem;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%),
                url('../images/hero-background.jpg') center/cover;
    z-index: 0;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(248, 250, 252, 0.9);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Who Is It For Section */
.who-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.who-card {
    background: var(--light-surface);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.who-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.who-card ul {
    list-style: none;
    padding: 0;
}

.who-card li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.who-card li::before {
    content: '✓';
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Why NeoFit Section - Postcard Style */
#why-neofit {
    background: var(--light-bg);
}

.postcard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light-surface);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.postcard-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.postcard-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.postcard-list {
    list-style: none;
    padding: 0;
}

.postcard-list li {
    padding: 1rem 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.postcard-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.5rem;
}

.postcard-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.postcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Features Grid - Keep for other sections if needed */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-surface);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works Section - New Carousel */
.carousel-wrapper {
    max-width: 1400px;
    margin: 3rem auto 0;
    position: relative;
}

.carousel-slide-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide-new {
    display: none;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide-new.active {
    display: grid;
    opacity: 1;
    animation: slideIn 0.5s ease;
}

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

.slide-content-left {
    padding: 2rem 0;
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

.slide-content-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

.slide-image-right {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.slide-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
    transform: scale(1.1);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot.active {
    background: var(--primary-teal);
    width: 12px;
    height: 12px;
}

/* Old Carousel Styles - Keep for backwards compatibility */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 60px;
}

.carousel {
    overflow: hidden;
    border-radius: 20px;
    background: var(--light-surface);
    box-shadow: var(--shadow-md);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 3rem;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.carousel-slide h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.carousel-slide p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-teal);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.carousel-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--primary-teal);
    width: 32px;
    border-radius: 6px;
}

/* Contact Form Section */
#contact {
    background: var(--dark-bg);
    color: var(--text-light);
}

#contact .section-header h2 {
    color: var(--text-light);
}

#contact .section-header p {
    color: rgba(248, 250, 252, 0.7);
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: var(--dark-surface);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    background: rgba(248, 250, 252, 0.05);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(248, 250, 252, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-surface);
    color: var(--text-light);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(20, 184, 166, 0.2);
    color: var(--primary-light);
    border: 1px solid var(--primary-teal);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border: 1px solid #EF4444;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

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

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(248, 250, 252, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    line-height: 1.5;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.social-icon svg {
    display: block;
    flex-shrink: 0;
}

.social-icon:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(248, 250, 252, 0.1);
    color: rgba(248, 250, 252, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        left: 0;
    }

    .header-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 3rem 1.5rem;
    }

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

    .who-for-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .postcard-container {
        grid-template-columns: 1fr;
    }

    .postcard-content {
        padding: 2.5rem 2rem;
    }

    .postcard-content h2 {
        font-size: 2.5rem;
    }

    .postcard-list li {
        font-size: 1.1rem;
    }

    .postcard-image {
        min-height: 300px;
    }

    .carousel-slide-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slide-content-left {
        padding: 1rem 0;
    }

    .slide-content-left h3 {
        font-size: 1.6rem;
    }

    .slide-image-right {
        height: 300px;
        order: -1;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        padding-bottom: 0.5rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-slide {
        padding: 2rem 1.5rem;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}

/* Animation utility classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ========================================
   PARTNER PAGE STYLES
   ======================================== */

/* Active nav link */
.nav-links a.active {
    color: var(--primary-light);
}

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

/* Partner Hero */
.partner-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    margin-top: 80px;
}

.partner-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(13, 148, 136, 0.7) 100%),
                url('../images/hero-background.jpg') center/cover;
    z-index: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--light-surface);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Light Section */
.light-section {
    background: var(--light-bg);
}

/* Partner Types Grid */
.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-type-card {
    background: var(--light-surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.partner-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.type-image-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.partner-type-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.partner-type-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Dark Section */
.dark-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.dark-section .section-header h2 {
    color: var(--text-light);
}

.dark-section .section-header p {
    color: rgba(248, 250, 252, 0.7);
}

/* Partner Application Form */
.partner-application-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--dark-surface);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

/* Partner Page Responsive */
@media (max-width: 768px) {
    .partner-hero {
        height: 60vh;
        min-height: 400px;
    }

    .timeline-step {
        flex-direction: column;
        gap: 1rem;
    }

    .partner-application-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .partner-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partner-hero {
        margin-top: 70px;
    }

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

/* ========================================
   COMPETE SECTION STYLES
   ======================================== */

#compete {
    background: var(--light-surface);
}

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

.compete-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.compete-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.compete-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.compete-card:hover .compete-image-wrapper img {
    transform: scale(1.08);
}

.compete-content {
    padding: 2rem;
}

.compete-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.compete-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Compete Section Responsive */
@media (max-width: 768px) {
    .compete-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .compete-image-wrapper {
        height: 200px;
    }

    .compete-content {
        padding: 1.5rem;
    }

    .compete-content h3 {
        font-size: 1.4rem;
    }
}

/* ========================================
   SEGMENTS (WHOM WE SERVE) STYLES
   ======================================== */

.segments-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.segment-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.segment-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.segment-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 50%;
}

.segment-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

/* Segments Responsive */
@media (max-width: 768px) {
    .segment-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .segment-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .segment-text h3 {
        font-size: 1.5rem;
    }

    .segment-text p {
        font-size: 1rem;
    }

    .segment-item:hover {
        transform: translateX(0) translateY(-4px);
    }
}