/* =========================================================================
   globals.css - Core Tokens & Base Styles
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Tajawal:wght@300;400;500;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Luxury Real Estate Palette */
    --black: #050505;
    --charcoal: #101010;
    --off-white: #F7F4EE;
    --gold: #C8A45D;
    --bronze: #5A3D2B;
    --stone: #8C8C86;
    
    --bg-primary: var(--black);
    --bg-secondary: var(--charcoal);
    --text-primary: var(--off-white);
    --text-muted: var(--stone);
    --accent-gold: var(--gold);
    --accent-gold-hover: #dfbc7a;
    --accent-bronze: var(--bronze);
    
    --border-color: rgba(200, 164, 93, 0.15);
    --border-color-hover: rgba(200, 164, 93, 0.35);
    --glass-bg: rgba(5, 5, 5, 0.85);
    --glass-border: rgba(200, 164, 93, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.8);
    
    /* Fonts */
    --font-heading-en: 'Cinzel', serif;
    --font-body-en: 'Outfit', sans-serif;
    --font-heading-ar: 'Tajawal', sans-serif;
    --font-body-ar: 'Tajawal', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --header-height: 85px;
    --container-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--black);
    color: var(--off-white);
}

body {
    background-color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

/* Bilingual Show/Hide System */
html[lang="en"] .lang-ar {
    display: none !important;
}
html[lang="ar"] .lang-en {
    display: none !important;
}

/* Font Routing based on Lang Attribute */
html[lang="en"] body {
    font-family: var(--font-body-en);
}
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, 
html[lang="en"] h4, html[lang="en"] h5, html[lang="en"] h6,
html[lang="en"] .font-heading {
    font-family: var(--font-heading-en);
    letter-spacing: 1px;
}

html[lang="ar"] body {
    font-family: var(--font-body-ar);
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, 
html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6,
html[lang="ar"] .font-heading {
    font-family: var(--font-heading-ar);
    font-weight: 700;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* Fixed Header Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 75px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px var(--glass-shadow);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

header.scrolled .logo-link img {
    height: 40px;
}

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

.nav-link {
    color: var(--stone);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button & Language Toggles */
.btn-lang {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 7px 16px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-lang:hover {
    background: var(--gold);
    color: var(--black);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--off-white);
    font-size: 1.6rem;
}

/* Base Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 164, 93, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-inline-start: 16px;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Section Common Label */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--gold);
}

/* Footer Section */
footer {
    background: linear-gradient(180deg, #030303 0%, #0a0806 60%, #050403 100%);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

/* Animated gold gradient line at top of footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: footerShimmer 4s ease-in-out infinite;
}

@keyframes footerShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Subtle radial glow behind footer content */
footer::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(200, 164, 93, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 54px;
    width: auto;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 12px rgba(200, 164, 93, 0.08));
}

.footer-brand img:hover {
    filter: drop-shadow(0 0 20px rgba(200, 164, 93, 0.2));
    transform: translateY(-2px);
}

.footer-brand p {
    color: var(--stone);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

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

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

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="rtl"] .footer-links a::before {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, var(--gold), transparent);
}

.footer-links a:hover {
    color: var(--gold);
    padding-inline-start: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    color: var(--stone);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* Shimmer divider line above footer bottom */
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 93, 0.2), rgba(200, 164, 93, 0.4), rgba(200, 164, 93, 0.2), transparent);
}

.footer-bottom p {
    opacity: 0.7;
    transition: opacity 0.4s ease;
    letter-spacing: 0.5px;
}

.footer-bottom:hover p {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-link {
    color: var(--stone);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200, 164, 93, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.social-link:hover {
    color: var(--gold);
    border-color: rgba(200, 164, 93, 0.35);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(200, 164, 93, 0.15);
}

.social-link:hover::before {
    opacity: 1;
}

/* =========================================================================
   Lead Modal Overlay (Shared Across All Pages)
   ========================================================================= */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(145deg, rgba(16, 16, 16, 0.98) 0%, rgba(10, 8, 6, 0.98) 100%);
    border: 1px solid rgba(200, 164, 93, 0.12);
    width: 100%;
    max-width: 580px;
    padding: 56px;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(200, 164, 93, 0.04),
        inset 0 1px 0 rgba(200, 164, 93, 0.08);
    transform: translateY(40px) scale(0.94);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* Animated decorative corner accents */
.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0;
    transform: translate(-10px, -10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.modal-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0;
    transform: translate(10px, 10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.lead-modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.lead-modal-overlay.active .modal-content::before {
    opacity: 0.5;
    transform: translate(0, 0);
}

.lead-modal-overlay.active .modal-content::after {
    opacity: 0.5;
    transform: translate(0, 0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--stone);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--gold);
    border-color: rgba(200, 164, 93, 0.3);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(200, 164, 93, 0.1);
}

.modal-header {
    margin-bottom: 36px;
    position: relative;
}

.modal-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 20px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="rtl"] .modal-header::after {
    background: linear-gradient(270deg, var(--gold), transparent);
}

.lead-modal-overlay.active .modal-header::after {
    width: 80px;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--stone);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Modal Form Styles */
.form-group {
    margin-bottom: 24px;
}

/* Stagger form group animation */
.lead-modal-overlay.active .form-group {
    animation: formFieldSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lead-modal-overlay.active .form-group:nth-child(2) { animation-delay: 0.1s; }
.lead-modal-overlay.active .form-group:nth-child(3) { animation-delay: 0.15s; }
.lead-modal-overlay.active .form-group:nth-child(4) { animation-delay: 0.2s; }
.lead-modal-overlay.active .form-group:nth-child(5) { animation-delay: 0.25s; }

@keyframes formFieldSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--stone);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.form-group:focus-within .form-label {
    color: var(--gold);
}

.form-input {
    width: 100%;
    background-color: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--off-white);
    padding: 15px 20px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.08), 0 4px 20px rgba(200, 164, 93, 0.06);
    background-color: rgba(10, 8, 6, 0.8);
}

.form-input::placeholder {
    color: rgba(140, 140, 134, 0.5);
    transition: color 0.3s ease;
}

.form-input:focus::placeholder {
    color: rgba(140, 140, 134, 0.3);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8A45D'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

html[dir="rtl"] select.form-input {
    background-position: left 16px center;
    padding-right: 20px;
    padding-left: 48px;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

/* Submit button animation for modal */
.modal-content .btn-primary {
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.modal-content .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s ease;
}

.modal-content .btn-primary:hover::after {
    left: 100%;
}

/* Form success panel */
.lead-success-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
}

/* Success icon with pulse */
.success-icon {
    font-size: 4.5rem;
    color: var(--gold);
    margin-bottom: 28px;
    animation: successPulse 2s ease-in-out infinite;
    position: relative;
}

.success-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 93, 0.1), transparent 70%);
    pointer-events: none;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(200, 164, 93, 0)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(200, 164, 93, 0.3)); }
}

/* Celebration dots */
.lead-success-panel::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow:
        60px -30px 0 var(--gold),
        120px 10px 0 rgba(200, 164, 93, 0.6),
        200px -20px 0 rgba(200, 164, 93, 0.4),
        280px 15px 0 rgba(200, 164, 93, 0.3),
        350px -10px 0 rgba(200, 164, 93, 0.2);
    animation: celebrationFade 3s ease-in-out infinite;
}

@keyframes celebrationFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.lead-success-panel h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
}

.lead-success-panel p {
    color: var(--stone);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Modal mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 76px;
    }
    .container {
        padding: 0 20px;
    }
    header,
    header.scrolled {
        height: var(--header-height);
        background: rgba(5, 5, 5, 0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .logo-link img,
    header.scrolled .logo-link img {
        height: 42px;
    }
    .nav-menu {
        display: none;
    }
    .nav-actions {
        gap: 10px;
    }
    header .nav-actions > .btn-primary {
        display: none !important;
    }
    .btn-lang {
        padding: 6px 10px;
        font-size: 0.78rem;
    }
    .hamburger {
        display: block;
        font-size: 1.45rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 28px 0 32px;
    }
    .footer-socials {
        justify-content: center;
    }
    .btn-outline {
        margin-inline-start: 0;
        margin-top: 12px;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}

/* =========================================================================
   Fullscreen Mobile Navigation Menu Overlay (Shared Across All Pages)
   ========================================================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: transparent;
    border: none;
    color: var(--off-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    text-align: center;
}

.mobile-menu-list li {
    margin-bottom: 30px;
}

.mobile-menu-list a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-menu-list a:hover {
    color: var(--gold);
}

/* =========================================================================
   Floating WhatsApp Button
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float i {
    transition: transform 0.3s ease-in-out;
}

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

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

/* Tooltip */
.whatsapp-float-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--charcoal);
    color: var(--off-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    pointer-events: none;
}

/* Arrow for tooltip */
.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--charcoal);
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Responsive adjustment for mobile screen */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .whatsapp-float-tooltip {
        display: none !important;
    }
}
