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

:root {
    --primary: #004e92;
    --primary-dark: #000428;
    --secondary: #00c6ff;
    --accent: #ff4b1f;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 78, 146, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Cairo', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

html[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

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

ul {
    list-style: none;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Premium Navbar --- */
header {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    padding: 0.2rem 0;
    box-shadow: var(--shadow-md);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    height: 90px;
    width: auto;
    transition: height 0.3s ease;
}

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

.logo-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--text-light);
}

.logo a>div {
    margin-top: 8px;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s;
}

[dir="rtl"] .nav-links a::after {
    right: 0;
    left: auto;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    padding: 10px 25px !important;
    font-size: 0.9rem !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 100px 0 100px;
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 78, 146, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 78, 146, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(0, 198, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 78, 146, 0.05) 0%, transparent 40%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(0, 78, 146, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

[dir="rtl"] .hero::before {
    left: -20%;
    right: auto;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-secondary {
    color: var(--secondary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), #0066cc);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 78, 146, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 78, 146, 0.4);
    background: linear-gradient(45deg, #003d73, var(--primary));
}

.cta-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-outline:hover {
    background: var(--primary);
    color: white;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.badge-item span {
    font-weight: 600;
}

.hero-image-wrapper {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 5px solid white;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* --- Comparison Section --- */
.comparison-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.comparison-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 1250px;
    margin: 0 auto;
}

.comparison-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-col {
    padding: 40px 20px;
    text-align: center;
}

.comparison-surgery {
    border-left: 1px solid #eee;
    background: #f9f9f9;
}

.comparison-surgery h3 {
    color: #777;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.comparison-ir {
    background: white;
    position: relative;
}

.comparison-ir h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 800;
}

.comparison-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 0 0 10px 0;
    font-size: 0.8rem;
    font-weight: bold;
}

[dir="rtl"] .comparison-badge {
    left: auto;
    right: 0;
    border-radius: 0 0 0 10px;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.comparison-icon.faded {
    color: #ccc;
    filter: grayscale(100%);
    opacity: 0.5;
}

.comparison-col ul {
    text-align: right;
    display: inline-block;
}

.comparison-surgery ul {
    color: #555;
}

.comparison-ir ul {
    color: var(--text-dark);
    font-weight: 500;
}

.comparison-col li {
    margin-bottom: 10px;
}

.icon-negative {
    color: var(--accent);
    margin-left: 10px;
}

.icon-positive {
    color: var(--secondary);
    margin-left: 10px;
}

/* --- About Section --- */
.about-section {
    padding: 100px 20px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.about-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-text>p:last-of-type {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .about-feature-item:hover {
    transform: translateX(5px);
}

.about-feature-item i {
    color: var(--primary);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 78, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- Section Title --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

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

/* --- Services Section with Tabs --- */
.services-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: white;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    min-width: 160px;
}

.tab-btn:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), #0066cc);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 78, 146, 0.3);
}

.tab-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.1);
    color: var(--secondary);
    transition: all 0.3s ease;
}

.tab-btn.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Tab Content */
.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.tab-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tab-header-img {
    width: 250px;
    height: 180px;
    object-fit: cover;
}

.tab-header-text {
    padding: 20px;
}

.tab-header-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.tab-header-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* --- Service Detail Items --- */
.service-detail-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-detail-icon {
    font-size: 2rem;
    color: var(--secondary);
    background: rgba(0, 198, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-detail-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 20px;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item details {
    padding: 20px 25px;
    cursor: pointer;
}

.faq-item summary {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item details[open] summary i {
    transform: rotate(180deg);
}

.faq-item details p {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.8;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #0066cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    max-width: 100%;
}

.form-group select {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.footer-brand h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease, padding 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-right: 10px;
}

[dir="rtl"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 10px;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 20px 30px;
        box-shadow: var(--shadow-md);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        border-radius: 0 0 20px 20px;
    }

    [dir="rtl"] .nav-links {
        clip-path: circle(0% at 0 0);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    [dir="rtl"] .nav-links.active {
        clip-path: circle(150% at 0 0);
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        height: auto;
        background-image:
            linear-gradient(to top, #ffffff 10%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 50%),
            linear-gradient(rgba(0, 78, 146, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 78, 146, 0.03) 1px, transparent 1px),
            radial-gradient(circle at 90% 10%, rgba(0, 198, 255, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 10% 90%, rgba(0, 78, 146, 0.05) 0%, transparent 40%);
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        margin-top: 10px;
        padding: 0 15px;
    }

    .hero-badges {
        justify-content: center;
        margin-top: 20px;
    }

    .badge-item {
        white-space: nowrap;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.8);
        padding: 5px 10px;
        border-radius: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-image-wrapper {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-surgery {
        border-left: none;
        border-bottom: 1px solid #eee;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Tabs */
    .services-tabs {
        gap: 10px;
    }

    .tab-btn {
        min-width: calc(50% - 10px);
        padding: 15px;
        font-size: 0.85rem;
    }

    .tab-icon {
        font-size: 1.4rem;
        width: 50px;
        height: 50px;
    }

    .tab-header {
        flex-direction: column;
    }

    .tab-header-img {
        width: 100%;
        height: 200px;
    }

    /* Service Detail */
    .service-detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.float-wa {
    background: #25D366;
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.float-call {
    background: var(--primary-color, #1a365d);
    background: linear-gradient(135deg, var(--primary-dark, #0d1e36), var(--primary-color, #1a365d));
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.6;
    animation: float-pulse 2s infinite;
}

@keyframes float-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}