/* ========================================
   My Sasta Insurance - Partner Page Styles
   Modern Glassmorphic Design
   ======================================== */

/* Color Variables */
:root {
    --primary: #009688;
    --secondary: #263238;
    --accent: #FFCA28;
    --background: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #263238;
    --text-light: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow);
}

/* Navigation - Same as home */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button svg {
    vertical-align: middle;
    flex-shrink: 0;
}

.cta-button:hover {
    background: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, #E0F2F1 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #00796B);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-button:hover {
    background: #00796B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.4);
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

.secondary-button {
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

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

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(60px);
}

.shape1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), #4DB6AC);
    top: -200px;
    right: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), #FFD54F);
    bottom: -150px;
    left: -100px;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Why Partner Section */
.why-partner {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow);
}

.benefit-icon {
    font-size: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Partnership Types Section */
.partnership-types {
    padding: 80px 0;
    background: var(--background);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.type-card {
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow);
}

.type-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 12px 50px rgba(0, 150, 136, 0.2);
}

.type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.type-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.type-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.type-badge.premium {
    background: var(--accent);
    color: var(--text-dark);
}

.type-description {
    margin-bottom: 25px;
}

.type-description p {
    color: var(--text-light);
    line-height: 1.6;
}

.type-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.feature {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 15px;
}

.feature:last-child {
    border-bottom: none;
}

.type-cta {
    display: block;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.type-cta:hover {
    background: #00796B;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow);
}

.step-arrow {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #00796B);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: var(--background);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    padding: 35px;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--shadow);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.story-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #00796B);
}

.cta-content {
    text-align: center;
    padding: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content>p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-content .primary-button {
    background: var(--white);
    color: var(--primary);
}

.cta-content .primary-button:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: var(--accent) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        grid-column: span 1;
    }

    .step-arrow {
        grid-column: span 1;
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-cta {
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .primary-button,
    .secondary-button {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
    }

    .primary-button svg,
    .secondary-button svg {
        width: 16px;
        height: 16px;
    }

    /* Compact sections */
    .benefits,
    .partnership-types,
    .how-it-works,
    .success-stories {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Compact grids */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .types-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Compact benefit cards */
    .benefit-card {
        padding: 25px 18px;
    }

    .benefit-icon {
        font-size: 48px;
        margin: 0 auto 15px;
        height: 60px;
    }

    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Compact type cards */
    .type-card {
        padding: 25px 18px;
    }

    .type-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .type-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .type-card p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .type-features li {
        font-size: 13px;
        padding: 6px 0;
    }

    /* Compact process steps */
    /* Compact process steps */
    .process-step {
        padding: 20px 15px;
    }

    .step-number {
        font-size: 18px;
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .process-step h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .process-step p {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Compact success stories */
    .story-card {
        padding: 25px 18px;
    }

    .story-header h4 {
        font-size: 16px;
    }

    .story-type {
        font-size: 12px;
    }

    .story-content {
        font-size: 13px;
        line-height: 1.5;
    }

    .story-metrics {
        gap: 15px;
    }

    .metric-value {
        font-size: 20px;
    }

    .metric-label {
        font-size: 11px;
    }

    /* Compact CTA */
    .cta-content {
        padding: 35px 18px;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-content>p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cta-features {
        gap: 10px;
        margin-bottom: 20px;
    }

    .cta-features li {
        font-size: 13px;
    }

    /* Compact Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .disclaimer {
        font-size: 11px;
    }
}