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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #1a1f36;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-primary {
    color: #1d4ed8;
}

.logo-secondary {
    color: #1a1f36;
    margin-left: 4px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1f36;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1d4ed8;
}

.nav-link.active {
    color: #1d4ed8;
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #1a1f36;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1f36;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: #1d4ed8;
    color: white;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: #1d4ed8;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

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

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1519241047957-be31d7379a5d');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.9), rgba(29, 78, 216, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Simple Hero */
.hero-simple {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    text-align: center;
}

.hero-title-simple {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1f36;
    margin-bottom: 16px;
}

.hero-subtitle-simple {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-title-simple {
        font-size: 1.875rem;
    }
    .hero-subtitle-simple {
        font-size: 1rem;
    }
}

/* Sections */
.section {
    padding: 80px 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1f36;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.text-white {
    color: white !important;
}

.bg-light {
    background-color: #f9fafb;
}

.bg-primary {
    background-color: #1d4ed8;
}

/* Grids */
.grid {
    display: grid;
    gap: 32px;
}

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

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

/* Cards */
.value-card, .service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover, .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.competency-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(29, 78, 216, 0.1);
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 16px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 12px;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Approach Cards */
.approach-cards {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Expertise Cards */
.expertise-card {
    background: #f3f4f6;
    padding: 32px;
    border-radius: 16px;
}

/* Story Section */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-content p {
    color: #6b7280;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-text {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 64px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cta-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-intro {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: rgba(29, 78, 216, 0.1);
    color: #1d4ed8;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 4px;
}

.contact-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.contact-link {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

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

.contact-address {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-container {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1f36;
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1f36;
}

.form-input, .form-textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #1d4ed8;
}

.form-textarea {
    resize: vertical;
}

.error-message {
    font-size: 0.875rem;
    color: #dc2626;
    display: none;
}

.error-message.show {
    display: block;
}

.form-input.error, .form-textarea.error {
    border-color: #dc2626;
}

/* Success Message */
.success-message {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.success-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 8px;
}

.success-text {
    color: #059669;
    margin-bottom: 24px;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    padding: 48px 20px;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-description {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 320px;
    margin-top: 16px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1d4ed8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
}

.social-links a:hover {
    background: #1d4ed8;
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.footer-bottom-links a {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #1d4ed8;
}
