      /* Contact Panel */
        .contact-container {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .contact-btn {
            background: linear-gradient(45deg, #536805, #aacc2e);
            color: white;
            border: none;
            padding: 15px 20px;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 25px 0 0 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .contact-btn:hover {
            transform: translateX(-10px);
            box-shadow: -10px 0 25px rgba(0,0,0,0.15);
        }

        .contact-btn .tooltip {
            position: absolute;
            left: -170px;
            background: #2c3e50;
            color: white;
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 1rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .contact-btn .tooltip::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent transparent #2c3e50;
        }

        .contact-btn:hover .tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-panel {
            position: absolute;
            right: 0;
            top: 50%;
            margin-top: 40px;
            transform: translateY(-50%);
            width: 430px;
            height: 570px;
            background: white;
            border-radius: 20px;
            padding: 25px;
            color: #2c3e50;
            box-shadow: -15px 0 35px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            visibility: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid #e9ecef;
            overflow: hidden;
        }

        .contact-container:hover .contact-btn {
            opacity: 0;
            visibility: hidden;
        }

        .contact-container:hover .contact-panel {
            opacity: 1;
            visibility: visible;
        }

        .panel-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e9ecef;
        }

        .panel-header i {
            font-size: 1.8rem;
            color: #056839;
            background: #f0f7ff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .panel-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .contact-info {
            flex: 1;
            display: grid;
            gap: 15px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .contact-items {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            padding: 10px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-items:hover {
            background: #f8f9fa;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: #f0f7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #056839;
            flex-shrink: 0;
        }

        .contact-detail {
            flex: 1;
        }

        .contact-label {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 3px;
            color: #056839;
        }

        .contact-value {
            font-size: 0.95rem;
            word-break: break-word;
        }

        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e3e4e6;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f7ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #056839;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
            background: #056839;
            color: white;
        }

        @media (max-width: 600px) {
            
            .contact-btn {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
            
            .contact-panel {
                width: 350px;
                height: 500px;
            }
            
            .contact-container {
                right: 10px;
            }
            
            .contact-btn .tooltip {
                display: none;
            }
        }

        @media (max-width: 900px) {
            .contact-btn .tooltip {
                left: -160px;
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        .success-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        text-align: center;
        z-index: 1000;
        max-width: 90%;
        width: 400px;
        }

        .success-popup.hidden {
        display: none;
        }

        .success-popup .checkmark {
        font-size: 3rem;
        color: #056839;
        margin-bottom: 1rem;
        }

        .success-popup h3 {
        color: #056839;
        margin-bottom: 0.5rem;
        }

        .success-popup p {
        color: #666;
        }