/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #EDEDED;
}

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

/* Header Section */
.header {
    background: linear-gradient(135deg, #162F72 0%, #1a3a8a 100%);
    color: white;
    padding: 60px 0;
    min-height: 600px;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.logo h1 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 14px;
    color: #F13F51;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-text {
    margin-top: 30px;
}

.header-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
}

.services-list {
    list-style: none;
    margin-top: 20px;
}

.services-list li {
    font-size: 16px;
    padding: 8px 0;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-form h3 {
    color: #162F72;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #162F72;
    box-shadow: 0 0 0 3px rgba(22, 47, 114, 0.1);
}

.form-group select {
    cursor: pointer;
    background-color: white;
}

.error-message {
    color: #F13F51;
    font-size: 13px;
    display: none;
    margin-top: 5px;
}

.form-group.error input,
.form-group.error select {
    border-color: #F13F51;
}

.form-group.error .error-message {
    display: block;
}

.btn-submit {
    width: 100%;
    background: #162F72;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #1a3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(22, 47, 114, 0.3);
}

.success-message {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #162F72;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #F13F51;
    margin: 20px auto 0;
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #162F72;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #162F72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    color: #162F72;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: #EDEDED;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expertise-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #F13F51;
}

.expertise-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    color: #162F72;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.expertise-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #162F72 0%, #1a3a8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: #F13F51;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: #d32f41;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 63, 81, 0.4);
}

/* Footer */
.footer {
    background: #0f1f4a;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-logo h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-description {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F13F51;
}

.footer-contact p {
    color: #d0d0d0;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0b0b0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .logo h1 {
        font-size: 36px;
    }

    .header-text h2 {
        font-size: 26px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 40px 0;
    }

    .logo h1 {
        font-size: 28px;
    }

    .header-text h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .process-step,
    .expertise-card {
        padding: 25px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }
}