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

body {
    font-family: Poppins;
    background: #F7F4EF;
    color: #111;
    overflow-x: hidden;
}

/* NAV */
.nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 25px 60px;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

.menu {
    display: flex;
    gap: 50px;
    list-style: none;
    font-size: 14px;
}

.menu li {
    cursor: pointer;
    position: relative;
}

.menu li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #C8A24A;
    transition: .4s;
}

.menu li:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 26px;
    border: 1px solid #C8A24A;
    border-radius: 30px;
    cursor: pointer;
    transition: .4s;
}

.nav-btn:hover {
    background: #C8A24A;
    color: #fff;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader h1 {
    color: #C8A24A;
    font-family: "Cormorant Garamond";
    font-size: 44px;
    letter-spacing: 5px;
    display: flex;
    overflow: hidden;
}

.loader h1 span {
    display: inline-block;
}

/* MOBILE NAV TOGGLE */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #111;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   FOOTER STYLING
========================= */
.footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #C8A24A;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 0 8%;
}

.footer-about h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: #C8A24A;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-about h3 span {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    opacity: 0.6;
    color: #fff;
    text-transform: uppercase;
}

.footer-about p {
    line-height: 1.8;
    max-width: 400px;
    font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
    font-family: "Cormorant Garamond", serif;
    color: #C8A24A;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.footer-links li {
    font-size: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-links li:hover {
    color: #C8A24A;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200, 162, 74, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C8A24A;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icons a:hover {
    background: #C8A24A;
    color: #111;
    border-color: #C8A24A;
    transform: translateY(-3px);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 8% 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    font-size: 12px;
    opacity: 0.6;
}

.designer-credit {
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT
   ========================================================================== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-float {
    position: relative;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Tooltip Popup Above Button */
.whatsapp-tooltip {
    position: relative;
    background: #fff;
    border: 1px solid rgba(200, 162, 74, 0.3);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 290px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    margin-bottom: 15px;
    z-index: 1001;
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-right: 1px solid rgba(200, 162, 74, 0.3);
    border-bottom: 1px solid rgba(200, 162, 74, 0.3);
    transform: rotate(45deg);
}

.tooltip-avatar {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #FAF8F5;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid rgba(200, 162, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.online-indicator {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border: 2px solid #fff;
    border-radius: 50%;
}

.tooltip-content {
    flex-grow: 1;
}

.tooltip-content h5 {
    margin: 0 0 3px 0;
    font-size: 13.5px;
    color: #643085;
    font-weight: 600;
}

.tooltip-content p {
    margin: 0;
    font-size: 11px;
    color: #555;
    line-height: 1.45;
}

.tooltip-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 16px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.tooltip-close:hover {
    color: #643085;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        left: 20px;
        right: auto;
        align-items: flex-start;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .whatsapp-tooltip::after {
        right: auto;
        left: 20px;
    }
    
    .logo img {
        height: 45px;
    }

    .footer-logo {
        height: 50px;
    }
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

/* Navbar and Footer anchor tags inheritance reset */
.menu li a,
.footer-links li a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
}
