/* =====================================================
   RESET & BASE STYLES
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1e293b;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 27px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1.2;
}

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: #f59e0b;
}

.logo-small {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
    margin-top: 2px;
}


/* =====================================================
   MAIN MENU
===================================================== */

.main-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    list-style: none;
}

.main-menu li a {
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

.main-menu li a:hover {
    color: #2563eb;
}


/* =====================================================
   REGISTRATION BUTTON
===================================================== */

.main-menu .register-btn {
    display: inline-block;
    background: #FBBF24;
    color: #000000;
    padding: 10px 18px;
    border-radius: 50px;
    transition: 0.3s;
}

.main-menu .register-btn:hover {
    color: #000000;
    transform: translateY(-2px);
}


/* =====================================================
   LOGIN BUTTON
===================================================== */

.main-menu .login-btn {
    display: inline-block;
    background: #60A5FA;
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.main-menu .login-btn:hover {
    color: #000000;
    transform: translateY(-2px);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 30px;
    color: #111827;
    cursor: pointer;
    padding: 5px 8px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    background: linear-gradient(
        135deg,
        #eff6ff 0%,
        #ffffff 50%,
        #fff7ed 100%
    );
    padding: 100px 0;
}

.hero-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    max-width: 720px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
}

.hero-primary {
    background: #2563eb;
    color: #ffffff;
}

.hero-primary:hover {
    color: #ffffff;
}

.hero-secondary {
    background: #FBBF24;
    color: #000000;
}

.hero-secondary:hover {
    color: #000000;
}


/* =====================================================
   SECTIONS
===================================================== */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-title p {
    color: #64748b;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #f8fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.service-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-card h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

.service-card p {
    color: #64748b;
    font-size: 14px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: #ffffff;
}

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

.about h2 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 18px;
}

.about p {
    color: #64748b;
    margin-bottom: 15px;
}

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

.about-list li {
    margin-bottom: 12px;
    font-weight: 600;
}

.about-list li::before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 10px;
}

.about-box {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border-radius: 20px;
    padding: 45px;
}

.about-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-box p {
    color: #dbeafe;
}


/* =====================================================
   WHY US
===================================================== */

.why {
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.why-card h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748b;
    font-size: 14px;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.cta p {
    color: #cbd5e1;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background: #FBBF24;
    color: #000000;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contact-card h3 {
    color: #0f172a;
    margin-bottom: 22px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item strong {
    display: block;
    color: #0f172a;
}

.contact-item span {
    color: #64748b;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.submit-btn {
    border: none;
    background: #2563eb;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}


/* =====================================================
   POLICY PAGES
===================================================== */

.page-header {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 10px;
}

.page-header p {
    color: #64748b;
    font-size: 16px;
}

.policy-content {
    background: #ffffff;
    padding: 50px 0;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.policy-card h2 {
    font-size: 22px;
    color: #0f172a;
    margin-top: 25px;
    margin-bottom: 12px;
    border-bottom: 2px solid #eff6ff;
    padding-bottom: 8px;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.policy-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #475569;
}

.policy-card ul li {
    margin-bottom: 8px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #020617;
    color: #ffffff;
    padding: 45px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: #60A5FA;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 3px;
}

.footer-logo span {
    color: #FBBF24;
}

footer h4 {
    margin-bottom: 15px;
}

footer p,
footer li,
footer a {
    color: #94a3b8;
    font-size: 14px;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}


/* =====================================================
   MOBILE MEDIA QUERIES
===================================================== */

@media (max-width: 991px) {

    .navbar {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 15px;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu li a {
        display: block;
        width: 100%;
        padding: 13px 10px;
        border-bottom: 1px solid #f1f5f9;
    }

    .main-menu .register-btn {
        text-align: center;
        margin-top: 8px;
        border-bottom: none;
    }

    .main-menu .login-btn {
        text-align: center;
        margin-top: 8px;
        border-bottom: none;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .logo {
        font-size: 22px;
    }

    .logo-small {
        font-size: 9px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 65px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

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

    .about h2 {
        font-size: 30px;
    }

    .about-box {
        padding: 30px;
    }

    .cta h2 {
        font-size: 30px;
    }

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

    .policy-card {
        padding: 25px 20px;
    }
}
