 /* ------------- WIDGET CODE STARTS HERE ------------- */

        :root {
            --fab-primary-color: #12B886; /* Main button color (Teal) */
            --fab-hover-color: #0CA678;
            --light-color: #FFFFFF;
            --background-color: #F8F9FA;
            --glow-color: rgba(18, 184, 134, 0.4);

            /* --- CUSTOM ICON COLORS --- */
            --phone-icon-bg: #007BFF;     /* Blue for the phone icon */
            --phone-text-color: #0056b3; /* Darker blue for text */
            --whatsapp-icon-bg: #25D366;  /* Official WhatsApp Green */
            --whatsapp-text-color: #128C7E;/* Darker green for text */
        }

        .contact-widget-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            z-index: 1000;
        }

        .contact-options {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            margin-bottom: 15px;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        opacity 0.3s ease-in-out 0.1s;
        }

        .contact-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            background-color: var(--background-color);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 8px 8px 24px;
            border-radius: 50px;
            margin-bottom: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            transform: translateY(10px);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.2s ease;
        }
        
        /* Color specialization for each button */
        .contact-option.phone-option { color: var(--phone-text-color); }
        .contact-option.whatsapp-option { color: var(--whatsapp-text-color); }

        .contact-option:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(8px) scale(1.03);
        }

        .contact-option .option-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 16px;
            color: var(--light-color); /* Sets the SVG fill color to white */
        }
        
        .contact-option.phone-option .option-icon {
            background-color: var(--phone-icon-bg);
        }
        .contact-option.whatsapp-option .option-icon {
            background-color: var(--whatsapp-icon-bg);
        }

        .contact-option .option-icon svg {
            width: 22px;
            height: 22px;
            fill: currentColor; /* Inherits the white color from parent */
        }
        
        /* Main Floating Action Button (FAB) */
        .contact-fab {
            width: 64px;
            height: 64px;
            background-color: var(--fab-primary-color);
            border-radius: 20px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px var(--glow-color);
            position: relative;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .contact-fab:hover {
            transform: scale(1.1);
            background-color: var(--fab-hover-color);
            box-shadow: 0 12px 30px var(--glow-color);
        }

        .contact-fab .fab-icon {
            position: absolute;
            transition: opacity 0.3s ease, transform 0.3s ease;
            color: var(--light-color);
        }
        
        .fab-icon svg {
            width: 30px;
            height: 30px;
            fill: currentColor;
        }
        
        .fab-icon.icon-open { opacity: 1; transform: rotate(0deg) scale(1); }
        .fab-icon.icon-close { opacity: 0; transform: rotate(-90deg) scale(0); }

        /* --- ACTIVE STATE --- */
        .contact-widget-container.active .contact-options {
            max-height: 220px;
            opacity: 1;
        }
        .contact-widget-container.active .contact-option {
            transform: translateY(0);
            opacity: 1;
        }
        .contact-widget-container.active .contact-option:nth-child(1) { transition-delay: 0.15s; }
        .contact-widget-container.active .contact-option:nth-child(2) { transition-delay: 0.2s; }
        .contact-widget-container.active .contact-fab {
            transform: rotate(45deg);
            border-radius: 50%;
            background-color: #555;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        .contact-widget-container.active .fab-icon.icon-open { opacity: 0; transform: rotate(90deg) scale(0); }
        .contact-widget-container.active .fab-icon.icon-close { opacity: 1; transform: rotate(45deg) scale(1); }


        /* --- NEW: MOBILE RESPONSIVE STYLES --- */
        @media (max-width: 600px) {
            .contact-widget-container {
                bottom: 20px;
                right: 20px;
            }

            .contact-options {
                margin-bottom: 10px;
            }

            .contact-option {
                font-size: 14px;
                padding: 6px 6px 6px 20px; /* Reduced padding */
                margin-bottom: 10px;
            }
            
            .contact-option .option-icon {
                width: 40px;
                height: 40px;
                margin-left: 12px;
            }

            .contact-option .option-icon svg {
                width: 20px;
                height: 20px;
            }

            /* Main Floating Action Button (FAB) on mobile */
            .contact-fab {
                width: 58px;
                height: 58px;
                border-radius: 18px;
            }

            .fab-icon svg {
                width: 28px;
                height: 28px;
            }
            
            /* Keep the active state consistent */
            .contact-widget-container.active .contact-fab {
                 border-radius: 50%; /* This should remain a circle when active */
            }

            .contact-widget-container.active .contact-options {
                max-height: 200px; /* Adjust max-height for smaller elements */
            }
        }