/* Modern CSS Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2563eb;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1e40af;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e40af;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1e40af;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.logo {
    height: 135px;
        min-width: 180;
        max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #4a5568;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Main Content */
main {
    padding-top: 70px;
}

/* Active Navigation State */
.nav-menu a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Company Tagline */
.company-tagline {
    margin: 16px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    border-left: 4px solid #1d4ed8;
}

.tagline-text {
    color: white !important;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header-content .lead {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Preview on Home */
.services-preview {
    background: white;
    padding: 80px 0;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: #718096;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
}

.contact-form-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card p {
    color: #718096;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #2d3748;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
}

/* Services Section */
.services,
.services-detailed {
    background: white;
    padding: 80px 0;
}

/* Service Card Detailed */
.service-card-detailed {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 40px;
}

.service-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-detailed .service-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-card-detailed .service-content h4 {
    color: #667eea;
    font-size: 1rem;
    margin: 20px 0 8px 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    background: #f8fafc;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

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

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #667eea;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
}

.cta-section .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: #667eea;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 24px;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon i {
    width: 24px;
    height: 24px;
    color: #667eea;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: #718096;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 16px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.service-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* About Section */
.about,
.about-section {
    background: #f8fafc;
}

/* What We Do Section */
.what-we-do {
    background: white;
    padding: 80px 0;
}

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

.expertise-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.expertise-icon i {
    width: 28px;
    height: 28px;
    color: #667eea;
}

.expertise-card h3 {
    margin-bottom: 12px;
}

.expertise-card ul {
    list-style: none;
    margin-top: 16px;
}

.expertise-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.expertise-card ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8fafc;
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.about-features {
    margin-top: 32px;
}

.feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    width: 24px;
    height: 24px;
    color: #667eea;
}

.feature-content h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 0.9rem;
    color: #718096;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

/* Case Studies Section */
.case-studies,
.case-studies-section {
    background: white;
    padding: 80px 0;
}

/* Case Card Detailed */
.case-card-detailed {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.case-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.case-year {
    background: #f8fafc;
    color: #718096;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-content > div {
    margin-bottom: 24px;
}

.case-content h3 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.case-overview p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.case-challenge ul,
.case-solution ul {
    list-style: none;
    margin-top: 12px;
}

.case-challenge ul li,
.case-solution ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.case-challenge ul li::before,
.case-solution ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.result-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.result-item .result-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
    display: block;
}

.result-item .result-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 4px;
}

.result-item .result-detail {
    font-size: 0.8rem;
    color: #a0aec0;
}

.case-technologies {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

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

.case-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
    margin-bottom: 20px;
}

.case-header h3 {
    margin-bottom: 12px;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.result {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.result-label {
    font-size: 0.8rem;
    color: #718096;
}

/* Careers Section */
.careers,
.careers-section {
    background: #f8fafc;
    padding: 80px 0;
}

/* Role Detailed */
.role-detailed {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.role-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.role-header {
    margin-bottom: 20px;
}

.role-meta {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.role-type,
.role-location,
.role-experience {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.role-content h4 {
    color: #667eea;
    font-size: 1rem;
    margin: 16px 0 8px 0;
}

.role-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.role-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.role-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.role-content .btn {
    margin-top: 16px;
}

/* Career Benefits */
.career-benefits .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card .benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-card .benefit-icon i {
    width: 24px;
    height: 24px;
    color: #667eea;
}

/* Application Process */
.application-process {
    background: white;
    padding: 80px 0;
}

/* Careers Contact */
.careers-contact {
    background: #f8fafc;
    padding: 80px 0;
}

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

.contact-details {
    margin-top: 24px;
}

.application-tips {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tip i {
    width: 24px;
    height: 24px;
    color: #667eea;
    margin-top: 4px;
    flex-shrink: 0;
}

.tip h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.tip p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.careers-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.open-roles h3,
.career-benefits h3 {
    margin-bottom: 24px;
    color: #1a1a1a;
}

.roles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.role {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.role:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.role-info h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.role-info p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit i {
    width: 24px;
    height: 24px;
    color: #667eea;
    margin-top: 4px;
}

.benefit h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.benefit p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Contact Section */
.contact,
.contact-section {
    background: white;
    padding: 80px 0;
}

/* Contact Methods */
.contact-methods {
    margin: 32px 0;
}

.contact-specialties {
    margin-top: 40px;
}

.specialties-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.specialty {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.specialty i {
    width: 20px;
    height: 20px;
    color: #667eea;
}

/* Contact Form Labels */
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

/* Why Choose Contact */
.why-choose-contact {
    background: #f8fafc;
    padding: 80px 0;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon i {
    width: 28px;
    height: 28px;
    color: #667eea;
}

.benefit-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

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

.faq-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 24px;
    height: 24px;
    color: #667eea;
}

.contact-details h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.contact-details a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #764ba2;
}

.contact-details p {
    color: #718096;
    margin: 0;
}

.contact-form-section .contact-form {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.footer-brand .logo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #667eea;
    color: white;
}

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

.footer-contact a,
.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-contact i {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .careers-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e2e8f0;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .specialties-list {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .role-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .btn-large {
        padding: 14px 24px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

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

.service-card,
.case-card,
.role,
.stat {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading State for Images */
.service-image img {
    transition: opacity 0.3s ease;
}

.service-image img[loading="lazy"] {
    opacity: 0;
}

.service-image img[loading="lazy"].loaded {
    opacity: 1;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-menu a:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-actions,
    .contact-form-card {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}