/* Brand Colors */
:root {
    --yellow: #F0C227;
    --blue: #1A2658;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #666;
    --dark: #333;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--blue) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    background: var(--white);
    color: var(--blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--yellow);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
}

.login-btn {
    background: var(--white);
    color: var(--blue);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Section 1: Core Services */
.core-services {
    padding: 100px 0;
    background: var(--white);
}

.section-title-center {
    font-size: 48px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle-center {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--yellow);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(240, 194, 39, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--yellow);
    font-size: 16px;
}

.service-btn {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.service-btn:hover {
    background: var(--yellow);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(240, 194, 39, 0.3);
}

/* Section 2: How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--light-gray);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--yellow), var(--blue));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(240, 194, 39, 0.3);
    z-index: 2;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.step-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-title {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Section 3: Service Benefits */
.service-benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: var(--white);
    border-color: var(--yellow);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(240, 194, 39, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-title {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    background: var(--white);
    color: var(--blue);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--yellow);
}

.footer-description {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--blue);
        padding: 20px;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .process-timeline::before {
        left: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title-center {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-section {
        padding: 40px 30px;
    }
}