/* =========================================
   TAXATION PAGE STYLES
   ========================================= */

/* Banner */
.payroll-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: white;
}
.tax-bg { background-image: url('Taxation.jpg'); }

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 46, 30, 0.7); /* Emerald overlay */
  z-index: 1;
}
.banner-content { z-index: 2; position: relative; }
.banner-content h1 {
    font-size: 3rem; font-weight: 800; margin-bottom: 1rem;
}
.banner-content p { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 ; }

/* Services List */
.taxation-services {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.taxation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media(min-width: 768px) { .taxation-grid { grid-template-columns: repeat(2, 1fr); } }

.taxation-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 15px -3px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}
.taxation-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); 
}

.taxation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecfdf5;
}
.taxation-card ul { padding-left: 1.25rem; color: #64748b; }
.taxation-card li { margin-bottom: 0.5rem; }

/* Features (Why Choose Us) - REDESIGNED */
.taxation-features {
    position: relative;
    padding: 6rem 0;
    background: url('Taxation.jpg') center/cover no-repeat fixed;
}
.taxation-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0.9); /* Deep Emerald Overlay */
    z-index: 1;
}
.taxation-features .container { position: relative; z-index: 2; }

.features-header { text-align: center; margin-bottom: 4rem; color: white; }
.features-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.features-subtitle { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto; }

.feature-grid {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media(min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border-bottom: 4px solid #10b981;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.feature-card h3 {
    font-size: 1.125rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.9rem; color: #64748b; line-height: 1.5;
}

/* CTA */
.payroll-cta {
  background: #ffffff;
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}
.cta-content h2 { font-size: 2rem; font-weight: 800; color: #f1f2f5; margin-bottom: 1rem; }
.cta-content p { color: #f3f4f5; margin-bottom: 2rem; font-size: 1.1rem; }