/* General Body Styles */
:root {
    --accent-blue-color: #007bff;
    --accent-red-color: #d91616;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f5f7;
}

/* Hero Container */
.hero-container {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/logophoto.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Navigation Bar Styles */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    height: 80px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 100;
}

nav:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav:hover .nav-left a,
nav:hover .nav-center a,
nav:hover .nav-location {
    color: #333;
}

nav:hover .nav-right a {
    color: var(--accent-blue-color);
    border-color: var(--accent-blue-color);
}

nav:hover .nav-right a:hover {
    color: #ffffff;
    background-color: var(--accent-blue-color);
}

/* Navigation Sections */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px; /* Added gap between logo and location */
}

.navlogo img {
    height: 70px;
    display: block;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-location i {
    color: var(--accent-red-color);
    font-size: 18px;
}

.nav-center {
    flex-grow: 0; 
    display: flex;
    justify-content: center;
}

.nav-center ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-center a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red-color);
    transition: width 0.3s ease;
}

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

.nav-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-right a:hover {
    background-color: var(--accent-blue-color);
    border-color: var(--accent-blue-color);
    color: #ffffff;
}

/* --- Responsive Styles --- */

/* Tablet and smaller desktops */
@media (max-width: 1024px) {
    nav {
        padding: 10px 30px;
    }
    .nav-center, .nav-location {
        display: none; /* Hide links and location */
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hero-container {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    nav {
        padding: 10px 20px;
        height: auto;
        background-color: #ffffff; /* White background on mobile */
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        justify-content: space-between; /* Logo left, burger right */
        align-items: center;
    }
    
    /* Remove hover effect on mobile */
    nav:hover {
        background-color: #ffffff;
    }
    
    .nav-left, .nav-right {
        flex-basis: auto; /* Reset basis */
        justify-content: flex-start;
        text-align: left;
    }

    .nav-right {
        margin-top: 0; /* Reset margin */
    }

    /* Hide elements not needed on mobile nav bar */
    .nav-center, .nav-location, .nav-right a {
        display: none;
    }

    /* Make burger button visible */
    .burger-menu-button {
        display: block;
    }
}

/* Bonus Program Section (and others) - Add padding top to account for fixed nav */
.bonus-program {
    padding: 60px 80px;
    background-color: #ffffff;
}

/* ... (rest of the styles remain the same) ... */

.bonus-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
}

.bonus-left {
    flex-basis: 30%;
    transform: translateX(40px);
}

.bonus-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.bonus-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bonus-left ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.bonus-left li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.bonus-left li i {
    background-color: var(--accent-blue-color);
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-right: 15px;
    font-size: 12px;
}

.bonus-details-button {
    display: inline-block;
    background-color: var(--accent-red-color);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.bonus-details-button:hover {
    background-color: #b81010;
}

.bonus-right {
    flex-basis: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* What We Do Section */
.what-we-do {
    padding: 60px 80px;
    background-color: #f4f5f7;
}

.what-we-do .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.what-we-do h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.what-we-do .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.service-item {
    text-align: center;
    max-width: 250px;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
    background-color: var(--accent-blue-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.service-item:hover .service-icon i {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
}

.service-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px 80px;
    border-top: 1px solid #e7e7e7;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p,
.footer-right p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.footer-left p:first-child {
    font-weight: 700;
}

.footer-right {
    text-align: right;
}

/* Further Responsive Adjustments */
@media (max-width: 1024px) {
    .bonus-program, .what-we-do, footer {
        padding-left: 30px;
        padding-right: 30px;
    }
    .bonus-container {
        flex-direction: column;
        text-align: center;
    }
    .bonus-left {
        transform: none;
        flex-basis: auto;
    }
    .bonus-right {
        flex-basis: auto;
        width: 60%;
    }
}

@media (max-width: 768px) {
    .bonus-program, .what-we-do {
        padding: 40px 20px;
    }
    .bonus-left h2, .what-we-do h2 {
        font-size: 28px;
    }
    .service-list {
        flex-direction: column;
        align-items: center;
    }
    footer, .footer-content {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
