@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0F2C59;
    --primary-light: #1D4ED8;
    --primary-dark: #0A1B3A;
    --accent: #E89C31;
    --accent-hover: #D97D24;
    --accent-light: #FDF6EC;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;

    /* Fonts */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(15, 44, 89, 0.05), 0 1px 2px rgba(15, 44, 89, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(15, 44, 89, 0.08), 0 2px 4px -1px rgba(15, 44, 89, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 44, 89, 0.1), 0 4px 6px -2px rgba(15, 44, 89, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 44, 89, 0.12), 0 10px 10px -5px rgba(15, 44, 89, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 3px;
}

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

.nav-item {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary);
}

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

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

.nav-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Prevent nav-btn from inheriting nav-item active/hover styles */
.nav-item.nav-btn.active,
.nav-item.nav-btn:hover {
    color: var(--white);
}

.nav-item.nav-btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Sections General */
section {
    padding: 90px 24px;
    max-width: 100%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
}

/* Buttons Utility */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 44, 89, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 156, 49, 0.3);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(232, 156, 49, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(15, 44, 89, 0.05) 0%, transparent 50%),
                var(--bg-alt);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    background-color: var(--accent-light);
    color: var(--accent-hover);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 44, 89, 0.1) 0%, rgba(232, 156, 49, 0.1) 100%);
    filter: blur(40px);
    z-index: 1;
}

.hero-img-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    max-width: 440px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-logo-large {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(15, 44, 89, 0.1));
}

.hero-stat-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 8px;
}

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

.stat-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Us Section */
.about {
    background-color: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary);
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.about-statement {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-style: italic;
    font-size: 17px;
    color: var(--primary-dark);
    margin: 24px 0;
    font-weight: 500;
}

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

.vmg-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: var(--transition);
}

.vmg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 156, 49, 0.3);
}

.vmg-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
}

.vmg-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.vmg-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Core Values Sub-section */
.values-container {
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.values-title-center {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

.value-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: rgba(15, 44, 89, 0.2);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.value-card-content h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Services Section */
.services {
    background-color: var(--bg-alt);
}

.services-explorer {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.services-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.tab-btn .tab-arrow {
    font-size: 14px;
    opacity: 0.5;
    transition: var(--transition);
}

.tab-btn.active .tab-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.services-content-panel {
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-color);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-header {
    margin-bottom: 24px;
}

.panel-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

.panel-title {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.panel-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.panel-list-header {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
    margin-top: 8px;
}

.panel-footer-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 24px;
}

.panel-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.panel-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.panel-list-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Why Choose Us & Who We Serve */
.features-serve {
    background-color: var(--bg-main);
}

.features-serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.features-box h3, .serve-box h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

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

.feature-item {
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-item-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.feature-item-desc {
    font-size: 13px;
    color: var(--text-muted);
}

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

.serve-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    background-color: var(--bg-alt);
    transition: var(--transition);
}

.serve-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 156, 49, 0.2);
    transform: translateY(-3px);
}

.serve-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
}

.serve-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

/* Our Approach */
.approach {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 100%);
}

.approach-timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 20px 0;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--accent);
    z-index: 5;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 44, 89, 0.2);
    transform: translateY(-2px);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--accent);
}

.timeline-step {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 24px;
}

.contact .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    max-width: 440px;
}

.contact-info-title {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--white);
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 15px;
}

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

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

/* Form Styles */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(232, 156, 49, 0.25);
}

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

.form-status {
    font-size: 13px;
    margin-top: 12px;
    display: none;
    font-weight: 500;
}

.form-status.success {
    color: #10B981;
    display: block;
}

.form-status.error {
    color: #EF4444;
    display: block;
}

/* Footer */
.footer {
    background-color: #071526;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 24px 30px 24px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-logo-img {
    height: 40px;
    object-fit: contain;
}

.footer-logo-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-subtitle {
    font-family: var(--font-head);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.6;
}

.footer-links-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.footer-link-item:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

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

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

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .features-serve-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .contact-info {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-top: 1px solid var(--border-color);
        align-items: stretch;
        text-align: center;
    }

    .nav-links.mobile-active {
        left: 0;
    }
    
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 38px;
    }

    .approach-timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
