        .hover-success:hover {
            color: #159447 !important;
        }

        /* Premium Contact Form Styles */
        .contact-info-card {
            background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 3rem;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
        }

        .contact-heading {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: #1e293b;
            font-size: 2.2rem;
            letter-spacing: -0.5px;
        }

        .info-item {
            background: transparent;
            border: 1px solid transparent;
            cursor: pointer;
        }

        .info-item:hover {
            background: white;
            border-color: #e2e8f0;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            transform: translateY(-3px);
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #159447 0%, #107a38 100%);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .info-item:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(21, 148, 71, 0.3) !important;
        }

        .info-title {
            font-size: 1.15rem;
            color: #334155;
        }

        .info-desc {
            font-size: 0.95rem;
            color: #64748b !important;
            line-height: 1.6;
        }

        .map-container {
            height: 280px;
            border: 2px solid white;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
        }

        .contact-form-card {
            border: none;
            background: white;
            box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.1) !important;
        }

        /* Form Decorations */
        .form-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }

        .form-decoration.top-right {
            top: -50px;
            right: -50px;
            width: 250px;
            height: 250px;
            background: #159447;
        }

        .form-decoration.bottom-left {
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: #3b82f6;
        }

        /* Input styling */
        .input-group-custom {
            position: relative;
        }

        .custom-input {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            padding-right: 3rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: #1e293b;
        }

        .custom-input:focus {
            background-color: #ffffff;
            border-color: #159447;
            box-shadow: 0 0 0 4px rgba(21, 148, 71, 0.1) !important;
        }

        .input-icon {
            position: absolute;
            right: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            transition: all 0.3s ease;
            z-index: 5;
            pointer-events: none;
        }

        .textarea-group .input-icon {
            top: 2rem;
        }

        .custom-input:focus~.input-icon {
            color: #159447;
        }

        .form-floating>.form-control-placeholder {
            color: transparent;
        }

        .form-floating>.form-control {
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .form-floating>label {
            padding: 1rem 1.25rem;
            color: #64748b;
            font-weight: 500;
        }

        .form-floating>.form-control:focus~label,
        .form-floating>.form-control:not(:placeholder-shown)~label {
            color: #159447;
            transform: scale(.85) translateY(-0.75rem) translateX(0.15rem);
            background: transparent;
        }

        /* Button */
        .btn-primary-custom {
            background: linear-gradient(135deg, #159447 0%, #107a38 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px -5px rgba(21, 148, 71, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #107a38 0%, #159447 100%);
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .btn-primary-custom:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px -5px rgba(21, 148, 71, 0.5);
        }

        .btn-primary-custom:hover::before {
            opacity: 1;
        }

        .btn-primary-custom:active {
            transform: translateY(-1px);
        }

        .btn-primary-custom i {
            transition: transform 0.3s ease;
        }

        .btn-primary-custom:hover i {
            transform: translateX(5px) translateY(-5px);
        }

        .transition-all {
            transition: all 0.3s ease;
        }
