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

:root {
    --color-primary: #398f3f;
    --color-primary-dark: #114a15;
    --color-primary-light: #476749;
    --color-secondary: #7c3aed;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-white: #ffffff;
    --color-green: #10b981;
    --color-blue: #3b82f6;
    --color-yellow: #fbbf24;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-gray-900);
    line-height: 1.6;
    background: var(--color-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-gray-200);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

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

.header-actions {
    display: none;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    position: absolute;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-mobile {
    display: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-content {
    padding: 1rem;
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-mobile-actions {
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--color-gray-700);
}

.btn-ghost:hover {
    background: var(--color-gray-100);
}

.btn-outline {
    background: transparent;
    color: var(--color-gray-700);
    border: 1px solid var(--color-gray-300);
}

.btn-outline:hover {
    background: var(--color-gray-50);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-gray-50);
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.icon-arrow,
.icon-play {
    width: 20px;
    height: 20px;
}

.btn-primary .icon-arrow {
    transition: transform 0.2s;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #eff6ff, #ffffff, #eff6ff);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
}

.hero-badge span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: var(--color-primary-dark);
    border-radius: 9999px;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--color-gray-900);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
}

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

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--color-gray-300);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-decorations {
    position: relative;
}

.decoration {
    position: absolute;
    border-radius: 9999px;
    mix-blend-mode: multiply;
    filter: blur(64px);
    opacity: 0.3;
    z-index: -1;
}

.decoration-1 {
    top: -1rem;
    right: -1rem;
    width: 18rem;
    height: 18rem;
    background: #bfdbfe;
}

.decoration-2 {
    bottom: -2rem;
    left: -1rem;
    width: 18rem;
    height: 18rem;
    background: #ddd6fe;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--color-white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.floating-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.floating-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.floating-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.floating-stat-green {
    color: var(--color-green);
}

.floating-stat-blue {
    color: var(--color-blue);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.section-subtitle-light {
    color: #bfdbfe;
}

.section-title {
    margin-top: 1rem;
    font-size: 1.875rem;
    color: var(--color-gray-900);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title-light {
    color: var(--color-white);
}

.section-description {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.section-description-light {
    color: #bfdbfe;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--color-white);
}

@media (min-width: 768px) {
    .features {
        padding: 6rem 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.feature-icon svg {
    color: var(--color-primary);
    transition: color 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
}

.feature-card:hover .feature-icon svg {
    color: var(--color-white);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--color-gray-600);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #0a2c5c;
}

@media (min-width: 768px) {
    .benefits {
        padding: 6rem 0;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    color: var(--color-white);
}

.benefit-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .benefit-value {
        font-size: 3.75rem;
    }
}

.benefit-label {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #bfdbfe;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: var(--color-gray-50);
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 6rem 0;
    }
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .step {
        grid-template-columns: 1fr 1fr;
    }

    .step-left .step-image {
        order: 1;
    }

    .step-left .step-content {
        order: 2;
    }

    .step-right .step-image {
        order: 2;
    }

    .step-right .step-content {
        order: 1;
    }
}

.step-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}



@media (min-width: 768px) {
    .step-image img {
        height: 400px;
    }
}

.step-content {
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .step-content {
        margin: 0;
    }
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #818fa5;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .step-number {
        font-size: 5rem;
    }
}

.step-title {
    font-size: 1.5rem;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .step-title {
        font-size: 1.875rem;
    }
}

.step-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: var(--color-white);
}

@media (min-width: 768px) {
    .pricing {
        padding: 6rem 0;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 1rem;
    padding: 2rem;
}

.pricing-card-popular {
    background: #0a2c5c;
    color: var(--color-white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #398f3f;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card-popular .pricing-name {
    color: var(--color-white);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.pricing-card-popular .pricing-desc {
    color: #bfdbfe;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-right: 0.25rem;
}

.pricing-card-popular .price-currency {
    color: #bfdbfe;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

@media (min-width: 768px) {
    .price-amount {
        font-size: 3.75rem;
    }
}

.pricing-card-popular .price-amount {
    color: var(--color-white);
}

.price-custom {
    font-size: 3rem !important;
}

.price-period {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-left: 0.5rem;
}

.pricing-card-popular .price-period {
    color: #bfdbfe;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.pricing-card-popular .check-icon {
    color: #bfdbfe;
}

.pricing-feature span {
    color: var(--color-gray-600);
}

.pricing-card-popular .pricing-feature span {
    color: #e0f2fe;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(to right, #2563eb, #1e40af);
}

@media (min-width: 768px) {
    .cta {
        padding: 6rem 0;
    }
}

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

.cta-title {
    font-size: 1.875rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--color-gray-400);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--color-gray-400);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--color-white);
}

.footer-heading {
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--color-white);
}


.solutions {
    padding: 80px 0;
    background: #f9fafb;
    direction: rtl;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.solution-card.highlighted {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.solution-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.solution-description {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    position: relative;
    padding-right: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #2563eb;
    font-weight: bold;
}


.contact-section {
    padding: 80px 0;
    background: #ffffff;
    direction: rtl;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h3,
.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    color: #374151;
    line-height: 1.7;
}

.contact-line {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: #374151;
}

.contact-line i {
    color: #006fb9;
}

.map-box {
    margin-top: 20px;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form {
    background: #f9fafb;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #374151;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #006fb9;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #006fb9;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s;
}

.contact-form button:hover {
    background: #005a99;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #374151;
    font-size: 15px;
    transition: all 0.25s ease;
}

.contact-action i {
    color: #006fb9;
    font-size: 16px;
}

.contact-action:hover {
    color: #006fb9;
    transform: translateX(-4px);
}

.contact-action:hover i {
    color: #005a99;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 28px;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px; /* RTL friendly – استخدم right لو بدك */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.whatsapp-float i {
    line-height: 1;
}
