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

body {
    font-family: 'Inter', sans-serif;
}

/* NAV BAR */

.nav-banner {
    background-color: rgba(43, 43, 43, 0.98);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    width: 125px;
}

/* Mobile Menu Toggle (Hidden by default) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle-active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle-active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 3rem;
    margin: 0 2rem;
}

.nav-button {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #b784c7;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-button:hover {
    color: #b784c7;
}

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

.phone {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #b784c7, #9c6ab0);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(183, 132, 199, 0.2);
    text-decoration: none;
}

.phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(183, 132, 199, 0.3);
}

.phone svg {
    width: 20px;
    height: 20px;
}

.phone span {
    font-weight: 500;
}

/* FOOTER */

.footer {
    background-color: #2b2b2b;
    color: white;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-menu h3,
.footer-contact h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu a:hover {
    color: #b784c7;
}

.footer-menu .menu-arrow {
    color: #b784c7;
}

.footer-contact p {
    color: #888;
    margin-bottom: 1rem;
}

.footer-contact strong {
    color: #b784c7;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #b784c7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b784c7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #b784c7;
    color: white;
}

.footer-disclaimer {
    text-align: center;
    color: #888;
    padding: 2rem;
    border-top: 1px solid #444;
    margin-top: 2rem;
}

.menu-arrow {
    color: #b784c7;
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #b784c7;
}

/* MOBILE RESPONSIVE STYLES */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    .nav-banner {
        padding: 1rem 1.5rem;
    }
    
    .nav-container {
        align-items: center;
    }
    
    .logo img {
        width: 100px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide navigation menu by default on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(43, 43, 43, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    /* Show navigation menu when active */
    .nav-menu.nav-menu-open {
        transform: translateX(0);
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 2rem;
        margin: 0;
        align-items: center;
    }
    
    .nav-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        text-align: center;
        min-width: 200px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-button:hover {
        background-color: rgba(183, 132, 199, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-button::after {
        display: none; /* Remove underline effect on mobile */
    }
    
    .phone {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .phone svg {
        width: 22px;
        height: 22px;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .nav-banner {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        width: 80px;
    }
    
    .mobile-menu-toggle {
        padding: 0.25rem;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-buttons {
        gap: 1.5rem;
    }
    
    .nav-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        min-width: 180px;
    }
    
    .phone {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .phone svg {
        width: 18px;
        height: 18px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-container {
        gap: 1.5rem;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-menu h3,
    .footer-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-menu a,
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-disclaimer {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Ensure body doesn't scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}