/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    padding: 5px 20px;
}

.top-bar-content {
    width: 100%;
    max-width: 1268px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-number {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.payment-btn {
    background-color: #c42029;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
}

.payment-btn:hover {
    background-color: #a91b23;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 20px;
}

.header-content {
    max-width: 1268px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-item {
    padding: 30px 13px;
    font-size: 14px;
    font-weight: 600;
    color: #0a3052;
    cursor: pointer;
    display: block;
}

.nav-item:hover {
    color: #c42029;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #0a3052;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.45)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1268px;
    margin: 0 auto;
}

.hero h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

/* Login Section */
.login-section {
    background-color: #f9fafb;
    padding: 50px 20px;
}

.login-container {
    max-width: 1268px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
       align-items: center;
}

.login-header h2 {
    color: #0a3052;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.login-header p {
    color: #666;
    font-size: 20px;
    font-weight: 400;
}

/* Form Styles */
.login-form {
    width: 400px; margin: 0 auto;
  
   
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    gap: 5px;
    font-size: 13.7px;
    color: #666;
    margin-bottom: 10px;
}

.form-label .required {
    color: #c42029;
}

.form-input {
    width: 100%;
    height: 42px;
    padding: 11px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13.7px;
    color: #000;
    background-color: #fff;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #0a3052;
}

/* Error State Styles */
.form-input.error {
    border-color: #c42029;
}

.error-message {
    color: #e7000b;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13.7px;
    margin-top: 7px;
}

/* Button Styles */
.login-btn {
    width: 283px;
    padding: 20px 34px;
    background-color: #c42029;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #a91b23;
}

.forgot-link {
    font-size: 13.7px;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.forgot-link:hover {
    color: #c42029;
}

/* Support Section */
.support-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-icon {
    width: 25px;
    height: 25px;
}

.support-link {
    font-size: 13.7px;
    color: #666;
    text-decoration: underline;
}

.support-link:hover {
    color: #0a3052;
}

.support-text {
    font-size: 13.7px;
    color: #666;
}

.contact-btn {
    width: 283px;
    padding: 20px 34px;
    background-color: #919191;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #7a7a7a;
}

/* Footer */
.footer {
    background-color: #093452;
    padding: 16px 20px;
}

.footer-content {
    max-width: 1268px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 30px 0;
}

.footer-section {
    color: #fff;
}

.footer-logo {
    height: 56px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-address {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-email {
    font-size: 13px;
    color: #fff;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 14.3px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-hours {
    font-size: 13px;
    line-height: 1.65;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 11.5px;
}

.footer-links a {
    font-size: 13px;
    color: #fff;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1268px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.6);
    padding: 19px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 11px;
    color: #eee;
}

.footer-copyright a {
    color: #fff;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 15px 20px;
        border-bottom: 1px solid #e6e6e6;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .header-content {
        position: relative;
    }

    .logo {
        height: 50px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .login-form {
        width: 100%;
        max-width: 358px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
