/* Partnership Page Styles */

.partnership-page {
    background: #f9f9f9;
}

/* Hero Section */
.partnership-hero {
    background: linear-gradient(135deg, #d70f20 0%, #005b85 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.partnership-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partnership-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partnership-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-partnership-cta {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #d70f20;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-partnership-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    color: #d70f20;
}

/* Section Title */
.section-title-partnership {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
    position: relative;
}

.section-title-partnership::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d70f20, #005b85);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Benefits Section */
.partnership-benefits {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

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

.benefit-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(215,15,32,0.15);
    border-color: #d70f20;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Apple Color Emoji', 'Arial', sans-serif;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tax Deduction Section */
.partnership-tax {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partnership-tax::before {
    content: '💼';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

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

.tax-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.partnership-tax h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.tax-highlight {
    font-size: 1.4rem;
    color: #d70f20;
    font-weight: 700;
    margin-bottom: 40px;
}

.tax-details {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-bottom: 40px;
}

.tax-detail-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

.tax-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.tax-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

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

.tax-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d70f20;
    margin: 0;
}

.category-detail {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.tax-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tax-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    transition: all 0.3s ease;
}

.tax-step:hover {
    background: linear-gradient(135deg, #f5f5f5, #ebebeb);
}

.tax-step.reduction {
    background: linear-gradient(135deg, #fff3f3, #ffe8e8);
}

.tax-step.result {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.step-icon {
    font-size: 2rem;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.step-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d70f20;
}

.tax-step.result .step-value {
    color: #2e7d32;
}

.tax-arrow {
    font-size: 2rem;
    color: #d70f20;
    font-weight: 700;
    transform: rotate(90deg);
}

.tax-divider {
    display: none;
}

.tax-percentage {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d70f20, #ff3b4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tax-detail-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

.tax-example {
    background: linear-gradient(135deg, #fff9e6, #fff3d4);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
    margin-bottom: 30px;
    text-align: left;
    font-size: 1rem;
    color: #555;
}

.tax-example-inline {
    background: rgba(215, 15, 32, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 12px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.tax-example strong,
.tax-example-inline strong {
    color: #d70f20;
}

.tax-receipt {
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tax-receipt i {
    color: #d70f20;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .tax-details {
        flex-direction: column;
    }
    
    .tax-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .tax-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .tax-step {
        width: 100%;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .tax-category h3 {
        font-size: 1.2rem;
    }
}

/* Partnership Packages */
.partnership-packages {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    max-width: 100%;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid #e0e0e0;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-featured {
    border-color: #d70f20;
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #d70f20, #ff3b4e);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(215,15,32,0.3);
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d70f20;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.package-features li:last-child {
    border-bottom: none;
}

.btn-package {
    display: block;
    text-align: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #d70f20, #ff3b4e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215,15,32,0.2);
}

.btn-package:hover {
    background: linear-gradient(135deg, #b80d1a, #d70f20);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215,15,32,0.3);
    color: white;
}

/* Stats Section */
.partnership-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #d70f20 0%, #005b85 100%);
    color: white;
}

.stats-grid-partnership {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.stat-item-partnership {
    text-align: center;
}

.stat-number-partnership {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-partnership {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.partnership-cta {
    padding: 80px 20px;
    text-align: center;
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.partnership-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.partnership-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-partnership-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #d70f20, #ff3b4e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(215,15,32,0.25);
}

.btn-partnership-primary:hover {
    background: linear-gradient(135deg, #b80d1a, #d70f20);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(215,15,32,0.35);
    color: white;
}

.btn-partnership-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    color: #d70f20;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #d70f20;
    transition: all 0.3s ease;
}

.btn-partnership-secondary:hover {
    background: #d70f20;
    color: white;
    transform: translateY(-3px);
}

/* About Section */
.partnership-about {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.disciplines-list {
    background: linear-gradient(135deg, rgba(215, 15, 32, 0.05), rgba(0, 91, 133, 0.05));
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.disciplines-list h3 {
    color: #d70f20;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.disciplines-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.disciplines-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #333;
}

.disciplines-list i {
    color: #d70f20;
}

/* Team Stats Section */
.partnership-team {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f9f9;
}

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

.team-stat-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-stat-card:hover {
    transform: translateY(-8px);
}

.team-stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.team-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d70f20, #005b85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.team-stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Results Section */
.partnership-results {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.results-category {
    margin-bottom: 50px;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
}

.results-category h3 {
    color: #d70f20;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-category h4 {
    color: #005b85;
    font-size: 1.2rem;
    margin: 30px 0 15px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.result-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #d70f20;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.result-item strong {
    display: block;
    color: #222;
    font-size: 1rem;
    margin-bottom: 8px;
}

.result-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.highlight-result {
    border-left-color: #005b85;
    background: linear-gradient(135deg, rgba(215, 15, 32, 0.05), rgba(0, 91, 133, 0.05));
}

/* Objectives Section */
.partnership-objectives {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f9f9;
}

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

.objective-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-8px);
}

.objective-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.objective-card h3 {
    color: #d70f20;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.objective-card li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.objective-card li:last-child {
    border-bottom: none;
}

.objective-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d70f20;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .partnership-hero h1 {
        font-size: 2rem;
    }
    
    .partnership-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-partnership {
        font-size: 1.8rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-featured {
        transform: scale(1);
    }
    
    .stat-number-partnership {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-partnership-primary,
    .btn-partnership-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .disciplines-list ul {
        grid-template-columns: 1fr;
    }
    
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;    }
}

@media (max-width: 480px) {
    .team-stats-grid {
        grid-template-columns: 1fr;
    }
}