/* ========================================= */
/*              Global Styles                */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
    padding-top: 70px;
    /* Space for fixed navbar */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ========================================= */
/*              Navbar Styles                */
/* ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    height: 70px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 100%;
}

.navbar-logo {
    font-size: 20px;
    font-weight: bold;
    color: #117d7e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo img {
    height: 47px;
    width: auto;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    gap: 5px;
}

.navbar-menu a {
    display: block;
    padding: 25px 12px;
    color: #333;
    font-size: 15px;
    position: relative;
    line-height: 20px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #1D9A91;
    background: #f5f7fa;
    font-weight: bold;
}

.navbar-menu a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: #1D9A91;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s;
    font-weight: bold;
    transform: rotate(90deg);
    margin-left: 4px;
    font-size: 14px;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(270deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    padding: 12px 20px !important;
    font-size: 14px;
    color: #333 !important;
}

.dropdown-link:hover {
    background: #f5f7fa;
    color: #1D9A91 !important;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #0D4A6B;
    cursor: pointer;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* ========================================= */
/*              Global Components            */
/* ========================================= */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    color: #1D9A91;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #E85D3B;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

.cta-button {
    display: inline-block;
    background: #E85D3B;
    color: #fff !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(232, 93, 59, 0.3);
}

.cta-button:hover {
    background: #d54d2b;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(232, 93, 59, 0.4);
}

/* ========================================= */
/*              Footer Styles                */
/* ========================================= */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 3px solid #1D9A91;
    color: #fff;
    padding: 60px 20px 40px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1D9A91, transparent);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1D9A91;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================= */
/*              Responsive                   */
/* ========================================= */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 20px 0;
        overflow-y: auto;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu a {
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-menu a.active::after {
        display: none;
    }
}