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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAF8;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
#header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 2.5rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 500;
    color: #475569;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: #1E293B;
}

.btn-primary {
    background-color: #006BB6;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #005A9C;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #1A1A1A;
    transition: all 0.3s;
}

#header.scrolled .mobile-menu-btn span {
    background-color: #1A1A1A;
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

.mobile-menu .btn-primary {
    display: inline-block;
    margin: 1rem 1.5rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-white {
    background-color: white;
    color: #006BB6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: #F1F5F9;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background-color: #006BB6;
    color: white;
}

.btn-primary:hover {
    background-color: #005A9C;
}

.btn-white-large,
.btn-primary-large {
    padding: 1rem 2.5rem;
    height: 3.5rem;
    font-weight: 600;
}

.btn-white-large {
    background-color: white;
    color: #006BB6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-white-large:hover {
    background-color: #F1F5F9;
}

.btn-primary-large {
    background-color: #006BB6;
    color: white;
}

.btn-primary-large:hover {
    background-color: #005A9C;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #006BB6;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    top: -5rem;
    right: -5rem;
    width: 31.25rem;
    height: 25rem;
    border-radius: 100px 40px 80px 60px;
}

.shape-2 {
    top: 33%;
    right: -2.5rem;
    width: 18.75rem;
    height: 12.5rem;
    border-radius: 60px 100px 40px 80px;
    background: rgba(255, 255, 255, 0.03);
}

.shape-3 {
    bottom: -4rem;
    left: -4rem;
    width: 25rem;
    height: 15.625rem;
    border-radius: 80px 60px 100px 40px;
}

.shape-4 {
    top: 50%;
    left: 25%;
    width: 12.5rem;
    height: 5rem;
    border-radius: 40px 80px 60px 100px;
    background: rgba(255, 255, 255, 0.03);
}

.hero-container {
    position: relative;
    padding: 6rem 1.5rem 14rem;
}

.hero-content {
    max-width: 42rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #E2E8F0;
}

.footer-grid > div {
    padding: 1.25rem 1rem;
    text-align: center;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid #E2E8F0;
}

.footer-grid > div:last-child {
    border-bottom: none;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid > div {
        border-bottom: none;
        border-right: 1px solid #E2E8F0;
    }
    
    .footer-grid > div:last-child {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

/* Sections */
.section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.eyebrow-dark {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #006BB6;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748B;
}

.section-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* CMS Section */
.cms-section {
    padding: 4rem 0;
    background: rgba(245, 241, 232, 0.5);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.section-eyebrow {
    text-align: center;
    margin-bottom: 2rem;
}

.cms-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem 3rem;
}

.cms-item {
    color: #475569;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Services Preview */
.services-preview {
    background-color: #1A1A1A;
    padding: 6rem 0;
}

.services-preview .section-header {
    color: white;
}

.services-preview .section-header h2 {
    color: white;
}

.shape-bg-1 {
    top: -2.5rem;
    left: -2.5rem;
    width: 18.75rem;
    height: 12.5rem;
    background: rgba(0, 107, 182, 0.1);
    border-radius: 100px 60px 80px 40px;
}

.shape-bg-2 {
    bottom: -2.5rem;
    right: -2.5rem;
    width: 21.875rem;
    height: 11.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px 80px 60px 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: rgba(0, 107, 182, 0.5);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: #006BB6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #94A3B8;
}

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

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

/* Value Section */
.value-section {
    background-color: white;
    padding: 6rem 0;
}

.shape-bg-3 {
    top: -2.5rem;
    right: -2.5rem;
    width: 21.875rem;
    height: 12.5rem;
    background: rgba(0, 107, 182, 0.05);
    border-radius: 80px 40px 100px 60px;
}

.shape-bg-4 {
    bottom: -2.5rem;
    left: -2.5rem;
    width: 18.75rem;
    height: 11.25rem;
    background: #F5F1E8;
    border-radius: 60px 100px 40px 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: #006BB6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    color: white;
}

.value-card h3 {
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #64748B;
}

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

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

/* Testimonials */
.testimonials-section {
    background: rgba(245, 241, 232, 0.3);
    padding: 6rem 0;
}

.shape-bg-5 {
    top: -2rem;
    right: -2rem;
    width: 17.5rem;
    height: 10rem;
    background: rgba(0, 107, 182, 0.05);
    border-radius: 60px 100px 40px 80px;
}

.shape-bg-6 {
    bottom: -2rem;
    left: -2rem;
    width: 15.625rem;
    height: 8.75rem;
    background: rgba(0, 107, 182, 0.05);
    border-radius: 80px 40px 100px 60px;
}

.testimonials-section .container {
    max-width: 75rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    color: rgba(0, 107, 182, 0.2);
    margin-bottom: 1rem;
}

.quote {
    color: #475569;
    line-height: 1.75;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.author {
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.author strong {
    display: block;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.author span {
    display: block;
    font-size: 0.875rem;
    color: #64748B;
}

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

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-color: #006BB6;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape-cta-1 {
    top: -2.5rem;
    right: -2.5rem;
    width: 25rem;
    height: 15.625rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px 60px 80px 40px;
}

.shape-cta-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    width: 18.75rem;
    height: 11.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px 80px 60px 100px;
}

.shape-cta-3 {
    top: 50%;
    left: 33%;
    width: 11.25rem;
    height: 6.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 60px 40px 80px 100px;
}

.cta-section .container {
    position: relative;
    max-width: 48rem;
}

.cta-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-dark {
    background-color: #1A1A1A;
}

.cta-dark h2,
.cta-dark p {
    color: white;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background-color: #006BB6;
    overflow: hidden;
}

.page-hero-small {
    padding: 7rem 0 3rem;
}

.shape-page-1 {
    bottom: -2.5rem;
    right: -2.5rem;
    width: 21.875rem;
    height: 12.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 80px 40px 100px 60px;
}

.shape-page-2 {
    top: -2.5rem;
    left: -2.5rem;
    width: 17.5rem;
    height: 9.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 60px 100px 40px 80px;
}

.hero-content-page {
    position: relative;
    max-width: 42rem;
}

.hero-content-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content-page h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content-page h1 {
        font-size: 3.75rem;
    }
}

/* Services Detail */
.services-detail-section {
    background-color: white;
    padding: 6rem 0;
}

.shape-bg-7 {
    top: 25%;
    right: -2.5rem;
    width: 18.75rem;
    height: 11.25rem;
    background: #F5F1E8;
    border-radius: 100px 60px 80px 40px;
    opacity: 0.6;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-detail-card {
    background: rgba(245, 241, 232, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #E2E8F0;
}

.service-detail-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: #006BB6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon svg {
    color: white;
}

.service-detail-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.service-features svg {
    color: #006BB6;
    flex-shrink: 0;
}

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

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

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #1E293B;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006BB6;
}

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

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(0, 107, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    color: #006BB6;
}

.success-message h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.success-message p {
    color: #64748B;
    margin-bottom: 2rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #F5F1E8;
    border-radius: 1rem;
    padding: 2rem;
}

.contact-info-card h3 {
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item svg {
    color: #64748B;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-info-item a {
    color: #475569;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: #006BB6;
}

.availability-card {
    background-color: #006BB6;
    border-radius: 1rem;
    padding: 1.5rem;
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.availability-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #34D399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.availability-badge span {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.availability-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
    
    .contact-sidebar {
        position: sticky;
        top: 8rem;
        align-self: start;
    }
}

/* Legal Section */
.legal-section {
    background-color: white;
    padding: 4rem 0;
}

.legal-content {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #475569;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.legal-content a {
    color: #006BB6;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #005A9C;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    /*display: flex;*/
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    height: 2rem;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: none;
    gap: 1.5rem;
}

.footer-nav a {
    color: #94A3B8;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.footer-location {
    font-size: 0.875rem;
    color: #64748B;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    font-size: 0.75rem;
    color: #64748B;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: #64748B;
    transition: color 0.2s;
}

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

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .footer-brand {
        flex-direction: row;
        align-items: center;
    }
    
    .footer-nav {
        display: flex;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Utility */
.text-center {
    text-align: center;
}