/* ==========================================
   Simat Website - Main Stylesheet
   Colors: #15284E (Primary), #28aa95 (Secondary), #FDBB42 (Accent)
   ========================================== */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   FONT FACES
   ========================================== */
@font-face {
    font-family: 'Effra';
    src: url('../fonts/alfont_com_Effra_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Effra';
    src: url('../fonts/alfont_com_Effra_Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Effra';
    src: url('../fonts/alfont_com_Dalton-Maag-Effra-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Effra';
    src: url('../fonts/alfont_com_Effra_Lt.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bentho';
    src: url('../fonts/Bentho-x3LAq.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --primary-color: #15284E;
    --secondary-color: #28aa95;
    --accent-color: #FDBB42;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0a1628;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(21, 40, 78, 0.08);
    --shadow-md: 0 4px 16px rgba(21, 40, 78, 0.12);
    --shadow-lg: 0 8px 32px rgba(21, 40, 78, 0.16);
    --border-radius: 12px;
}

/* ==========================================
   GENERAL STYLES
   ========================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Effra', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--text-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0 120px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Effra', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Effra', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(40, 170, 149, 0.3);
}

.btn-primary:hover {
    background: #23967f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 149, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header.light .section-title {
    color: var(--text-white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #15284E 0%, #1a325f 50%, #15284E 100%);
    background-size: 200% 100%;
    animation: headerGradient 8s ease infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(21, 40, 78, 0.4);
    transition: var(--transition);
}

@keyframes headerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.site-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.site-header.scrolled .logo img {
    height: 48px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-menu li a {
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 40, 78, 0.85) 0%, rgba(21, 40, 78, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    cursor: pointer;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--text-white);
    border-radius: 30px;
    margin: 0 auto 12px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--text-white);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   VALUE STATEMENT SECTION
   ========================================== */
.value-statement-section {
    background: var(--bg-light);
    padding: 80px 0;
    border-bottom: 1px solid rgba(21, 40, 78, 0.08);
}

.value-content {
    max-width: 1200px;
    margin: 0 auto;
}

.value-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.value-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--primary-color);
    font-weight: 500;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.value-column {
    padding: 20px;
}

.value-column h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--secondary-color);
}

.highlights-column {
    border-right: 1px solid rgba(21, 40, 78, 0.1);
}

.compact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.compact-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 2px;
}

.proposition-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(40, 170, 149, 0.05) 0%, rgba(253, 187, 66, 0.05) 100%);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    transition: var(--transition);
}

.proposition-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, rgba(40, 170, 149, 0.08) 0%, rgba(253, 187, 66, 0.08) 100%);
}

.proposition-item:last-child {
    margin-bottom: 0;
}

.prop-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

.prop-desc {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    z-index: 1;
}

/* About Subtitle */
.about-subtitle {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* Who We Are Intro */
.about-intro {
    margin-bottom: 80px;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.vm-card {
    background: var(--text-white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vision-card {
    border-top: 4px solid var(--secondary-color);
}

.vision-card:hover {
    border-color: var(--secondary-color);
}

.mission-card {
    border-top: 4px solid var(--accent-color);
}

.mission-card:hover {
    border-color: var(--accent-color);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.mission-card .vm-icon {
    color: var(--accent-color);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1);
}

.vm-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--text-white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--secondary-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(21, 40, 78, 0.05);
    line-height: 1;
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.375rem;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Organizational Psychology Approach */
.approach-section {
    margin-bottom: 80px;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a325f 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.highlight-statement {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 12px;
}

.highlight-statement:last-child {
    margin-bottom: 0;
}

.approach-text {
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.approach-text p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.approach-text p:last-child {
    margin-bottom: 0;
}

/* Our Promise */
.promise-section {
    margin-bottom: 80px;
}

.promise-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #23967f 100%);
    padding: 50px 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.promise-card h3 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.promise-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.promise-item {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
}

.promise-separator {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Who We Serve */
.serve-section {
    margin-bottom: 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.serve-card {
    background: var(--text-white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.serve-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.serve-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.serve-label {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.serve-header h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.serve-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.serve-focus {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.focus-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 8px;
}

.serve-focus p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   SECTION DIVIDER
   ========================================== */
.section-divider {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--text-white) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(40, 170, 149, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(253, 187, 66, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 20%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 80%, 
        transparent 100%);
    opacity: 0.3;
}

.divider-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    flex-shrink: 0;
    animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ==========================================
   NUMBERS SECTION
   ========================================== */
.numbers-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1628 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(40, 170, 149, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 187, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.number-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.number-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.number-card:hover .card-icon {
    color: var(--accent-color);
    transform: scale(1.1) rotateY(360deg);
}

.card-content {
    color: var(--text-white);
}

.number-value {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    display: inline-block;
    line-height: 1;
}

.number-suffix {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
    margin-left: 4px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 20px 0 12px;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    background: var(--bg-light);
}

.service-category {
    margin-bottom: 80px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px;
    background: linear-gradient(135deg, rgba(21, 40, 78, 0.02) 0%, rgba(40, 170, 149, 0.02) 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, rgba(21, 40, 78, 0.05) 0%, rgba(40, 170, 149, 0.05) 100%);
    box-shadow: 0 2px 8px rgba(21, 40, 78, 0.08);
}

.category-header-content {
    flex: 1;
}

.expand-icon {
    width: 32px;
    height: 32px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-category.expanded .expand-icon {
    transform: rotate(180deg);
}

.category-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: center;
}

.category-intro {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.service-category.expanded .services-grid {
    max-height: 5000px;
    opacity: 1;
    margin-top: 20px;
}

.service-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* ==========================================
   APPROACH SECTION
   ========================================== */

.approach-category {
    margin-bottom: 40px;
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.approach-category:last-child {
    margin-bottom: 0;
}

.approach-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(21, 40, 78, 0.03) 0%, rgba(40, 170, 149, 0.03) 100%);
    transition: all 0.3s ease;
}

.approach-header:hover {
    background: linear-gradient(135deg, rgba(21, 40, 78, 0.06) 0%, rgba(40, 170, 149, 0.06) 100%);
}

.approach-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin: 0;
}

.approach-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.approach-category.expanded .approach-content {
    max-height: 3000px;
    opacity: 1;
    padding: 32px;
}

/* How We Work - Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.step-item {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(40, 170, 149, 0.05) 0%, rgba(21, 40, 78, 0.05) 100%);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1f8a74 100%);
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Development Programs Philosophy - Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.philosophy-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--text-white);
    border: 2px solid rgba(40, 170, 149, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.philosophy-icon svg {
    width: 100%;
    height: 100%;
}

.philosophy-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.philosophy-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Type of Programs - Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.program-card {
    background: linear-gradient(135deg, rgba(21, 40, 78, 0.02) 0%, rgba(40, 170, 149, 0.02) 100%);
    border: 2px solid rgba(21, 40, 78, 0.1);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-duration {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.program-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.program-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   WHY SIMAT SECTION
   ========================================== */
.why-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1f3d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.integrated-approach {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(40, 170, 149, 0.3);
}

.integrated-approach p {
    color: var(--text-white);
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.how-we-work-title {
    color: var(--text-white);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
}

.why-icon {
    width: 64px;
    height: 64px;
    color: var(--secondary-color);
    margin: 0 auto 24px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    color: var(--accent-color);
    transform: scale(1.1) rotateY(360deg);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Approach Categories within Why Section (Blue Background) */
.why-section .approach-category {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 170, 149, 0.2);
}

.why-section .approach-header {
    background: rgba(255, 255, 255, 0.08);
}

.why-section .approach-header:hover {
    background: rgba(255, 255, 255, 0.12);
}

.why-section .approach-title {
    color: var(--text-white);
}

.why-section .expand-icon {
    color: var(--accent-color);
}

.why-section .philosophy-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 170, 149, 0.3);
}

.why-section .philosophy-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
}

.why-section .philosophy-title {
    color: var(--text-white);
}

.why-section .philosophy-description {
    color: rgba(255, 255, 255, 0.8);
}

.why-section .program-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(40, 170, 149, 0.3);
}

.why-section .program-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
}

.why-section .program-title {
    color: var(--text-white);
}

.why-section .program-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   IMPACT SECTION
   ========================================== */
.impact-section {
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.impact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.impact-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.case-studies-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-card {
    background: var(--text-white);
    border: 2px solid rgba(21, 40, 78, 0.1);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(21, 40, 78, 0.15);
}

.case-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f0a732 100%);
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-right: 50px;
}

.case-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-duration {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(40, 170, 149, 0.1) 0%, rgba(40, 170, 149, 0.2) 100%);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 20px;
    border: 1px solid rgba(40, 170, 149, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(21, 40, 78, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: block;
}

.modal-content {
    background: var(--text-white);
    margin: 5% auto;
    padding: 40px 50px;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(21, 40, 78, 0.4), 0 0 0 1px rgba(40, 170, 149, 0.2);
    animation: slideDown 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 40px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(21, 40, 78, 0.05);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 30px;
    padding-right: 50px;
    line-height: 1.3;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(40, 170, 149, 0.05) 0%, rgba(21, 40, 78, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 32px;
}

.meta-item {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.meta-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    color: var(--primary-color);
    font-size: 1.375rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(40, 170, 149, 0.2);
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.modal-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.modal-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.modal-section em {
    color: var(--text-light);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: var(--text-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--secondary-color);
    background: rgba(40, 170, 149, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.info-content small {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Effra', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--text-white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(40, 170, 149, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    gap: 12px;
    position: relative;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(40, 170, 149, 0.1);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: left 0.4s ease;
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-intro,
    .values-section,
    .approach-section,
    .promise-section {
        margin-bottom: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: relative;
        top: 0;
    }

    .about-text h3 {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .numbers-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-category {
        margin-bottom: 60px;
    }

    .category-header {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .expand-icon {
        margin-left: 0;
        margin-top: 12px;
        align-self: center;
    }

    .category-title {
        font-size: 1.75rem;
    }

    .category-intro {
        font-size: 1rem;
    }

    .approach-header {
        padding: 20px;
    }

    .approach-title {
        font-size: 1.5rem;
    }

    .approach-category.expanded .approach-content {
        padding: 24px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .highlights-column {
        border-right: none;
        border-bottom: 1px solid rgba(21, 40, 78, 0.1);
        padding-bottom: 30px;
    }

    .value-column {
        padding: 10px;
    }

    .integrated-approach {
        padding: 20px 24px;
        margin-bottom: 40px;
    }

    .integrated-approach p {
        font-size: 1rem;
    }

    .how-we-work-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .section-divider {
        padding: 50px 0;
    }

    .divider-content {
        gap: 24px;
        padding: 0 20px;
    }

    .divider-icon {
        width: 40px;
        height: 40px;
    }

    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .modal-content {
        padding: 30px 35px;
        margin: 10% auto;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-meta {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .section-divider {
        padding: 40px 0;
    }

    .divider-content {
        gap: 16px;
    }

    .divider-icon {
        width: 32px;
        height: 32px;
    }


    .hero-cta .btn {
        width: 100%;
    }

    .value-statement-section {
        padding: 50px 0;
    }

    .value-intro {
        margin-bottom: 30px;
    }

    .value-intro p {
        font-size: 1rem;
    }

    .integrated-approach {
        padding: 16px 20px;
        margin-bottom: 30px;
    }

    .integrated-approach p {
        font-size: 0.9375rem;
    }

    .how-we-work-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .value-grid {
        padding: 20px;
    }

    .about-subtitle {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .vm-card {
        padding: 30px 24px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }

    .vm-card p {
        font-size: 1rem;
    }

    .value-card {
        padding: 30px 24px;
    }

    .value-card h4 {
        font-size: 1.125rem;
    }

    .approach-highlight {
        padding: 24px 20px;
    }

    .highlight-statement {
        font-size: 1.125rem;
    }

    .approach-text {
        padding: 24px 20px;
    }

    .approach-text p {
        font-size: 1rem;
    }

    .promise-card {
        padding: 30px 24px;
    }

    .promise-card h3 {
        font-size: 1.5rem;
    }

    .promise-items {
        flex-direction: column;
        gap: 12px;
    }

    .promise-separator {
        display: none;
    }

    .promise-item {
        font-size: 1.125rem;
    }

    .serve-card {
        padding: 30px 24px;
    }

    .serve-label {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .serve-header h4 {
        font-size: 1.125rem;
    }

    .value-column h3 {
        font-size: 1.25rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-intro {
        font-size: 0.9375rem;
    }

    .service-category {
        margin-bottom: 50px;
    }

    .category-header {
        padding: 12px;
    }

    .category-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .category-intro {
        font-size: 0.9375rem;
    }

    .approach-header {
        padding: 16px;
    }

    .approach-title {
        font-size: 1.25rem;
    }

    .approach-category.expanded .approach-content {
        padding: 20px 16px;
    }

    .step-item {
        padding: 24px 20px;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .philosophy-item {
        padding: 24px 20px;
    }

    .philosophy-title {
        font-size: 1.125rem;
    }

    .program-card {
        padding: 24px 20px;
    }

    .program-title {
        font-size: 1.25rem;
    }

    .compact-list li,
    .prop-label,
    .prop-desc {
        font-size: 0.9375rem;
    }

    .highlight-text,
    .promise-text {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .serve-item {
        padding: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-study-card {
        padding: 28px 24px;
    }

    .case-title {
        font-size: 1.125rem;
    }

    .modal-content {
        padding: 24px 20px;
        margin: 15% auto;
        max-height: 80vh;
    }

    .modal-close {
        right: 15px;
        top: 15px;
        font-size: 32px;
        width: 35px;
        height: 35px;
    }

    .modal-title {
        font-size: 1.25rem;
        padding-right: 40px;
    }

    .modal-section h3 {
        font-size: 1.125rem;
    }

    .case-studies-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Loading States */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--secondary-color);
    color: var(--text-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
