:root {
    --primary-orange: #F37021;
    --primary-orange-hover: #e06010;
    --dark-blue: #0B132B;
    --text-dark: #1A1A1A;
    --text-gray: #555;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --nav-height: 72px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 48px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-text-orange {
    color: var(--primary-orange);
}

.logo-text-dark {
    color: var(--dark-blue);
}

.logo-text-white {
    color: white;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 5px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(0,0,0,0.05);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 20px 20px 28px;
    border-top: 1px solid #f0f0f0;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-blue);
    border-bottom: 1px solid #f5f5f5;
    font-family: var(--font-heading);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--primary-orange);
}

.mobile-nav .mobile-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mobile-nav .mobile-cta a {
    border-bottom: none;
    padding: 0;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.92) 0%, rgba(11, 19, 43, 0.78) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    padding: 60px 0 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(243, 112, 33, 0.15);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(243, 112, 33, 0.3);
    backdrop-filter: blur(5px);
}

.hero-headline {
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: white;
}

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #dce3ee;
    margin-bottom: 40px;
    max-width: 640px;
    font-weight: 400;
    padding: 0 8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #ccc;
}

.stat-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #27ae60;
    flex-shrink: 0;
}

.stat-value {
    color: white;
    font-weight: 700;
    margin-right: 6px;
    font-size: 1.05rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Mission/Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 72px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #eee;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.mission-card::before {
    background-color: var(--primary-orange);
}

.vision-card::before {
    background-color: #27ae60;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--dark-blue);
}

.mv-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Certifications */
.cert-title {
    text-align: center;
    margin-bottom: 36px;
    font-size: 1.75rem;
}

.certifications-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
    max-width: 220px;
}

.cert-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(243, 112, 33, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cert-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cert-item p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.program-image {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.program-content {
    padding: 28px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.icon-edu { background: #4e54c8; }
.icon-health { background: #eb3349; }
.icon-work { background: #f37021; }
.icon-women { background: #e91e63; }

.program-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.program-content p {
    color: var(--text-gray);
    font-size: 0.925rem;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.925rem;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Impact Stories/Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFC107;
    margin-bottom: 16px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.quote {
    color: #4a4a4a;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--dark-blue);
}

.author-info p {
    font-size: 0.875rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background: var(--primary-orange);
    color: white;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: white;
    margin-bottom: 18px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.cta-section p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0.9;
}

.heart-icon {
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-feature-item span {
    font-weight: 700;
    font-size: 1.05rem;
}

.cta-feature-item small {
    opacity: 0.8;
    font-size: 0.875rem;
}

.donate-btn-large {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-orange);
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.donate-btn-large:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: white;
    padding-top: 72px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    max-width: 300px;
    font-size: 0.925rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-orange);
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.925rem;
}

.footer ul li a:hover {
    color: var(--primary-orange);
}

.contact-col li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.contact-col li.align-start {
    align-items: flex-start;
}

.contact-col svg {
    flex-shrink: 0;
    color: var(--primary-orange);
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
}

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
    border-radius: 16px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.925rem;
    color: #666;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 7px;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    margin-bottom: 16px;
}

.form-success h3 {
    color: #27ae60;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Tablets (992px) */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 3.4rem;
    }

    .mission-vision-grid {
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .brand-col {
        grid-column: 1 / -1;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: 40px 0 32px;
    }

    .hero-headline {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-actions {
        margin-bottom: 40px;
        gap: 12px;
    }

    .hero-actions .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Sections */
    .section {
        padding: 64px 0;
    }

    /* Mission/Vision */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .mv-card {
        padding: 30px 24px;
    }

    /* Certifications */
    .certifications-row {
        gap: 32px;
    }

    /* Programs */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA */
    .cta-section {
        padding: 64px 0;
    }

    .cta-features {
        gap: 20px;
    }

    .donate-btn-large {
        padding: 16px 36px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .brand-col {
        grid-column: auto;
    }

    /* Sections header */
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .badge {
        font-size: 0.8rem;
    }

    .certifications-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .donate-btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 28px 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .mv-card {
        padding: 28px 20px;
    }

    .program-content {
        padding: 24px 20px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }
}

/* Very small screens (360px) */
@media (max-width: 360px) {
    .hero-headline {
        font-size: 1.7rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

/* Pulse ring behind button */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waRipple 2s ease-out infinite;
    z-index: -1;
}

@keyframes waRipple {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.9); opacity: 0;   }
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* Tooltip label */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #075E54;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-body);
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Arrow on tooltip */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #075E54;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    /* Hide tooltip on touch screens */
    .whatsapp-tooltip {
        display: none;
    }
}