/* ===================================
   CSS Variables
   =================================== */
:root {
    /* Colors - Black/White/Greyscale Theme with Accent */
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --primary-light: #333333;
    --secondary-color: #4a4a4a;
    --secondary-dark: #2a2a2a;
    --accent-color: #DC2626;
    --accent-dark: #B91C1C;
    --accent-light: #EF4444;
    
    --text-primary: #000000;
    --text-secondary: #4a4a4a;
    --text-light: #737373;
    
    --bg-white: #ffffff;
    --bg-gray-50: #fafafa;
    --bg-gray-100: #f5f5f5;
    --bg-gray-200: #e5e5e5;
    --bg-gray-800: #262626;
    --bg-gray-900: #171717;
    
    --border-color: #e5e5e5;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-fast: 0.15s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===================================
   Utilities
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: 16px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

p.large {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-phone svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    overflow: visible;
}

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

/* ===================================
   Emergency Top Bar
   =================================== */
.emergency-bar {
    background: var(--accent-color);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.emergency-phone {
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-base);
}

.emergency-phone:hover {
    opacity: 0.9;
}

/* ===================================
   Header
   =================================== */
.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition-base);
    overflow: visible;
    height: 150px;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    height: 90px;
}

.header.scrolled .header-content {
    min-height: 90px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 32px;
    overflow: visible;
    min-height: 150px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 150;
    max-width: 280px;
}

.logo img {
    height: auto;
    width: 100%;
    max-width: 280px;
    position: relative;
    z-index: 150;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.header.scrolled .logo {
    max-width: 200px;
}

.header.scrolled .logo img {
    max-width: 200px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.logo-text {
    display: none; /* Logo already includes text */
}

.company-name {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1;
}

.tagline {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-base);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    overflow: visible;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin: 20px 0;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Transform to X when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    color: white;
    padding: 120px 0 180px;
    overflow: hidden;
}

/* Hero with Background Image */
.hero-with-image {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 140px 0 200px;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Background Slider */
.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.88) 45%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 2;
}

.hero-content-split {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 550px;
}

.hero-text-left {
    max-width: 600px;
}

.hero-image-right {
    /* Empty div to hold the right column space */
    min-height: 400px;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(26, 26, 26, 0.55) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-content-centered .hero-title,
.hero-content-centered .hero-subtitle,
.hero-content-centered .hero-badge {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title {
    color: white;
    margin-bottom: 24px;
}

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

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-content-centered .hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-left .hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-text-left .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.hero-feature svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

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

.hero-content-centered .hero-cta {
    justify-content: center;
    gap: 20px;
}

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

.hero-cta .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.image-placeholder-icon {
    color: rgba(255, 255, 255, 0.4);
}

.hero-image-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-size: 14px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===================================
   Certifications Section
   =================================== */
.certifications {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
}

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

.cert-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.cert-card.highlight {
    background: white;
    color: var(--text-primary);
    border: 3px solid var(--accent-color);
}

.cert-card.highlight h3,
.cert-card.highlight p {
    color: var(--text-primary);
}

.cert-card.highlight .cert-number {
    color: var(--accent-color);
}

.cert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-card.highlight .cert-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
}

.cert-card.highlight .cert-icon img {
    filter: none;
}

.cert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cert-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.cert-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder-about {
    background: var(--bg-gray-100);
    padding: 80px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.image-placeholder-about svg {
    color: var(--primary-light);
    opacity: 0.3;
}

.image-placeholder-about p {
    color: var(--text-light);
    font-style: italic;
    font-size: 14px;
}

.about-stat-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 180px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.about-feature-item h4 {
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.about-feature-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
    position: relative;
}

.why-choose .container {
    position: relative;
}

/* Scroll indicator for mobile/tablet */
.why-choose::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--accent-color);
    opacity: 0;
    pointer-events: none;
    animation: scrollHint 2s ease-in-out infinite;
    display: none;
}

@keyframes scrollHint {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(10px);
    }
}

.why-grid {
    display: flex;
    gap: 0;
    position: relative;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0 40px;
    scroll-behavior: smooth;
}

.why-grid::-webkit-scrollbar {
    display: none;
}

/* Desktop: show all 4 cards in a row */
@media (min-width: 1280px) {
    .why-card {
        flex: 0 0 calc(25% - 15px);
    }
}

/* Laptop: show all 4 but slightly compressed */
@media (min-width: 1024px) and (max-width: 1279px) {
    .why-card {
        flex: 0 0 calc(25% - 15px);
        min-width: 260px;
    }
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: visible;
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    scroll-snap-align: start;
}

.why-card:not(:last-child) {
    margin-right: 20px;
}

/* Connector line between cards */
.why-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 20px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
    transform: translateY(-50%);
    z-index: 1;
}

/* Number badge for each card */
.why-card::before {
    content: counter(why-counter);
    counter-increment: why-counter;
    position: absolute;
    top: -15px;
    left: 30px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    font-family: var(--font-display);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.why-grid {
    counter-reset: why-counter;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    margin-bottom: 24px;
    margin-top: 12px;
}

.why-card h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    line-height: 1.3;
    min-height: 60px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

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

.card-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
    opacity: 0.08;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding) 0;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.process .section-header {
    position: relative;
    z-index: 2;
}

.process .section-header h2,
.process .section-header p {
    color: white;
}

.process .section-label {
    color: var(--accent-color);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--accent-color);
    line-height: 1;
}

.step-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-features span {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
}

.process-connector {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    margin: 0 auto;
    position: relative;
    left: 40px;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-cta p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 24px;
}

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

.process-cta .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: var(--primary-light);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: var(--section-padding) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    line-height: 1.7;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateX(5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    border-radius: 12px;
    overflow: visible;
}

.contact-method-icon svg {
    overflow: visible;
}

.contact-method-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-method-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.service-area-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    font-weight: 600;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    margin-bottom: 12px;
}

.contact-form > p {
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    text-align: center;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(315deg, #000000 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.footer-logo > div {
    display: none; /* Logo already includes text */
}

.footer-company-name {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-display);
    color: white;
}

.footer-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-certifications span {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    overflow: visible;
}

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

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

.btn-footer-docs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition-base);
}

.btn-footer-docs:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-footer-docs svg {
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    position: relative;
    z-index: 100;
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: underline !important;
    transition: var(--transition-base);
    cursor: pointer;
}

.footer-bottom p a:hover {
    color: var(--accent-color) !important;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

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

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .logo {
        max-width: 240px;
    }

    .logo img {
        max-width: 240px;
    }

    .header.scrolled .logo {
        max-width: 180px;
    }

    .header.scrolled .logo img {
        max-width: 180px;
    }

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

    .hero-with-image {
        min-height: 600px;
        padding: 120px 0 160px;
    }

    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-image-right {
        display: none;
    }

    .hero-overlay-split {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }

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

    .hero-image {
        order: -1;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-stat-card {
        position: static;
        margin-top: -60px;
        margin-left: auto;
        margin-right: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .process-step {
        grid-template-columns: 60px 1fr 60px;
        gap: 30px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon svg {
        width: 48px;
        height: 48px;
    }

    .process-connector {
        left: 30px;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .emergency-content {
        justify-content: center;
        text-align: center;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        max-width: 220px;
    }

    .logo img {
        max-width: 220px;
    }

    .header.scrolled .logo {
        max-width: 160px;
    }

    .header.scrolled .logo img {
        max-width: 160px;
    }

    .header.scrolled {
        height: 80px;
    }

    .header.scrolled .header-content {
        min-height: 80px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        padding: 80px 30px 30px;
        transition: left var(--transition-base);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
        position: relative;
        z-index: 1001;
    }

    /* Position close button when menu is open */
    .mobile-menu-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
    }

    .hero {
        padding: 80px 0 140px;
    }

    .hero-with-image {
        min-height: 550px;
        padding: 100px 0 140px;
    }

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

    .hero-content-centered .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-feature {
        font-size: 14px;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

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

    .why-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 260px;
    }

    .why-card h3 {
        font-size: 1.25rem;
        min-height: auto;
    }

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

    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .step-icon {
        display: none;
    }

    .process-connector {
        display: none;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-image-placeholder {
        padding: 40px 20px;
        min-height: 300px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-method-icon {
        width: 48px;
        height: 48px;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations when elements are visible */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .emergency-bar,
    .header,
    .hero-cta,
    .mobile-menu-toggle,
    .scroll-top,
    .contact-form-wrapper {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .hero {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ===================================
   About Page Styles
   =================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    color: white;
    margin-bottom: 24px;
}

.page-hero .large {
    color: rgba(255, 255, 255, 0.9);
}

/* About Introduction */
.about-intro {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text .large {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Our Story */
.our-story {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 20px;
}

.story-highlight {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--accent-color);
}

.story-highlight svg,
.story-highlight img {
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.story-highlight h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.story-highlight p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Mission and Values */
.mission-values {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    padding: 40px;
    background: var(--bg-gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    margin: 0 auto 24px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Leadership */
.leadership {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
}

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

.leader-card {
    background: white;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.leader-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    color: var(--primary-light);
    opacity: 0.3;
}

.leader-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.leader-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Expertise */
.expertise {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
    position: relative;
}

.expertise .container {
    position: relative;
}

/* Remove numbered badges from expertise section only */
.expertise .why-card::before {
    display: none;
}

.expertise .why-grid {
    counter-reset: none;
}

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

.expertise-card {
    background: var(--bg-gray-50);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.expertise-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-color);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.expertise-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* Certifications Page */
.certifications-page {
    padding: var(--section-padding) 0;
    background: var(--bg-gray-50);
}

.cert-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
}

.cert-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.cert-item.highlight {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(185, 28, 28, 0.08));
    border-color: var(--accent-color);
}

.cert-item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
}

.cert-item.highlight .cert-item-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.cert-item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.cert-item-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* FAQ Simple */
.faq-simple {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

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

.faq-simple-card {
    background: var(--bg-gray-50);
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-simple-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.faq-simple-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.faq-simple-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.cta-section .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Active nav link */
.nav-list a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-list a.active::after {
    width: 100%;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
    .about-intro-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-highlight {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .stat-box .stat-number {
        font-size: 2.5rem;
    }

    .values-grid,
    .leadership-grid,
    .expertise-grid,
    .faq-simple-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    .cert-item {
        flex-direction: column;
        text-align: center;
    }
}

