/* Header Styles */
.header-top {
    background: var(--bg-dark);
    padding: 12px 0;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.header-top-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
    gap: 30px;
}

.contact-info {
    display: flex;
    gap: 20px;
    opacity: 0.9;
}

.emergency-call {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header-main {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
}

.logo {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo .logo-main {
    display: block;
    font-size: 32px;
    color: var(--text-color);
    line-height: 1.2;
}

.logo .logo-sub {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    margin-top: 5px;
    letter-spacing: -0.2px;
}

.logo .logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 50px;
}

/* Navigation Item */
.nav-item {
    position: relative;
}

.nav-item > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
    letter-spacing: -0.3px;
    display: block;
    padding: 10px 0;
}

.nav-item > a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu (2 Depth) */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-inner {
    display: flex;
    flex-direction: column;
}

.nav-dropdown a {
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.nav-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

.nav-dropdown a:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown a:last-child {
    border-radius: 0 0 8px 8px;
}

/* Footer Styles */
.footer {
    background: var(--bg-dark);
    color: var(--text-lighter);
    padding: 70px 40px 40px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.footer-logo {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
}
