
/* ==============================
////////// Base Styles ////////// 
=================================*/

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


body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img{
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
p{
    margin: 0;
}

/* Main content area */
.main-content{
    flex: 1;
}


/*===================================
                Navbar 
=====================================*/

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid gray;
    /*background: linear-gradient(135deg, transparent 0%, #333 50%, transparent 100%);*/
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/*===================================
            Navbar-Logo
=====================================*/

.nav-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;

    border-left: 3px solid #3498db;
    padding-left: 10px;
}

.nav-logo a:hover {
    transform: translateY(-1px);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50; /* Professional dark blue-gray */
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}

.logo-subtext {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3498db; /* Professional blue accent */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    margin-top: 2px;
}

/*====================*/



.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: #4bcffa;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4bcffa;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/*================================
        Drop Down Styles
==================================*/

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 2px solid gray;
    border-radius: 4px;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 
                0 2px 10px rgba(0, 0, 0, 0.06);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: #4bcffa;
    color: #000;
}

/*==============================
//////////// Footer ////////////
================================*/
.footer {
    background-color: #0c161b;
    color: #fff;
    margin-top: auto;
    border-top: 1px solid gray;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h2.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h2.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #fff;
}

.footer-text {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
}


/* ===== Contact Info Styles ===== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 70px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: dodgerblue;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: #4bcffa;
    text-decoration: underline;
}

.contact-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Business Hours */
.business-hours .footer-text {
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: #4bcffa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4bcffa;
    transform: translateY(-2px);
}

/* Icon styles using pseudo-elements */
.icon-facebook::before {
    content: "f";
    font-family: sans-serif;
    font-weight: bold;
}

.icon-twitter::before {
    content: "t";
    font-family: sans-serif;
    font-weight: bold;
}

.icon-instagram::before {
    content: "ig";
    font-family: sans-serif;
    font-weight: bold;
}


/* ==============================
        Responsive Styles 
=================================*/

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        width: 100%;
        overflow: hidden;
    }
    .navbar{
        position: sticky;
        width: 100%;
        overflow: hidden;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: block;
    }
    
    .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        width: 100%;
        height: auto;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: whitesmoke;
        border: none;
        display: none;
        text-align: center;
        padding-left: 0;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        color: #000;
    }
    
    .dropdown-link:hover {
        background-color: #4bcffa;
        color: #000;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 20px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .nav-logo a {
        font-size: 1.5rem;
    }
    
    .footer-container {
        padding: 30px 15px 15px;
    }
}