:root {
    --primary: #05275b;
    --primary-dark: #05275b;
    --secondary: #fd051e;
    --secondary-dark: #fc0418;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --danger: #ef4444;
    --shadow: 0 10px 15px -3px #0000001a;
    --shadow-lg: 0 20px 25px -5px #0000001a;
    --radius: 12px;
    --transition: all .3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',system-ui,sans-serif
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.logo-img {
    height: 50px
}

header {
    background: #fffffff2;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px #0000001a
}

.header.scrolled {
    background: #fff;
    box-shadow: var(--shadow)
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.nav-links {
    display: flex;
    gap: 30px
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fbc105;
    border-radius: 3px;
    transition: var(--transition);
    transform: translateX(-50%)
}

.nav-links a:hover::after,.nav-links a.active::after {
    width: 80%
}

.nav-links a:hover {
    color: #05275b
}

.nav-links a.active {
    color: #fbc002
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center
}

.btn {
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,#fff3,transparent);
    transition: .5s
}

.btn:hover::before {
    left: 100%
}

.btn-primary {
    background: linear-gradient(135deg,#113796,#0d3d88);
    color: #fff;
    box-shadow: 0 4px 15px #2563eb4d
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #2563eb66
}

.btn-secondary {
    background: #fff;
    color: var(--dark);
    border: 2px solid var(--gray-light)
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px)
}

.btn-warning {
    background: linear-gradient(135deg,var(--secondary),var(--secondary-dark));
    color: #fff;
    box-shadow: 0 4px 15px #f59e0b4d
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #f59e0b66
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001
}

footer {
    background: #102d4f;
    color: #fff;
    padding-top: 25px;
    position: relative;
    border-top: 1px solid #ffffff1a;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg\Axmlns='http://www.w3.org/2000/svg'\AviewBox='0 0 1440 320'%3E%3Cpath\Afill='%231e293b' fill-opacity='1'\Ad='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center
}

.footer-content {
    position: relative;
    z-index: 1
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 50px;
    margin-bottom: 0px;
}

.footer-column h3 {
    font-size: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 9px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none
}

.footer-links li {
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px)
}

.footer-links a i {
    color: var(--secondary);
    width: 20px
}

.footer-about p {
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.8
}

.social-links {
    display: flex;
    gap: 15px
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #ffffff1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px)
}

.footer-contact li {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.footer-contact i {
    color: #fff;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    background: #ffffff1a;
    color: #fff
}

.newsletter-form input::placeholder {
    color: #94a3b8
}

.newsletter-form button {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition)
}

.newsletter-form button:hover {
    background: var(--secondary-dark)
}

.copyright {
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid #ffffff1a;
    color: #94a3b8;
    font-size: .9rem
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.fade-in {
    animation: fadeInUp .8s ease-out
}

.pulse {
    animation: pulse 2s infinite
}

@media only screen and (max-width: 680px) {
    .nav-buttons {
        display:none
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display:block
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg)
    }

    .nav-links.active {
        right: 0
    }

    .nav-links a {
        padding: 15px;
        border-radius: 8px
    }

    .nav-links a:hover {
        background: var(--gray-light)
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-content p {
        font-size: 1.1rem
    }

    .btn {
        width: 100%;
        justify-content: center
    }
}
