body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f4f8fb;
    color: #222;
}

header {
    background: #1e293b;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #38bdf8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* HERO SECTION */
.hero {
    background: #1e293b;
    color: #fff;
    padding: 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 3rem 2rem;
    gap: 2rem;
}
.hero-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}
.hero-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(30,41,59,0.10);
}
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #38bdf8;
}
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.2rem 0;
    color: #0ea5e9;
    font-size: 1.08rem;
    font-weight: 500;
}
.hero-benefits li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-testimonial {
    background: #e0f2fe;
    color: #1e293b;
    border-left: 4px solid #38bdf8;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}
.hero-testimonial span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.98rem;
    color: #0ea5e9;
    font-style: normal;
}

/* SERVICES SECTION */
.services {
    padding: 4rem 2rem 2rem 2rem;
    background: #fff;
    text-align: center;
}
.services h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
.service-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.card {
    background: #f4f8fb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30,41,59,0.08);
    padding: 2rem 1.5rem;
    max-width: 320px;
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 20px rgba(30,41,59,0.15);
}
.card img {
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.card h3 {
    margin: 0.5rem 0 1rem 0;
    font-size: 1.3rem;
}

/* ABOUT SECTION */
.about {
    padding: 4rem 2rem;
    background: #e0e7ef;
    text-align: center;
}
.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.about-text {
    flex: 1 1 60%;
    text-align: left;
}
.about-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(30,41,59,0.10);
}
.about-values {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    color: #0ea5e9;
    font-size: 1.08rem;
    font-weight: 500;
}
.about-values li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.about-team {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30,41,59,0.07);
    padding: 1.2rem 1rem;
    margin-top: 1.2rem;
    color: #1e293b;
}

/* CONTACT SECTION REDESIGN */
.contact {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #f4f8fb 100%);
    text-align: center;
    position: relative;
}
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.contact-header h2 {
    font-size: 2.2rem;
    margin: 0;
    font-weight: 700;
    color: #1e293b;
}
.contact-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8 0%, #0ea5e9 100%);
    border-radius: 2px;
    margin: 1rem 0 0 0;
}
.contact-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 420px;
    box-sizing: border-box;
}
.contact-form, .contact-info {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.contact-form {
    flex: 1 1 50%;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 4px 24px rgba(30,41,59,0.10);
    text-align: left;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.contact-form form {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}
.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
    width: 100%;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
input, textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    resize: none;
    box-sizing: border-box;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #38bdf8;
}
.cta-btn {
    width: 100%;
    margin-top: 0.5rem;
    align-self: center;
}
#formMessage {
    margin-top: 1rem;
    font-size: 1rem;
    color: #16a34a;
    text-align: center;
}
.contact-info {
    flex: 1 1 50%;
    background: #f4f8fb;
    border-radius: 0 18px 18px 0;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(30,41,59,0.10);
    font-size: 1.1rem;
    text-align: left;
    margin-top: 0 !important;
    align-items: flex-start;
    justify-content: center;
    min-width: 220px;
    min-height: 420px;
}
.contact-details p {
    margin: 0.5rem 0;
    color: #222;
}
.contact-social {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}
.contact-social a {
    color: #0ea5e9;
    text-decoration: none;
    margin: 0 0.3rem;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-social a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

/* CTA BUTTON DESIGN */
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #38bdf8 0%, #0ea5e9 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(14,165,233,0.15);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.cta-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}
.cta-btn:hover::after {
    width: 200%;
    height: 500%;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(14,165,233,0.18);
}
.cta-btn:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-content,
    .about-content,
    .contact-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .hero-text,
    .about-text,
    .contact-form,
    .contact-info {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .about-image img,
    .hero-image img {
        max-width: 90vw;
    }
    .contact-info {
        margin-top: 1rem !important;
    }
    .contact-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        min-height: unset;
    }
    .contact-form, .contact-info {
        border-radius: 18px;
        align-items: center;
        text-align: center;
        width: 100%;
        min-width: unset;
        min-height: unset;
        height: unset;
    }
    .contact-content::before {
        display: none;
    }
    .contact-info {
        margin-top: 1rem !important;
    }
}
@media (max-width: 500px) {
    .hero h1 {
        font-size: 2rem;
    }
    .services h2, .about h2, .contact h2 {
        font-size: 1.3rem;
    }
    .card {
        padding: 1rem;
    }
    form {
        padding: 1rem;
    }
} 