:root {
    --bg-dark: #f8fafc;
    --bg-darker: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);
    --primary: #ff5e00;
    --primary-hover: #e05300;
    --primary-glow: rgba(255, 94, 0, 0.15);
    --secondary: #0891b2;
    --secondary-glow: rgba(8, 145, 178, 0.15);
    --text-main: #0f172a;
    --text-muted: #475569;
    --navbar-bg: rgba(248, 250, 252, 0.8);
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 15px 35px rgba(255, 94, 0, 0.08);
    --toggler-filter: invert(1);
    --mobile-menu-bg: #e2e8f0;
    --orb-opacity: 0.04;
    --partnership-bg: rgba(0, 0, 0, 0.02);
    --dropdown-bg: rgba(255, 255, 255, 0.95);
    --dropdown-item-hover: rgba(255, 94, 0, 0.08);
    --faq-header-bg: rgba(255, 94, 0, 0.04);
    --faq-body-bg: rgba(248, 250, 252, 0.7);
    --footer-logo-color: #0f172a;
    --accordion-btn-collapsed-color: #0f172a;
    --footer-bg: #dde1e7;
}

[data-theme="dark"] {
    --bg-dark: #080c14;
    --bg-darker: #05080d;
    --bg-card: rgba(15, 23, 42, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary: #ff5e00;
    --primary-hover: #ff7d26;
    --primary-glow: rgba(255, 94, 0, 0.25);
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.25);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --navbar-bg: rgba(8, 12, 20, 0.75);
    --card-shadow: none;
    --card-hover-shadow: 0 10px 30px rgba(255, 94, 0, 0.08);
    --toggler-filter: none;
    --mobile-menu-bg: #1e293b;
    --orb-opacity: 0.12;
    --partnership-bg: rgba(255, 255, 255, 0.02);
    --dropdown-bg: rgba(8, 12, 20, 0.95);
    --dropdown-item-hover: rgba(255, 94, 0, 0.12);
    --faq-header-bg: rgba(255, 94, 0, 0.05);
    --faq-body-bg: rgba(5, 8, 13, 0.3);
    --footer-logo-color: #ffffff;
    --accordion-btn-collapsed-color: #f8fafc;
    --footer-bg: #030508;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

h1:not(.phone-screen *), h2:not(.phone-screen *), h3:not(.phone-screen *), h4:not(.phone-screen *), h5:not(.phone-screen *), h6:not(.phone-screen *) {
    color: var(--text-main) !important;
}

/* Override bootstrap text-white outside phone-screen to adapt to theme */
.text-white:not(.phone-screen *):not(.badge *):not(.btn-primary-custom):not(.btn-secondary-custom) {
    color: var(--text-main) !important;
}

/* Gradient Text */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange-cyan {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Navbar */
.navbar-custom {
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.sticky-top {
    z-index: 1050;
}

.navbar-brand {
    color: var(--text-main) !important;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active, .nav-link.show {
    color: var(--text-main) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d3436' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    filter: none;
}

[data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Glow Effects */
.glowing-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: var(--orb-opacity);
    transition: opacity 0.3s ease;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: var(--primary);
    top: -10%;
    right: -5%;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: var(--secondary);
    bottom: 10%;
    left: -10%;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #ff7b00 100%);
    border: none;
    color: #fff !important;
    font-family: var(--font-title);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: #fff !important;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main) !important;
    font-family: var(--font-title);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: rgba(var(--text-main), 0.05);
    color: var(--primary) !important;
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    padding: 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: var(--card-hover-shadow);
}

/* Dynamic dropdown styles */
.dropdown-menu-custom {
    background: var(--dropdown-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    padding: 8px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeIn 0.2s ease-out;
}
.dropdown-item-custom {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 8px 20px;
    transition: var(--transition-smooth);
}
.dropdown-item-custom:hover {
    background-color: var(--dropdown-item-hover) !important;
    color: var(--primary) !important;
}

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

/* Icons */
.icon-box {
    width: 54px;
    height: 54px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.glass-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.icon-box.cyan {
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.25);
    color: var(--secondary);
}

.glass-card:hover .icon-box.cyan {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

/* Workflow Steps */
.step-num {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-title);
    margin-bottom: 10px;
}

/* Interactive Phone Mockup */
.phone-frame {
    border: 12px solid #1e293b;
    border-radius: 36px;
    background: #0f172a;
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: #1e293b;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    background: #090d16;
    border-radius: 24px;
    padding: 20px 12px;
    min-height: 480px;
    font-size: 13px;
}

.mock-timeline {
    border-left: 2px dashed rgba(255, 94, 0, 0.4);
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
}

.mock-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.mock-timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid #090d16;
    box-shadow: 0 0 8px var(--primary-glow);
}

.mock-timeline-item.active::before {
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary-glow);
}

/* FAQs */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--accordion-btn-collapsed-color) !important;
    font-family: var(--font-title);
    font-weight: 600;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--faq-header-bg);
    color: var(--primary) !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: var(--toggler-filter);
}

.accordion-body {
    color: var(--text-muted);
    line-height: 1.6;
    background: var(--faq-body-bg);
    border-top: 1px solid var(--border-color);
}

/* FAQ Card Hover */
.accordion-item:hover {
    border-color: rgba(255, 94, 0, 0.2);
}

/* Footer */
footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-logo {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--footer-logo-color);
    font-size: 22px;
    text-decoration: none;
}

.footer-logo span {
    color: var(--primary);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.partnership-box {
    background: var(--partnership-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.partnership-title {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.partnership-brand {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 18px;
}

.brand-ofosoft {
    color: #00d2ff;
}

.brand-radar {
    color: #ff5e00;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 99;
    /* Hardware acceleration to prevent mobile scroll flickering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* Subpages Specific CSS */
.page-banner {
    padding: 80px 0 40px 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--primary-hover);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.inner-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 400px;
}

.inner-content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.sidebar-menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    margin-bottom: 6px;
}

.sidebar-link i {
    margin-right: 10px;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--primary);
    background: rgba(255, 94, 0, 0.06);
}

.sidebar-link:hover i, .sidebar-link.active i {
    transform: translateX(3px);
    color: var(--primary);
}

.sidebar-sub-links {
    margin-left: 20px;
    border-left: 1px solid var(--border-color);
    padding-left: 10px;
    margin-bottom: 10px;
}

/* Sidebar CTA Buttons */
.sidebar-cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.sidebar-cta-btn:hover {
    transform: translateY(-2px);
}
.sidebar-cta-btn.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25d366 !important;
}
.sidebar-cta-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}
.sidebar-cta-btn.whatsapp .icon-circle {
    background: #25d366;
    color: #fff;
}
.sidebar-cta-btn.phone {
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.2);
    color: var(--primary) !important;
}
.sidebar-cta-btn.phone:hover {
    background: rgba(255, 94, 0, 0.15);
    border-color: rgba(255, 94, 0, 0.4);
    box-shadow: 0 4px 12px var(--primary-glow);
}
.sidebar-cta-btn.phone .icon-circle {
    background: var(--primary);
    color: #fff;
}
.sidebar-cta-btn .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.sidebar-cta-btn:hover .icon-circle {
    transform: scale(1.05);
}

/* Responsive & Hover Dropdown Settings */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--mobile-menu-bg);
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0 0 16px 16px;
        padding: 15px 20px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    /* Dark backdrop overlay behind the menu */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .mobile-menu-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-collapse .navbar-nav {
        width: 100%;
    }
    .navbar-collapse .nav-link {
        padding: 10px 15px;
        border-bottom: 1px solid var(--border-color);
    }
    .navbar-collapse .nav-link.dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar-collapse .nav-link.dropdown-toggle::after {
        content: "\F282"; /* bi-chevron-down */
        font-family: "bootstrap-icons" !important;
        border: none;
        width: auto;
        height: auto;
        vertical-align: middle;
        font-size: 14px;
        margin-left: auto;
        transition: transform 0.3s ease;
        color: var(--text-muted);
    }
    .navbar-collapse .nav-link.dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    .navbar-collapse .dropdown-menu {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding-left: 15px;
    }
    .navbar-collapse .dropdown-item-custom {
        border-bottom: 1px dotted var(--border-color);
    }
}

/* CKEditor Output / Entry Content Formatting */
.entry-content {
    line-height: 1.8;
}
.entry-content p {
    margin-bottom: 1.25rem;
}
.entry-content ul, .entry-content ol {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.entry-content ul {
    list-style-type: disc !important;
}
.entry-content ol {
    list-style-type: decimal !important;
}
.entry-content li {
    margin-bottom: 0.5rem;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}
.entry-content table {
    width: 100% !important;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}
.entry-content table th, .entry-content table td {
    border: 1px solid var(--border-color);
    padding: 10px 15px;
}
.entry-content table th {
    background: rgba(128, 128, 128, 0.05);
    font-weight: bold;
}
.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-left: 0;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Lightbox Overlay Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(8, 12, 20, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: var(--text-main);
    font-size: 36px;
    font-weight: bold;
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--primary);
    background: rgba(128, 128, 128, 0.2);
    transform: scale(1.05);
}

#lightboxCaption {
    margin: 15px auto 0 auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 15px;
}

/* Floating Contact Buttons Wrapper */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1030; /* Below offcanvas backdrop (1040) to auto-hide when menu opens */
    /* Hardware acceleration to prevent mobile scroll flickering */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Base style for floating button */
.floating-contact-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* WhatsApp Button Color */
.floating-contact-btn.whatsapp-btn {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Phone Button Color */
.floating-contact-btn.phone-btn {
    background: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Ripple / Pulse Wave Effect Animation */
.floating-contact-btn .pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: rippleWave 2s infinite;
    pointer-events: none;
}

.floating-contact-btn.whatsapp-btn .pulse-ring {
    color: rgba(37, 211, 102, 0.6);
}

.floating-contact-btn.phone-btn .pulse-ring {
    color: rgba(255, 94, 0, 0.6);
}

@keyframes rippleWave {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
