/* ==========================================
   SECTOR PAGES - DEDICATED STYLES
   ========================================== */

/* Sector Hero Sections */
.sector-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.sector-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    z-index: 1;
}

.sector-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.sector-hero-content {
    max-width: 800px;
    color: white;
}

.sector-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sector-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sector-hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Sector-specific hero backgrounds */
.healthcare-hero::before {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.realestate-hero::before {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.investment-hero::before {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.trading-hero::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.business-hero::before {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.logistics-hero::before {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.technology-hero::before {
    background: linear-gradient(135deg, #1A9B9D 0%, #157476 100%);
}

.construction-hero::before {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

/* Overview Section */
.sector-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 24px;
}

.overview-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #1A9B9D;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 155, 157, 0.1);
}

.stat-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1A9B9D;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box p {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    margin: 0;
}

/* Services Section */
.sector-services {
    padding: 80px 0;
    background: #F9FAFB;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #1A9B9D;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-card .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E6F7F7 0%, #FFFFFF 100%);
    color: #1A9B9D;
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.service-detail-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-card ul li {
    padding: 8px 0;
    padding-left: 30px;
    color: #4B5563;
    font-size: 0.9375rem;
    position: relative;
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1A9B9D;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #1F2937;
    margin-bottom: 60px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A9B9D 0%, #157476 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6B7280;
}

/* Sector CTA */
.sector-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A9B9D 0%, #157476 100%);
    position: relative;
    overflow: hidden;
}

.sector-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sector-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 1;
}

.sector-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sector-cta p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sector-hero h1 {
        font-size: 3rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sector-hero {
        min-height: 50vh;
        padding-top: 100px;
    }
    
    .sector-hero h1 {
        font-size: 2.25rem;
    }
    
    .sector-hero p {
        font-size: 1.0625rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-cta h2 {
        font-size: 2rem;
    }
}