/* ========== RESET & BASE ========== */


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #142275;
    --primary-dark: #0d1542;
    --accent-green: #27ae60;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e0e0;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6b6b7b;
    --hero-overlay: rgba(26, 35, 126, 0.85);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER / NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-text .brand-sub {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo-text .brand-arabic {
    font-size: 0.6rem;
    color: var(--text-light);
    text-align: right;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.services-dropdown {
    position: relative;
}

.services-dropdown .dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-appointment:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 21, 66, 0.92) 0%, rgba(26, 35, 126, 0.82) 50%, rgba(13, 21, 66, 0.75) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-content h1 {
    font-family: 'Poppins', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-green);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dha-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dha-badge img {
    height: 50px;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ========== CONTACT FORM BAR ========== */
.contact-form-bar {
    position: relative;
    z-index: 10;
    margin-top: -70px;
}

.contact-form-bar .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px 40px;
}

.contact-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--light-gray);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.btn-submit {
    flex-shrink: 0;
    padding: 14px 32px;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}


/* ========== ABOUT US SECTION ========== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: 'Poppins', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 28px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.check-item svg {

    margin-top: 2px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-learn-more:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.about-images {
    flex: 0 0 45%;
    display: flex;
    gap: 16px;
    position: relative;
}

.about-img-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-img-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .exp-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.8rem;
    margin-top: 4px;
    opacity: 0.8;
}

/* ========== OUR PACKAGES SECTION ========== */
.packages-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-label {
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Poppins', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.package-card-body .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.package-card-body ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 20px;
    flex: 1;
}

.package-card-body ul li {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 4px;
    line-height: 1.5;
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.view-details:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.package-actions {
    display: flex;
    gap: 12px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-call:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-call svg,
.btn-wa svg {
    width: 28px;
    height: 28px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);

    svg {
        fill: green;
        font-size: 20px;
    }
}

.btn-wa:hover {
    background: var(--primary-blue);
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.why-section .section-header h2 {
    max-width: 700px;
    margin: 0 auto;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--primary-dark);
    color: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(13, 21, 66, 0.3);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.why-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.why-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== HOW IT WORKS SECTION ========== */
.how-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.how-section .section-label {
    text-align: center;
    letter-spacing: 3px;
}

.how-section .section-header h2 {
    font-family: 'Poppins', serif;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.how-step {
    text-align: left;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 12px;
}

.how-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== OUR SERVICES SECTION ========== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover .service-card-img {
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 14px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-header {
    flex: 0 0 35%;
}

.faq-header h2 {
    font-family: 'Poppins', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 20px 24px;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo img {
    padding: 10px;
    background-color: white;
    border-radius: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: none;
        display: none;
        max-width: 400px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-footer {
        justify-content: center;
    }

    .contact-form-bar {
        margin-top: -10px;
        padding-top: 70px;
    }

    .about-section .container {
        flex-direction: column;
    }

    .about-images {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-section .container {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-form {
        flex-direction: column;
    }

    .contact-form .form-group {
        width: 100%;
    }

    .about-checklist {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        flex-direction: column;
    }

    .about-img-card img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2,
    .about-content h2,
    .faq-header h2 {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== DESKTOP FLOATING BUTTONS ========== */
.desktop-float-btn {
    position: fixed;
    left: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.desktop-float-btn:hover {
    transform: scale(1.1);
}

.desktop-float-btn.phone {

    bottom: 90px;
    background: var(--accent-green);
}

.desktop-float-btn.whatsapp {

    bottom: 20px;
    background: #25d366;
}

.desktop-float-btn svg {
    width: 30px;
    height: 30px;
}

/* ========== MOBILE STICKY BAR ========== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding-bottom: env(safe-area-inset-bottom);
}

.sticky-action-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}


.sticky-float-btn {
    position: absolute;
    bottom: 75px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 2001;
}


.sticky-float-btn.phone {
    left: 20px;
    background: #00bcd4;
}

.sticky-float-btn.whatsapp {
    right: 20px;
    background: #25d366;
}

.sticky-float-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .desktop-float-btn {
        display: none !important;
    }

    .mobile-sticky-bar {
        display: block;
    }
}