/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 75px;
    width: auto;
    cursor: pointer;
}

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

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

.nav-link {
    background: none;
    border: none;
    color: #000000;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: hsl(211, 100%, 34%);
}

.nav-button {
    background-color: hsl(211, 100%, 34%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: hsl(211, 100%, 30%);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: hsl(211, 100%, 34%);
    color: white;
    padding: 128px 1rem 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-text-large {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-text-large {
        font-size: 1.5rem;
    }
}

.hero-text {
    font-size: 1.125rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
}

.badge-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.badge-text {
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 1rem;
    background-color: rgba(207, 224, 237, 0.3);
}

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

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

.card {
    background: white;
    border: 2px solid rgba(0, 109, 193, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-large {
    width: 40px;
    height: 40px;
    color: hsl(211, 100%, 34%);
    margin-right: 0.75rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #000000;
}

.card-text {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 4rem 1rem;
}

.services-alt {
    background-color: rgba(207, 224, 237, 0.3);
}

.section-header {
    background-color: hsl(211, 100%, 34%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-main {
    font-size: 2.25rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

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

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

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

.service-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #000000;
}

.service-text {
    color: #6b7280;
}

.service-list {
    color: #6b7280;
    font-size: 0.875rem;
    list-style: none;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 0.25rem;
}

/* About Section */
.about {
    position: relative;
    padding: 5rem 1rem;
    background-color: hsl(211, 100%, 34%);
    color: white;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.about-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        hsla(211, 100%, 34%, 0.8), 
        hsla(211, 100%, 34%, 0.7), 
        hsla(211, 100%, 34%, 0.8)
    );
}

.about-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    text-align: center;
}

.about-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-text-large {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-text-large {
        font-size: 1.5rem;
    }
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 1.25rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background-color: rgba(207, 224, 237, 0.3);
}

.contact-container {
    max-width: 56rem;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-box > div {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-logo {
    height: 96px;
    width: auto;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.form-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000000;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(207, 30%, 82%);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(211, 100%, 34%);
    box-shadow: 0 0 0 3px hsla(211, 100%, 34%, 0.1);
}

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

.form-textarea {
    resize: vertical;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.25rem;
}

.submit-button {
    background-color: hsl(211, 100%, 34%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: hsl(211, 100%, 30%);
}

/* Footer */
.footer {
    background-color: hsl(211, 100%, 34%);
    color: white;
    padding: 2rem 1rem;
}

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

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

@media (min-width: 768px) {
    .footer-contact {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}


/* Contact Info Section */
.contact-info {
    padding: 4rem 1rem;
    background-color: hsl(211, 100%, 34%);
    color: white;
}

.contact-info .section-title {
    color: white;
    text-align: center;
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0rem;
}

.info-item .mb-4 {
    margin-bottom: 1rem;
}

.small-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.link {
    color: white;
    text-decoration: underline;
    font-size: 0.875rem;
    transition: color 0.15s ease-in-out;
}

.link:hover {
    color: #e5e5e5;
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    background-color: #222222;
    color: white;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}