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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}


.topbar {
    background: #7425b7; 
    color: #fff;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar-left i {
    margin-right: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons i {
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #ddd;
}



.logo{
    width: 100px;
    height: 100px;
}
/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
}

/* HEADER */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAV MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7425b7;
}

/* BUTTON */
.quote-btn {
    background: #7425b7;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
}

.quote-btn:hover {
    background: #6c13b9;
}

/* FOOTER */
.footer {
    background: #0b0b0b;
    color: #fff;
    padding: 50px 80px 20px;
    font-family: Arial;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
}
.footer-col ul li:hover {
    color: #fff;
}
.footer-col a {
    text-decoration: none;
    color: #ccc;
}
.footer-col a:hover {
    color: #fff;
}
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.footer-gallery img {
    width: 100%;
    border-radius: 5px;
}
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links i {
    margin-left: 15px;
    cursor: pointer;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}
.wa-text {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s;
    font-size: 12px;
    width: 76px;
    font-weight: bold;
}

.whatsapp-float:hover .wa-text {
    opacity: 1;
}




/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    /* .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    } */
    .hamburger {
        display: flex;
        z-index: 1100;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #f9fafb; /* light bg */
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        display: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        border-top: 1px solid #eee;
    }

    .nav-menu.active {
        display: flex;
        gap: 5px;
    }

    /* LIST ITEMS */
    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        color: #2c3e50;
        transition: all 0.3s ease;
    }

    /* ALTERNATE BACKGROUND */
    .nav-menu li:nth-child(even) {
        background: #ffffff;
    }

    .nav-menu li:nth-child(odd) {
        background: #efdcff;
    }

    /* HOVER EFFECT */
    .nav-menu li a:hover {
        background: #fae9d6;
        color: white;
    }

    .quote-btn {
        display: none;
    }
    .topbar {
        flex-direction: column;
        text-align: center;
        /* gap: 8px; */
    }
}

@media (max-width: 550px) {
    .topbar{
        padding: 10px 20px;
    }
    .topbar-left {
        flex-direction: column;
        gap: 0px;
    }
}

/* ============================= */
/* RESPONSIVE FOOTER */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
    .footer {
        padding: 40px 40px 20px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer {
        padding: 30px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 25px;
    }

    .footer-col ul li {
        font-size: 13px;
    }

    .footer-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .footer-gallery img {
        border-radius: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .social-links i {
        margin: 0 8px;
    }
}

/* Extra small devices (350px and below) */
@media (max-width: 400px) {
    .footer {
        padding: 25px 15px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col ul li {
        font-size: 12px;
    }

    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-gallery img {
        height: 70px;
        object-fit: cover;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}