:root {
    /* Premium Color Palette */
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-600: #2563eb;
    --primary-500: #3b82f6;

    --accent: #10b981;
    --accent-hover: #059669;

    --surface-0: #ffffff;
    --surface-50: #f8fafc;
    --surface-100: #f1f5f9;
    --surface-200: #e2e8f0;

    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --container-width: 1140px;
    --header-height: 80px;

    /* Effects */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--surface-0);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-600);
}

.text-accent {
    color: var(--accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-600), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mb-8 {
    margin-bottom: 2.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
}

.section-padding {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

.bg-surface-50 {
    background-color: var(--surface-50);
}

.bg-surface-100 {
    background-color: var(--surface-100);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary-600);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-base);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0.5rem 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--surface-200);
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 0.5rem 0;
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.nav-links a:hover {
    background-color: var(--surface-50);
    color: var(--primary-600);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
        border: none;
    }

    .nav-links li {
        width: auto;
        margin: 0;
    }

    .nav-links a {
        padding: 0;
    }

    .nav-links a:hover {
        background: transparent;
    }
}

.cta-button-header {
    display: none;
    padding: 0.6rem 1.25rem;
    background: var(--primary-900);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button-header:hover {
    background: var(--primary-800);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .cta-button-header {
        display: inline-block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #1e293b;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    /* Reduced slightly */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
    padding-bottom: 6rem;
    /* Ensure space for the stats bar */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Lighter overlay to show more image */
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.3) 0%,
            rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    /* Condensed width */
    padding: 0 1.5rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    /* Smaller text */
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    /* Stronger shadow for readability */
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    /* Slightly smaller paragraph */
    margin-bottom: 2rem;
    opacity: 1;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    /* Darker backdrop for contrast */
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero .text-gradient {
    /* Lighter gradient for better visibility on dark overlay */
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 2rem 1rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
    margin: -4rem auto 0;
    /* Centered and overlapping hero */
    border-radius: var(--radius-lg);
    max-width: var(--container-width);
    border: 1px solid var(--surface-100);
}

@media (max-width: 768px) {
    .stats-bar {
        border-radius: 0;
        margin-top: 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Icons for Stats */
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-500);
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* About Section */
.grid-2 {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.align-center {
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--surface-100);
}

.exp-years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.section-title {
    font-size: clamp(1.85rem, 2.75vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.icon-check {
    background: var(--accent);
    color: white;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* Services */
.grid-3 {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--surface-100);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.service-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    margin-top: auto;
    color: var(--primary-600);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link span {
    transition: transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}

/* Comparison */
.comparison-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.img-comp-container {
    position: relative;
    height: 300px;
    /* Reduced for mobile */
}

@media (min-width: 768px) {
    .img-comp-container {
        height: 500px;
    }
}

.img-comp-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-comp-overlay {
    width: 50%;
    z-index: 2;
    border-right: 2px solid white;
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 44px;
    height: 44px;
    background-color: white;
    color: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
}

.comparison-labels {
    pointer-events: none;
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
}

.label-before,
.label-after {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    /* Single column on very small */
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-100);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-900);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Box */
.cta-box {
    background: var(--primary-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 3.5rem 1.5rem;
    color: white;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--surface-200);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Form */
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--surface-200);
    border-radius: var(--radius-md);
    background: var(--surface-50);
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-600);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background: var(--primary-900);
    padding: 5rem 0 0;
    color: var(--surface-200);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    line-height: 1.8;
    color: var(--surface-200);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--surface-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px var(--surface-100);
}

.process-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.process-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Trusted By / Clients section */
.clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(1);
}

.clients-grid img {
    max-height: 40px;
    transition: var(--transition-base);
}

.clients-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Page Headers */
.page-header {
    background-color: var(--primary-900);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-image {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 6rem 0 4rem;
    position: relative;
    color: white;
    text-align: center;
}

.page-header-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
    z-index: 1;
}

.page-header-image .container {
    position: relative;
    z-index: 2;
}

.page-header h1,
.page-header-image h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-header p,
.page-header-image p {
    font-size: 1.25rem;
    color: var(--surface-200);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--surface-200);
    position: relative;
    z-index: 2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.separator {
    opacity: 0.5;
}

/* Contact Specifics Refined */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-200);
    height: 100%;
}

.contact-item h3 {
    font-size: 0.95rem;
    color: var(--primary-600);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    height: 350px;
    background-color: var(--surface-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 2rem;
}

/* ── WhatsApp Floating Button ── */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.wa-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
}

.wa-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wa-float__btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.wa-float__tooltip {
    position: absolute;
    right: calc(100% + 0.75rem);
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface-0);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.wa-float__btn:hover + .wa-float__tooltip,
.wa-float:hover .wa-float__tooltip {
    opacity: 1;
}