/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #0f4c81;
    --primary-dark: #0a3558;
    --primary-light: #1565a0;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Lora', Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   LAYOUT & CONTAINER
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-body);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f4c81 0%, #1565a0 100%);
    opacity: 0.95;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-primary-inverse {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-primary-inverse:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 16px 0;
}

.section-header.centered .title-underline {
    margin: 16px auto;
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-content {
    max-width: 900px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* ===================================
   FEATURES GRID
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta-buttons {
    margin-bottom: 24px;
}

.cta-contact {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cta-contact a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.cta-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-style: italic;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   SERVICES DETAIL
   =================================== */
.services-detail-section {
    padding: 60px 0;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(15, 76, 129, 0.08);
    position: absolute;
    top: 20px;
    left: 0;
    font-family: var(--font-heading);
    z-index: 0;
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-detail-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.service-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-detail-content .btn {
    margin-top: 24px;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
    max-width: 800px;
}

.content-title {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.approach-step {
    position: relative;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(15, 76, 129, 0.15);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.leadership-section {
    max-width: 900px;
}

.leadership-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 32px;
}

.leadership-name {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.leadership-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.leadership-description {
    color: var(--text-medium);
    line-height: 1.7;
}

.leadership-contact {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.leadership-contact p {
    margin-bottom: 8px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-status {
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
}

.info-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.info-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.info-company {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-section p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section em {
    font-size: 0.9rem;
    color: var(--text-light);
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-container {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.map-note a {
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 24px;
}

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

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        align-items: flex-start;
        gap: 16px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.85rem;
    }

    .page-subtitle {
        font-size: 1.05rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .contact-info-box {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===================================
   LOGO IMAGE STYLING
   =================================== */
.logo-image {
    height: 48px;
    width: auto;
    border-radius: 4px;
}

/* ===================================
   DROPDOWN NAVIGATION
   =================================== */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 12px 0;
    z-index: 1000;
    margin-top: 8px;
}

.dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

/* ===================================
   SERVICE PAGE HERO
   =================================== */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
}

.service-hero-content {
    max-width: 800px;
}

.service-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.service-hero-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* ===================================
   INTERACTIVE TABS
   =================================== */
.service-tabs {
    margin-top: 48px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

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

.tab-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.tab-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.tab-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-checklist {
    list-style: none;
    padding: 0;
}

.service-checklist li {
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-checklist li:last-child {
    border-bottom: none;
}

.service-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.tab-visual {
    position: sticky;
    top: 100px;
}

.visual-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.visual-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.visual-card p {
    color: var(--text-medium);
    margin: 0;
}

/* ===================================
   PROCESS TIMELINE
   =================================== */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 60px;
    bottom: -32px;
    width: 2px;
    background: var(--border-color);
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   BENEFITS GRID
   =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   WHO BENEFITS GRID
   =================================== */
.who-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.who-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.who-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.who-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.service-intro {
    max-width: 900px;
    margin-bottom: 48px;
}

.content-title.centered {
    text-align: center;
}

/* ===================================
   RESPONSIVE UPDATES
   =================================== */
@media (max-width: 968px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tab-visual {
        position: static;
    }

    .service-hero-title {
        font-size: 2.25rem;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .service-hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-timeline {
        padding-left: 0;
    }

    .process-step {
        flex-direction: column;
    }

    .process-step::before {
        left: 23px;
    }
}

/* ===================================
   SERVICES ACCORDION
   =================================== */
.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-title {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.accordion-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.accordion-title h3 {
    font-size: 1.5rem;
    margin: 0 0 4px 0;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.accordion-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.accordion-toggle {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.accordion-header:hover .accordion-toggle {
    background: var(--primary-dark);
}

.accordion-item.active .accordion-toggle {
    background: var(--accent-color);
}

.accordion-item.active .accordion-toggle::after {
    content: ' ▲';
}

.accordion-toggle::after {
    content: ' ▼';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-inner {
    padding: 0 32px 32px 32px;
    border-top: 2px solid var(--bg-light);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-highlights {
    margin-bottom: 32px;
}

.service-highlights h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.highlight-item {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 1rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.service-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .accordion-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .accordion-toggle {
        align-self: flex-start;
    }

    .accordion-inner {
        padding: 0 20px 20px 20px;
    }

    .service-actions {
        flex-direction: column;
    }

    .service-actions .btn {
        width: 100%;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
}
